添加后台任务失败通知机制

This commit is contained in:
z66
2025-12-16 10:54:50 +08:00
parent 70c375a34e
commit 11e4151395
4 changed files with 5 additions and 2 deletions
+1 -1
View File
@@ -289,7 +289,7 @@ class F6PluginModule:
if res is not None:
cookies = requests.utils.dict_from_cookiejar(res.cookies)
url = "https://yunxiu.f6car.cn/member/customer/listForPermission?pageSize=30000&pageNo=1"
url = "https://yunxiu.f6car.cn/member/customer/listForPermission?pageSize=100&pageNo=1"
res = requests.get(url, cookies=cookies)
total = res.json().get('data', {}).get('total', 0)
+4 -1
View File
@@ -38,7 +38,10 @@ def modify_customer_info_background(data: Dict[str, Any], cookies: Dict[str, str
- 执行完成后会自动删除上传的文件
- 执行结果会更新到简道云表单
"""
df = df.where(pd.notnull(df), None)
df.where(pd.notnull(df), None)
logger.info("获取当前客户下所有客户信息")
params = {
'pageSize': 100,
'pageNo': '1',