1.客户信息修改,将硬编码改为动态取值

2.新增项目批量停用、材料批量修改功能
This commit is contained in:
2026-01-08 10:18:18 +08:00
parent 11e4151395
commit c4c4ccc7e9
7 changed files with 300 additions and 270 deletions
+8 -1
View File
@@ -29,6 +29,11 @@ from app.tasks.customer_tasks import modify_customer_info_background
# BI相关任务
from app.tasks.bi_tasks import bi_task_background
from app.tasks.material_tasks import ( \
batch_modify_materials,
batch_disable_projects
)
__all__ = [
# 通用功能
'update_jiandaoyun',
@@ -43,5 +48,7 @@ __all__ = [
'modify_customer_info_background',
# BI任务
'bi_task_background',
# 项目材料任务
'batch_disable_projects',
'batch_modify_materials',
]