MOD:承诺书触发比对
Showing
2 changed files
with
4 additions
and
2 deletions
... | @@ -2576,4 +2576,6 @@ FINANCIAL_EXPLANATION_SHEET_NAME = "财报情况说明" | ... | @@ -2576,4 +2576,6 @@ FINANCIAL_EXPLANATION_SHEET_NAME = "财报情况说明" |
2576 | # 首付款支付承诺书分类标签 | 2576 | # 首付款支付承诺书分类标签 |
2577 | DOWN_PAYMENT_CLASSIFY_LIST = [96] | 2577 | DOWN_PAYMENT_CLASSIFY_LIST = [96] |
2578 | # 首付款支付承诺书sheet名称 | 2578 | # 首付款支付承诺书sheet名称 |
2579 | DOWN_PAYMENT_SHEET_NAME = "首付款支付承诺书" | ||
... | \ No newline at end of file | ... | \ No newline at end of file |
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