fix bug
Showing
2 changed files
with
4 additions
and
4 deletions
... | @@ -735,8 +735,8 @@ class SECompareView(GenericView): | ... | @@ -735,8 +735,8 @@ class SECompareView(GenericView): |
735 | quotationt_info=quotationt_info | 735 | quotationt_info=quotationt_info |
736 | ) | 736 | ) |
737 | # 触发比对 | 737 | # 触发比对 |
738 | compare.apply_async((application_id, business_type, uniq_seq, None, False, False), | 738 | # compare.apply_async((application_id, business_type, uniq_seq, None, False, False), |
739 | queue='queue_compare') | 739 | # queue='queue_compare') |
740 | return response.ok() | 740 | return response.ok() |
741 | 741 | ||
742 | post.openapi_doc = ''' | 742 | post.openapi_doc = ''' | ... | ... |
... | @@ -1004,7 +1004,7 @@ def get_se_cms_compare_info(last_obj, application_entity, detect_list): | ... | @@ -1004,7 +1004,7 @@ def get_se_cms_compare_info(last_obj, application_entity, detect_list): |
1004 | vehicle_field_input.append((consts.SE_NEW_ADD_FIELD[2], first_submmison_date)) | 1004 | vehicle_field_input.append((consts.SE_NEW_ADD_FIELD[2], first_submmison_date)) |
1005 | vehicle_field_input.append((consts.SE_NEW_ADD_FIELD[3], consts.SE_STAMP_VALUE)) | 1005 | vehicle_field_input.append((consts.SE_NEW_ADD_FIELD[3], consts.SE_STAMP_VALUE)) |
1006 | vehicle_field_input.append((consts.SE_NEW_ADD_FIELD[4], consts.SE_FPL_VALUE)) | 1006 | vehicle_field_input.append((consts.SE_NEW_ADD_FIELD[4], consts.SE_FPL_VALUE)) |
1007 | bhsj = float(amount) / 1.13 | 1007 | bhsj = round(float(amount) / 1.13, 2) |
1008 | vehicle_field_input.append((consts.SE_NEW_ADD_FIELD[5], consts.SPLIT_STR.join([ | 1008 | vehicle_field_input.append((consts.SE_NEW_ADD_FIELD[5], consts.SPLIT_STR.join([ |
1009 | str(bhsj), | 1009 | str(bhsj), |
1010 | str(float(amount) - bhsj), | 1010 | str(float(amount) - bhsj), |
... | @@ -1076,7 +1076,7 @@ def get_se_cms_compare_info(last_obj, application_entity, detect_list): | ... | @@ -1076,7 +1076,7 @@ def get_se_cms_compare_info(last_obj, application_entity, detect_list): |
1076 | compare_info['bankInfo'] = bank_info | 1076 | compare_info['bankInfo'] = bank_info |
1077 | 1077 | ||
1078 | full_no = cms_info.get('settlemnetVerification', {}).get('applicationNo', '') | 1078 | full_no = cms_info.get('settlemnetVerification', {}).get('applicationNo', '') |
1079 | if cms_info.get('mortgageType', '') == 'Mortgage Free': | 1079 | if cms_info.get('mortgageType', '') == 'Mortgage Free' or cms_info.get('mortgageType', '') == 'MortgageFree': |
1080 | other_info = {} | 1080 | other_info = {} |
1081 | hmh_field_input = [ | 1081 | hmh_field_input = [ |
1082 | (consts.SE_HMH_FIELD[0], hmh_name), | 1082 | (consts.SE_HMH_FIELD[0], hmh_name), | ... | ... |
-
Please register or sign in to post a comment