FIX:is_fsm类型错误
Showing
1 changed file
with
1 additions
and
1 deletions
... | @@ -1440,7 +1440,7 @@ class SECMSView(GenericView): | ... | @@ -1440,7 +1440,7 @@ class SECMSView(GenericView): |
1440 | is_auto = cms_info.get('AutoSettlement', False) | 1440 | is_auto = cms_info.get('AutoSettlement', False) |
1441 | # fsm flag | 1441 | # fsm flag |
1442 | fsm_contract = cms_info.get('FSMContract', False) | 1442 | fsm_contract = cms_info.get('FSMContract', False) |
1443 | is_fsm=1 if fsm_contract else 0, | 1443 | is_fsm=1 if fsm_contract else 0 |
1444 | 1444 | ||
1445 | auto_class = HILAutoSettlement if business_type in consts.HIL_SET else AFCAutoSettlement | 1445 | auto_class = HILAutoSettlement if business_type in consts.HIL_SET else AFCAutoSettlement |
1446 | auto_obj = auto_class.objects.filter(application_id=application_id).first() | 1446 | auto_obj = auto_class.objects.filter(application_id=application_id).first() | ... | ... |
-
Please register or sign in to post a comment