bs month reverse order
Showing
1 changed file
with
1 additions
and
1 deletions
... | @@ -493,7 +493,7 @@ class BSWorkbook(Workbook): | ... | @@ -493,7 +493,7 @@ class BSWorkbook(Workbook): |
493 | high_light_keyword = self.wechat_keyword | 493 | high_light_keyword = self.wechat_keyword |
494 | else: | 494 | else: |
495 | high_light_keyword = self.loan_keyword | 495 | high_light_keyword = self.loan_keyword |
496 | for month in sorted(month_mapping.keys()): | 496 | for month in sorted(month_mapping.keys(), reverse=True): |
497 | # 3.1.拷贝数据 | 497 | # 3.1.拷贝数据 |
498 | parts = month_mapping.get(month) | 498 | parts = month_mapping.get(month) |
499 | new_ws = self.create_sheet('{0}({1})'.format(month, card)) | 499 | new_ws = self.create_sheet('{0}({1})'.format(month, card)) | ... | ... |
-
Please register or sign in to post a comment