pre settlement 接口增加fsm 字段
Showing
1 changed file
with
6 additions
and
6 deletions
| ... | @@ -244,9 +244,9 @@ se_compare_content = { | ... | @@ -244,9 +244,9 @@ se_compare_content = { |
| 244 | 'customerType': fields.Str(required=True, validate=validate.OneOf(consts.CUSTOMER_TYPE)), | 244 | 'customerType': fields.Str(required=True, validate=validate.OneOf(consts.CUSTOMER_TYPE)), |
| 245 | "firstSubmmisonDate": CustomDate(required=True), | 245 | "firstSubmmisonDate": CustomDate(required=True), |
| 246 | 'propertyDocumentPolicy': fields.Str(required=False, validate=validate.Length(max=16)), | 246 | 'propertyDocumentPolicy': fields.Str(required=False, validate=validate.Length(max=16)), |
| 247 | 'fsmFlag': fields.Int(required=False), | 247 | 'fsmFlag': fields.Boolean(required=False), |
| 248 | 'fsmSpecialCar': fields.Str(required=False), | 248 | 'fsmSpecialCar': fields.Boolean(required=False), |
| 249 | 'fsmBestPrice': CustomDecimal(required=False), | 249 | 'fsmBestPrice': fields.Boolean(required=False), |
| 250 | 'isAutoSettlement': fields.Boolean(required=False), | 250 | 'isAutoSettlement': fields.Boolean(required=False), |
| 251 | 251 | ||
| 252 | 'individualCusInfo': fields.List(fields.Nested(se_individual_args), | 252 | 'individualCusInfo': fields.List(fields.Nested(se_individual_args), |
| ... | @@ -817,9 +817,9 @@ class SECompareView(GenericView, PreSEHandler): | ... | @@ -817,9 +817,9 @@ class SECompareView(GenericView, PreSEHandler): |
| 817 | bank_verify = content.get('bankInfo', {}).get('bankVerificationStatus', '') | 817 | bank_verify = content.get('bankInfo', {}).get('bankVerificationStatus', '') |
| 818 | 818 | ||
| 819 | # fsm | 819 | # fsm |
| 820 | fsm_flag = content.get('fsmFlag', 0) | 820 | fsm_flag = content.get('fsmFlag', False) |
| 821 | fsm_special_car = content.get('fsmSpecialCar', '') | 821 | fsm_special_car = content.get('fsmSpecialCar', False) |
| 822 | fsm_best_price = content.get('fsmBestPrice', 0) | 822 | fsm_best_price = content.get('fsmBestPrice', False) |
| 823 | 823 | ||
| 824 | # 存库, 用于银行卡比对 | 824 | # 存库, 用于银行卡比对 |
| 825 | try: | 825 | try: | ... | ... |
-
Please register or sign in to post a comment