fix cms & compare bug
Showing
2 changed files
with
2 additions
and
2 deletions
... | @@ -1510,7 +1510,7 @@ DDA_COMPARE_LOGIC = { | ... | @@ -1510,7 +1510,7 @@ DDA_COMPARE_LOGIC = { |
1510 | 'customerName': (DDA_IC_NAME, 'se_contain_compare_2', {}), | 1510 | 'customerName': (DDA_IC_NAME, 'se_contain_compare_2', {}), |
1511 | 'idNum': (DDA_IC_ID, 'se_contain_compare_2', {}), | 1511 | 'idNum': (DDA_IC_ID, 'se_contain_compare_2', {}), |
1512 | 'accountHolderName': (DDA_BC_NAME, 'se_common_compare', {}), | 1512 | 'accountHolderName': (DDA_BC_NAME, 'se_common_compare', {}), |
1513 | 'accountNo': (DDA_BC_ID, 'se_common_compare', {}), | 1513 | 'accountNo': (DDA_BC_ID, 'se_common_compare', {'remove_space': True}), |
1514 | } | 1514 | } |
1515 | 1515 | ||
1516 | JYPZ_COMPARE_LOGIC = { | 1516 | JYPZ_COMPARE_LOGIC = { | ... | ... |
... | @@ -1479,7 +1479,7 @@ class Command(BaseCommand, LoggerMixin): | ... | @@ -1479,7 +1479,7 @@ class Command(BaseCommand, LoggerMixin): |
1479 | try: | 1479 | try: |
1480 | # pass | 1480 | # pass |
1481 | compare.apply_async((doc.application_id, business_type, None, res_obj.id, | 1481 | compare.apply_async((doc.application_id, business_type, None, res_obj.id, |
1482 | is_ca), queue='queue_compare') | 1482 | is_ca, True), queue='queue_compare') |
1483 | except Exception as e: | 1483 | except Exception as e: |
1484 | self.online_log.error( | 1484 | self.online_log.error( |
1485 | '{0} [process error (comparison info send)] [task={1}] [error={2}]'.format( | 1485 | '{0} [process error (comparison info send)] [task={1}] [error={2}]'.format( | ... | ... |
-
Please register or sign in to post a comment