fix bug
Showing
1 changed file
with
2 additions
and
3 deletions
| ... | @@ -475,9 +475,8 @@ class BSWorkbook(Workbook): | ... | @@ -475,9 +475,8 @@ class BSWorkbook(Workbook): |
| 475 | if fill_rows: | 475 | if fill_rows: |
| 476 | amount_fill_row.add(amount_cell.row) | 476 | amount_fill_row.add(amount_cell.row) |
| 477 | amount_fill_row.update(fill_rows) | 477 | amount_fill_row.update(fill_rows) |
| 478 | else: | 478 | amount_mapping.setdefault(date_cell_value[:10], {}).setdefault( |
| 479 | amount_mapping.setdefault(date_cell_value[:10], {}).setdefault( | 479 | amount_cell.value, []).append(amount_cell.row) |
| 480 | amount_cell.value, []).append(amount_cell.row) | ||
| 481 | 480 | ||
| 482 | # 3.5.核对结果 | 481 | # 3.5.核对结果 |
| 483 | if amount_success and over_success and amount_cell.row > 2: | 482 | if amount_success and over_success and amount_cell.row > 2: | ... | ... |
-
Please register or sign in to post a comment