merge
Showing
2 changed files
with
4 additions
and
2 deletions
| ... | @@ -2603,4 +2603,6 @@ INCOME_KEYWORDS_DICT = { | ... | @@ -2603,4 +2603,6 @@ INCOME_KEYWORDS_DICT = { |
| 2603 | "养老保险": "yanglaobaoxian", | 2603 | "养老保险": "yanglaobaoxian", |
| 2604 | "代发": "daifa", | 2604 | "代发": "daifa", |
| 2605 | "工资": "gongzi" | 2605 | "工资": "gongzi" |
| 2606 | } | ||
| ... | \ No newline at end of file | ... | \ No newline at end of file |
| 2606 | } | ||
| 2607 | |||
| 2608 | NEW_FILE_COMPARE_SET = [96] | ||
| ... | \ No newline at end of file | ... | \ No newline at end of file | ... | ... |
| ... | @@ -2150,7 +2150,7 @@ class Command(BaseCommand, LoggerMixin): | ... | @@ -2150,7 +2150,7 @@ class Command(BaseCommand, LoggerMixin): |
| 2150 | license_summary[consts.BS_CLASSIFY] = bs_rebuild | 2150 | license_summary[consts.BS_CLASSIFY] = bs_rebuild |
| 2151 | 2151 | ||
| 2152 | # 比对 | 2152 | # 比对 |
| 2153 | if len(license_summary) > 0: | 2153 | if len(license_summary) > 0 or classify in consts.NEW_FILE_COMPARE_SET: |
| 2154 | if doc.document_scheme != consts.DOC_SCHEME_LIST[2]: | 2154 | if doc.document_scheme != consts.DOC_SCHEME_LIST[2]: |
| 2155 | # if len(license_summary) > 0 and doc.document_scheme != consts.DOC_SCHEME_LIST[2]: | 2155 | # if len(license_summary) > 0 and doc.document_scheme != consts.DOC_SCHEME_LIST[2]: |
| 2156 | try: | 2156 | try: | ... | ... |
-
Please register or sign in to post a comment