qrpa 1.1.32__tar.gz → 1.1.33__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.32 → qrpa-1.1.33}/PKG-INFO +1 -1
- {qrpa-1.1.32 → qrpa-1.1.33}/pyproject.toml +1 -1
- {qrpa-1.1.32 → qrpa-1.1.33}/qrpa/shein_lib.py +2 -4
- {qrpa-1.1.32 → qrpa-1.1.33}/qrpa.egg-info/PKG-INFO +1 -1
- {qrpa-1.1.32 → qrpa-1.1.33}/README.md +0 -0
- {qrpa-1.1.32 → qrpa-1.1.33}/qrpa/RateLimitedSender.py +0 -0
- {qrpa-1.1.32 → qrpa-1.1.33}/qrpa/__init__.py +0 -0
- {qrpa-1.1.32 → qrpa-1.1.33}/qrpa/db_migrator.py +0 -0
- {qrpa-1.1.32 → qrpa-1.1.33}/qrpa/feishu_bot_app.py +0 -0
- {qrpa-1.1.32 → qrpa-1.1.33}/qrpa/feishu_client.py +0 -0
- {qrpa-1.1.32 → qrpa-1.1.33}/qrpa/feishu_logic.py +0 -0
- {qrpa-1.1.32 → qrpa-1.1.33}/qrpa/fun_base.py +0 -0
- {qrpa-1.1.32 → qrpa-1.1.33}/qrpa/fun_excel.py +0 -0
- {qrpa-1.1.32 → qrpa-1.1.33}/qrpa/fun_file.py +0 -0
- {qrpa-1.1.32 → qrpa-1.1.33}/qrpa/fun_web.py +0 -0
- {qrpa-1.1.32 → qrpa-1.1.33}/qrpa/fun_win.py +0 -0
- {qrpa-1.1.32 → qrpa-1.1.33}/qrpa/mysql_module/__init__.py +0 -0
- {qrpa-1.1.32 → qrpa-1.1.33}/qrpa/mysql_module/shein_ledger_model.py +0 -0
- {qrpa-1.1.32 → qrpa-1.1.33}/qrpa/mysql_module/shein_product_model.py +0 -0
- {qrpa-1.1.32 → qrpa-1.1.33}/qrpa/mysql_module/shein_return_order_model.py +0 -0
- {qrpa-1.1.32 → qrpa-1.1.33}/qrpa/shein_daily_report_model.py +0 -0
- {qrpa-1.1.32 → qrpa-1.1.33}/qrpa/shein_excel.py +0 -0
- {qrpa-1.1.32 → qrpa-1.1.33}/qrpa/shein_mysql.py +0 -0
- {qrpa-1.1.32 → qrpa-1.1.33}/qrpa/shein_sqlite.py +0 -0
- {qrpa-1.1.32 → qrpa-1.1.33}/qrpa/shein_ziniao.py +0 -0
- {qrpa-1.1.32 → qrpa-1.1.33}/qrpa/temu_chrome.py +0 -0
- {qrpa-1.1.32 → qrpa-1.1.33}/qrpa/temu_excel.py +0 -0
- {qrpa-1.1.32 → qrpa-1.1.33}/qrpa/temu_lib.py +0 -0
- {qrpa-1.1.32 → qrpa-1.1.33}/qrpa/time_utils.py +0 -0
- {qrpa-1.1.32 → qrpa-1.1.33}/qrpa/time_utils_example.py +0 -0
- {qrpa-1.1.32 → qrpa-1.1.33}/qrpa/wxwork.py +0 -0
- {qrpa-1.1.32 → qrpa-1.1.33}/qrpa.egg-info/SOURCES.txt +0 -0
- {qrpa-1.1.32 → qrpa-1.1.33}/qrpa.egg-info/dependency_links.txt +0 -0
- {qrpa-1.1.32 → qrpa-1.1.33}/qrpa.egg-info/top_level.txt +0 -0
- {qrpa-1.1.32 → qrpa-1.1.33}/setup.cfg +0 -0
- {qrpa-1.1.32 → qrpa-1.1.33}/setup.py +0 -0
- {qrpa-1.1.32 → qrpa-1.1.33}/tests/test_db_migrator.py +0 -0
- {qrpa-1.1.32 → qrpa-1.1.33}/tests/test_wxwork.py +0 -0
|
@@ -3369,11 +3369,9 @@ class SheinLib:
|
|
|
3369
3369
|
item_id = item.get('id')
|
|
3370
3370
|
item_create_time = item.get('createTime')
|
|
3371
3371
|
|
|
3372
|
+
log(item_id, existing_task_ids)
|
|
3372
3373
|
# 条件:1.文件名匹配 2.状态为已生成 3.不在之前的任务列表中 4.创建时间在任务创建时间之后
|
|
3373
|
-
if (item.get('fileName') == '财务收支明细' and
|
|
3374
|
-
item.get('fileStatus') == 1 and
|
|
3375
|
-
item_id not in existing_task_ids and
|
|
3376
|
-
item_create_time >= task_create_time):
|
|
3374
|
+
if (item.get('fileName') == '财务收支明细' and item.get('fileStatus') == 1 and item_id not in existing_task_ids):
|
|
3377
3375
|
file_extension = item.get('fileExtension', 'xlsx') # 获取文件扩展名,默认xlsx
|
|
3378
3376
|
log(f'找到新创建的任务: ID={item_id}, 创建时间={item_create_time}, 文件类型={file_extension}')
|
|
3379
3377
|
task_id = item_id
|
|
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
|