a1886074dd
后端: FastAPI + SQLAlchemy 2.0 (async) + Alembic + MinIO + Casdoor + 企微 前端: Vue 3 + Vite + TypeScript + Element Plus + Pinia 功能清单: - 8 张数据表自动建表 / Casdoor OIDC 登录 / 企微静默登录 - 双布局: 移动端(填报) + PC端(汇总管理) - 拜访记录 CRUD + MinIO 照片直传 + 缩略图预览 + 同访人草稿 - 今日纪要 (6 分类) / 工作计划 / 小微商机 / 要客拜访 CRUD - 客户档案: 备注/收支费用/联系人/归属分配/批量转移 - 客户导入导出 + 模板下载 + 搜索/分页/筛选 - 仪表盘: 四卡统计 + 填报进度 (拜访+纪要双维度) - 周报详情: 五 Tab + 按人/客户筛选 + 时间轴 - 用户管理 / 客户经理 PC 端工作台 - 企微: 催办/公告/定时提醒 / 时区修正 - Docker 部署配置 Co-Authored-By: Claude <noreply@anthropic.com>
55 lines
1.9 KiB
Python
55 lines
1.9 KiB
Python
from datetime import date, datetime
|
||
from sqlalchemy import select, func
|
||
from sqlalchemy.ext.asyncio import AsyncSession
|
||
from app.models.visit import Visit
|
||
from app.models.daily_note import DailyNote
|
||
from app.models.user import User
|
||
from app.services.wecom import wecom_client
|
||
from app.utils.timezone import today_cst
|
||
|
||
|
||
async def check_daily_reporting(db: AsyncSession) -> dict:
|
||
"""Check today's reporting progress and send wecom reminders to managers who haven't reported."""
|
||
today = today_cst()
|
||
weekday = today.weekday()
|
||
if weekday >= 5: # Skip weekends
|
||
return {"status": "weekend", "date": str(today)}
|
||
|
||
# Get all managers
|
||
result = await db.execute(select(User).where(User.role == "manager"))
|
||
managers = result.scalars().all()
|
||
|
||
# Get managers who have reported today
|
||
reported_visits = await db.execute(
|
||
select(Visit.manager_id).where(Visit.visit_date == today)
|
||
)
|
||
reported_notes = await db.execute(
|
||
select(DailyNote.manager_id).where(DailyNote.note_date == today)
|
||
)
|
||
reported_map = {str(uid): True for uid, in reported_visits.all()}
|
||
for uid, in reported_notes.all():
|
||
reported_map[str(uid)] = True
|
||
|
||
not_reported = []
|
||
for m in managers:
|
||
if str(m.id) not in reported_map:
|
||
not_reported.append(m)
|
||
|
||
if not_reported and managers:
|
||
content = f"📋 今日填报提醒({today})\n\n以下同事尚未提交今日拜访记录:\n"
|
||
for m in not_reported:
|
||
content += f"• {m.name}\n"
|
||
content += "\n请尽快完成今日拜访填报 🙏"
|
||
|
||
user_ids = [m.wecom_userid for m in not_reported if m.wecom_userid]
|
||
if user_ids:
|
||
await wecom_client.send_text_message(user_ids, content)
|
||
|
||
return {
|
||
"status": "ok",
|
||
"date": str(today),
|
||
"total_managers": len(managers),
|
||
"reported": len(reported_map),
|
||
"not_reported": len(not_reported),
|
||
}
|