MOD:承诺书触发比对
Showing
2 changed files
with
3 additions
and
1 deletions
... | @@ -2577,3 +2577,5 @@ FINANCIAL_EXPLANATION_SHEET_NAME = "财报情况说明" | ... | @@ -2577,3 +2577,5 @@ FINANCIAL_EXPLANATION_SHEET_NAME = "财报情况说明" |
2577 | DOWN_PAYMENT_CLASSIFY_LIST = [96] | 2577 | DOWN_PAYMENT_CLASSIFY_LIST = [96] |
2578 | # 首付款支付承诺书sheet名称 | 2578 | # 首付款支付承诺书sheet名称 |
2579 | DOWN_PAYMENT_SHEET_NAME = "首付款支付承诺书" | 2579 | DOWN_PAYMENT_SHEET_NAME = "首付款支付承诺书" |
2580 | |||
2581 | NEW_FILE_COMPARE_SET = [96] | ||
... | \ No newline at end of file | ... | \ No newline at end of file | ... | ... |
... | @@ -2127,7 +2127,7 @@ class Command(BaseCommand, LoggerMixin): | ... | @@ -2127,7 +2127,7 @@ class Command(BaseCommand, LoggerMixin): |
2127 | license_summary[consts.BS_CLASSIFY] = bs_rebuild | 2127 | license_summary[consts.BS_CLASSIFY] = bs_rebuild |
2128 | 2128 | ||
2129 | # 比对 | 2129 | # 比对 |
2130 | if len(license_summary) > 0: | 2130 | if len(license_summary) > 0 or classify in consts.NEW_FILE_COMPARE_SET: |
2131 | if doc.document_scheme != consts.DOC_SCHEME_LIST[2]: | 2131 | if doc.document_scheme != consts.DOC_SCHEME_LIST[2]: |
2132 | # if len(license_summary) > 0 and doc.document_scheme != consts.DOC_SCHEME_LIST[2]: | 2132 | # if len(license_summary) > 0 and doc.document_scheme != consts.DOC_SCHEME_LIST[2]: |
2133 | try: | 2133 | try: | ... | ... |
-
Please register or sign in to post a comment