71653f5d by 冯轩

MOD:利润表和资产负债表比对条件

1 parent 800edd99
...@@ -723,7 +723,7 @@ class Comparison: ...@@ -723,7 +723,7 @@ class Comparison:
723 def input_list_not_zero_compare(self, input_list, ocr_list, **kwargs): 723 def input_list_not_zero_compare(self, input_list, ocr_list, **kwargs):
724 try: 724 try:
725 for item in input_list: 725 for item in input_list:
726 if float(item) <= 0: 726 if float(item) == 0:
727 return self.RESULT_N 727 return self.RESULT_N
728 return self.RESULT_Y 728 return self.RESULT_Y
729 except Exception as e: 729 except Exception as e:
......
Styling with Markdown is supported
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!