qrpa 1.1.15__tar.gz → 1.1.16__tar.gz
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Potentially problematic release.
This version of qrpa might be problematic. Click here for more details.
- {qrpa-1.1.15 → qrpa-1.1.16}/PKG-INFO +1 -1
- {qrpa-1.1.15 → qrpa-1.1.16}/pyproject.toml +1 -1
- {qrpa-1.1.15 → qrpa-1.1.16}/qrpa/shein_excel.py +3 -3
- {qrpa-1.1.15 → qrpa-1.1.16}/qrpa.egg-info/PKG-INFO +1 -1
- {qrpa-1.1.15 → qrpa-1.1.16}/README.md +0 -0
- {qrpa-1.1.15 → qrpa-1.1.16}/qrpa/RateLimitedSender.py +0 -0
- {qrpa-1.1.15 → qrpa-1.1.16}/qrpa/__init__.py +0 -0
- {qrpa-1.1.15 → qrpa-1.1.16}/qrpa/db_migrator.py +0 -0
- {qrpa-1.1.15 → qrpa-1.1.16}/qrpa/feishu_bot_app.py +0 -0
- {qrpa-1.1.15 → qrpa-1.1.16}/qrpa/feishu_client.py +0 -0
- {qrpa-1.1.15 → qrpa-1.1.16}/qrpa/feishu_logic.py +0 -0
- {qrpa-1.1.15 → qrpa-1.1.16}/qrpa/fun_base.py +0 -0
- {qrpa-1.1.15 → qrpa-1.1.16}/qrpa/fun_excel.py +0 -0
- {qrpa-1.1.15 → qrpa-1.1.16}/qrpa/fun_file.py +0 -0
- {qrpa-1.1.15 → qrpa-1.1.16}/qrpa/fun_web.py +0 -0
- {qrpa-1.1.15 → qrpa-1.1.16}/qrpa/fun_win.py +0 -0
- {qrpa-1.1.15 → qrpa-1.1.16}/qrpa/mysql_module/__init__.py +0 -0
- {qrpa-1.1.15 → qrpa-1.1.16}/qrpa/mysql_module/shein_ledger_model.py +0 -0
- {qrpa-1.1.15 → qrpa-1.1.16}/qrpa/mysql_module/shein_product_model.py +0 -0
- {qrpa-1.1.15 → qrpa-1.1.16}/qrpa/mysql_module/shein_return_order_model.py +0 -0
- {qrpa-1.1.15 → qrpa-1.1.16}/qrpa/shein_daily_report_model.py +0 -0
- {qrpa-1.1.15 → qrpa-1.1.16}/qrpa/shein_lib.py +0 -0
- {qrpa-1.1.15 → qrpa-1.1.16}/qrpa/shein_mysql.py +0 -0
- {qrpa-1.1.15 → qrpa-1.1.16}/qrpa/shein_sqlite.py +0 -0
- {qrpa-1.1.15 → qrpa-1.1.16}/qrpa/shein_ziniao.py +0 -0
- {qrpa-1.1.15 → qrpa-1.1.16}/qrpa/temu_chrome.py +0 -0
- {qrpa-1.1.15 → qrpa-1.1.16}/qrpa/temu_excel.py +0 -0
- {qrpa-1.1.15 → qrpa-1.1.16}/qrpa/temu_lib.py +0 -0
- {qrpa-1.1.15 → qrpa-1.1.16}/qrpa/time_utils.py +0 -0
- {qrpa-1.1.15 → qrpa-1.1.16}/qrpa/time_utils_example.py +0 -0
- {qrpa-1.1.15 → qrpa-1.1.16}/qrpa/wxwork.py +0 -0
- {qrpa-1.1.15 → qrpa-1.1.16}/qrpa.egg-info/SOURCES.txt +0 -0
- {qrpa-1.1.15 → qrpa-1.1.16}/qrpa.egg-info/dependency_links.txt +0 -0
- {qrpa-1.1.15 → qrpa-1.1.16}/qrpa.egg-info/top_level.txt +0 -0
- {qrpa-1.1.15 → qrpa-1.1.16}/setup.cfg +0 -0
- {qrpa-1.1.15 → qrpa-1.1.16}/setup.py +0 -0
- {qrpa-1.1.15 → qrpa-1.1.16}/tests/test_db_migrator.py +0 -0
- {qrpa-1.1.15 → qrpa-1.1.16}/tests/test_wxwork.py +0 -0
|
@@ -340,8 +340,8 @@ class SheinExcel:
|
|
|
340
340
|
excel_path = create_file_path(self.config.excel_week_report)
|
|
341
341
|
sheet_name = '按店铺汇总'
|
|
342
342
|
|
|
343
|
-
date_A = f'
|
|
344
|
-
date_B = f'
|
|
343
|
+
date_A = f'新品上架数量\n({TimeUtils.get_past_nth_day(29, TimeUtils.get_month_first_day())},{TimeUtils.get_past_nth_day(29, TimeUtils.get_yesterday())})'
|
|
344
|
+
date_B = f'成功转备货款\n({TimeUtils.get_month_first_day()},{TimeUtils.get_yesterday()})'
|
|
345
345
|
|
|
346
346
|
data.insert(0, ['汇总', '', '', '', '', '', '', '', '', '', '', '', ''])
|
|
347
347
|
data.insert(0, ['店铺名称', '店铺账号', '店长', '在途商品金额', '在仓商品金额', '待结算金额', '可提现金额', '汇总',
|
|
@@ -374,7 +374,7 @@ class SheinExcel:
|
|
|
374
374
|
format_to_money(sheet, ['金额', '成本'])
|
|
375
375
|
format_to_datetime(sheet, ['时间'])
|
|
376
376
|
format_to_percent(sheet, ['成功率'], 0)
|
|
377
|
-
add_formula_for_column(sheet, '成功率', '=IF(J2=0, 0, k2/J2)',
|
|
377
|
+
add_formula_for_column(sheet, '成功率', '=IF(J2=0, 0, k2/J2)', 3)
|
|
378
378
|
# 聚合的不能使用这种公式
|
|
379
379
|
# add_formula_for_column(sheet, '新品上架数量',"=COUNTIF('新品转备货款明细'!A:A, B3)",3)
|
|
380
380
|
# add_formula_for_column(sheet, '成功转备货款',"=COUNTIFS('新品转备货款明细'!A:A, B3, '新品转备货款明细'!G:G, 1)",3)
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|