MOD:f说明、
Showing
1 changed file
with
2 additions
and
2 deletions
... | @@ -254,7 +254,7 @@ se_compare_content = { | ... | @@ -254,7 +254,7 @@ se_compare_content = { |
254 | 'fsmSpecialCar': fields.Boolean(required=False), | 254 | 'fsmSpecialCar': fields.Boolean(required=False), |
255 | 'fsmBestPrice': fields.Boolean(required=False), | 255 | 'fsmBestPrice': fields.Boolean(required=False), |
256 | 'isAutoSettlement': fields.Boolean(required=False), | 256 | 'isAutoSettlement': fields.Boolean(required=False), |
257 | 'fsm_landing_dealer': fields.Str(required=False, validate=validate.Length(max=1024)), | 257 | 'fsmLandingDealer': fields.Str(required=False, validate=validate.Length(max=1024)), |
258 | 258 | ||
259 | 'individualCusInfo': fields.List(fields.Nested(se_individual_args), | 259 | 'individualCusInfo': fields.List(fields.Nested(se_individual_args), |
260 | required=True, validate=validate.Length(min=1, max=4)), | 260 | required=True, validate=validate.Length(min=1, max=4)), |
... | @@ -874,7 +874,7 @@ class SECompareView(GenericView, PreSEHandler): | ... | @@ -874,7 +874,7 @@ class SECompareView(GenericView, PreSEHandler): |
874 | fsm_flag = content.get('fsmFlag', False) | 874 | fsm_flag = content.get('fsmFlag', False) |
875 | fsm_special_car = content.get('fsmSpecialCar', False) | 875 | fsm_special_car = content.get('fsmSpecialCar', False) |
876 | fsm_best_price = content.get('fsmBestPrice', False) | 876 | fsm_best_price = content.get('fsmBestPrice', False) |
877 | fsm_landing_dealer = content.get('fsmLandingDealer', False) | 877 | fsm_landing_dealer = content.get('fsmLandingDealer') |
878 | 878 | ||
879 | # 存库, 用于银行卡比对 | 879 | # 存库, 用于银行卡比对 |
880 | try: | 880 | try: | ... | ... |
-
Please register or sign in to post a comment