Merge branch 'feature/CHINARPA-4495' into feature/uat-tmp
Showing
1 changed file
with
2 additions
and
0 deletions
... | @@ -1116,6 +1116,7 @@ class DocView(DocGenericView, DocHandler): | ... | @@ -1116,6 +1116,7 @@ class DocView(DocGenericView, DocHandler): |
1116 | document_scheme = request.POST.get('document_scheme', '') | 1116 | document_scheme = request.POST.get('document_scheme', '') |
1117 | data_source = request.POST.get('data_source', '') | 1117 | data_source = request.POST.get('data_source', '') |
1118 | document_name = request.POST.get('document_name', '') | 1118 | document_name = request.POST.get('document_name', '') |
1119 | fsm = request.POST.get('is_fsm', False) | ||
1119 | args = {'business_type':business_type,'document_scheme':document_scheme,'data_source':data_source,'document_name':document_name,'pdf_file':pdf_file} | 1120 | args = {'business_type':business_type,'document_scheme':document_scheme,'data_source':data_source,'document_name':document_name,'pdf_file':pdf_file} |
1120 | # business_type = random.choice(consts.BUSINESS_TYPE_LIST) | 1121 | # business_type = random.choice(consts.BUSINESS_TYPE_LIST) |
1121 | # business_type = consts.BUSINESS_TYPE_LIST[0] | 1122 | # business_type = consts.BUSINESS_TYPE_LIST[0] |
... | @@ -1166,6 +1167,7 @@ class DocView(DocGenericView, DocHandler): | ... | @@ -1166,6 +1167,7 @@ class DocView(DocGenericView, DocHandler): |
1166 | # co_applicant='', | 1167 | # co_applicant='', |
1167 | # guarantor_1='', | 1168 | # guarantor_1='', |
1168 | # guarantor_2='', | 1169 | # guarantor_2='', |
1170 | is_ovp_fsm=1 if fsm else 0, | ||
1169 | document_name=application_id, | 1171 | document_name=application_id, |
1170 | document_scheme=document_scheme, | 1172 | document_scheme=document_scheme, |
1171 | data_source=data_source, | 1173 | data_source=data_source, | ... | ... |
-
Please register or sign in to post a comment