pre settlement 接口增加fsm 字段
Showing
1 changed file
with
8 additions
and
0 deletions
| ... | @@ -244,6 +244,9 @@ se_compare_content = { | ... | @@ -244,6 +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), | ||
| 248 | 'fsmSpecialCar': fields.Str(required=False), | ||
| 249 | 'fsmBestPrice': CustomDecimal(required=False), | ||
| 247 | 'isAutoSettlement': fields.Boolean(required=False), | 250 | 'isAutoSettlement': fields.Boolean(required=False), |
| 248 | 251 | ||
| 249 | 'individualCusInfo': fields.List(fields.Nested(se_individual_args), | 252 | 'individualCusInfo': fields.List(fields.Nested(se_individual_args), |
| ... | @@ -813,6 +816,11 @@ class SECompareView(GenericView, PreSEHandler): | ... | @@ -813,6 +816,11 @@ class SECompareView(GenericView, PreSEHandler): |
| 813 | uniq_seq = content.get('uniqSeq') | 816 | uniq_seq = content.get('uniqSeq') |
| 814 | bank_verify = content.get('bankInfo', {}).get('bankVerificationStatus', '') | 817 | bank_verify = content.get('bankInfo', {}).get('bankVerificationStatus', '') |
| 815 | 818 | ||
| 819 | # fsm | ||
| 820 | fsm_flag = content.get('fsmFlag', 0) | ||
| 821 | fsm_special_car = content.get('fsmSpecialCar', '') | ||
| 822 | fsm_best_price = content.get('fsmBestPrice', 0) | ||
| 823 | |||
| 816 | # 存库, 用于银行卡比对 | 824 | # 存库, 用于银行卡比对 |
| 817 | try: | 825 | try: |
| 818 | bank_class = HILbankVerification if business_type in consts.HIL_SET else AFCbankVerification | 826 | bank_class = HILbankVerification if business_type in consts.HIL_SET else AFCbankVerification | ... | ... |
-
Please register or sign in to post a comment