feat: 2026-04-15~04-20 累积变更基线 — 多主线合流
主线 1: rns1-customer-coach-api + 04-miniapp-core-business 后端实施
- 新增 GET /xcx/coaches/{id}/banner 轻量接口
- performance/records 加 coach_id 参数 + view_board_coach 权限分流
- coach/customer/performance/board/task 服务层重构
- fdw_queries 结算单粒度聚合 + consumption_summary 视图统一
- task_generator 回访宽限 72h + UPSERT 替代策略 + Step 5 保底清理
- recall_detector settle_type=3 双重限制 + 门店级 resolved
主线 2: 小程序权限分流 + 新增 coach-service-records 管理者视角业绩明细页
- perf-progress 共享模块去重 task-list/coach-detail 动画逻辑
- isScattered 散客标记端到端
- foodDetail/phoneFull/creator* 字段透传
主线 3: P19 指数回测框架 Phase 1+2
- 3 个指数表 stat_date 日快照模式
- 新增 DWS_INDEX_BACKFILL / DWS_TASK_SIMULATION 工具任务
- task_engine 升级 HTTP 实时 + 推演回测双模式
主线 4: Core 维度层启用
- 新增 CORE_DIM_SYNC 任务(DWD → core 4 维度表)
- 修复 app 视图空查询问题
主线 5: member_project_tag 改为 LAST_30_VISITS 消费次数窗口
主线 6: 2 个迁移 SQL 已执行(stat_date + member_project_tag 新窗口)
- schema 基线与 DDL 快照同步
主线 7: 开发机路径迁移 C:\NeoZQYY → C:\Project\NeoZQYY(约 95% 改动量)
附带: 新建运维脚本(churned_customer_report / simulate_historical_tasks /
backfill_index_snapshots)+ tools/task-analysis/ 任务分析工具
合计 157 文件。未包含中间产物(tmp/ .playwright-mcp/ inspect-* excel/sheet 分析 txt)。
审计记录见下一个 commit。
Co-Authored-By: Claude Opus 4.7 (1M context) <noreply@anthropic.com>
This commit is contained in:
@@ -287,32 +287,43 @@ def _build_retention_clues(customer_id: int, conn) -> list[dict]:
|
||||
return [{"type": r[0] or "", "text": r[1] or ""} for r in rows]
|
||||
|
||||
|
||||
NOTE_TYPE_LABELS = {"normal": "备注", "follow_up": "回访", "system": "系统", "ai": "AI"}
|
||||
|
||||
|
||||
def _build_notes(customer_id: int, conn) -> list[dict]:
|
||||
"""
|
||||
构建 notes 模块。
|
||||
|
||||
查询 biz.notes WHERE target_type='member',最多 20 条,按 created_at 倒序。
|
||||
JOIN auth.users 获取创建者名称,JOIN auth.user_site_roles + auth.roles 获取角色。
|
||||
"""
|
||||
with conn.cursor() as cur:
|
||||
cur.execute(
|
||||
"""
|
||||
SELECT id, type, created_at, content
|
||||
FROM biz.notes
|
||||
WHERE target_type = 'member'
|
||||
AND target_id = %s
|
||||
ORDER BY created_at DESC
|
||||
SELECT n.id, n.type, n.created_at, n.content,
|
||||
COALESCE(u.nickname, '') AS creator_name,
|
||||
COALESCE(r.name, '') AS role_name
|
||||
FROM biz.notes n
|
||||
LEFT JOIN auth.users u ON n.user_id = u.id
|
||||
LEFT JOIN auth.user_site_roles usr
|
||||
ON n.user_id = usr.user_id
|
||||
AND usr.is_removed = false
|
||||
LEFT JOIN auth.roles r ON usr.role_id = r.id
|
||||
WHERE n.target_type = 'member'
|
||||
AND n.target_id = %s
|
||||
ORDER BY n.created_at DESC
|
||||
LIMIT 20
|
||||
""",
|
||||
(customer_id,),
|
||||
)
|
||||
rows = cur.fetchall()
|
||||
|
||||
NOTE_TYPE_LABELS = {"normal": "备注", "system": "系统", "ai": "AI"}
|
||||
|
||||
return [
|
||||
{
|
||||
"id": r[0],
|
||||
"tag_label": NOTE_TYPE_LABELS.get(r[1], r[1] or "备注"),
|
||||
"creator_name": r[4] or "",
|
||||
"creator_role": r[5] or "",
|
||||
"created_at": r[2].strftime("%Y-%m-%d %H:%M") if r[2] else "",
|
||||
"content": r[3] or "",
|
||||
}
|
||||
@@ -323,22 +334,92 @@ def _build_notes(customer_id: int, conn) -> list[dict]:
|
||||
# ── 3.3 消费记录 ──────────────────────────────────────────
|
||||
|
||||
|
||||
def _build_coaches_from_json(coaches_json: list, level_map: dict) -> list[dict]:
|
||||
"""从 SQL json_agg 结果构建 coaches 子数组。"""
|
||||
coaches = []
|
||||
for c in coaches_json:
|
||||
level_code = c.get("assistant_level")
|
||||
level_name = level_map.get(level_code, "") if level_code else ""
|
||||
hrs = float(c.get("service_hours") or 0)
|
||||
fee = float(c.get("ledger_amount") or 0)
|
||||
if fee or hrs:
|
||||
coaches.append({
|
||||
"name": c.get("assistant_name", ""),
|
||||
"level": level_name,
|
||||
"level_color": LEVEL_COLOR_MAP.get(level_name, ""),
|
||||
"course_type": c.get("course_type") or "基础课",
|
||||
"hours": f"{hrs:.1f}h",
|
||||
"perf_hours": None,
|
||||
"fee": fee,
|
||||
})
|
||||
return coaches
|
||||
|
||||
|
||||
def _build_settlement_card(rec: dict, table_name_map: dict, level_map: dict) -> dict:
|
||||
"""从一条结算单级记录构建前端卡片数据。"""
|
||||
import json as _json
|
||||
coaches_json = rec.get("coaches_json") or []
|
||||
if isinstance(coaches_json, str):
|
||||
coaches_json = _json.loads(coaches_json)
|
||||
coaches = _build_coaches_from_json(coaches_json, level_map)
|
||||
|
||||
settle_time = rec.get("settle_time")
|
||||
date_str = settle_time.strftime("%Y-%m-%d") if settle_time else ""
|
||||
start_raw = rec.get("start_time")
|
||||
end_raw = rec.get("end_time")
|
||||
start_str = start_raw.strftime("%H:%M") if start_raw else None
|
||||
end_str = end_raw.strftime("%H:%M") if end_raw else None
|
||||
|
||||
svc_hours = rec.get("service_hours", 0.0)
|
||||
dur_h = int(svc_hours)
|
||||
dur_m = int((svc_hours - dur_h) * 60)
|
||||
duration_str = f"{dur_h}h {dur_m}min" if dur_h > 0 else f"{dur_m}min"
|
||||
|
||||
table_fee = rec.get("table_charge_money", 0.0)
|
||||
adjust = rec.get("adjust_amount", 0.0)
|
||||
table_orig = None
|
||||
if adjust > 0.01:
|
||||
table_orig = round(table_fee + adjust, 2)
|
||||
|
||||
total_actual = rec.get("total_amount", 0.0)
|
||||
consume_orig = rec.get("consume_money", 0.0)
|
||||
total_orig = consume_orig if consume_orig > total_actual + 0.01 else None
|
||||
|
||||
return {
|
||||
"id": rec.get("id", ""),
|
||||
"type": "table",
|
||||
"date": date_str,
|
||||
"table_name": table_name_map.get(rec.get("table_id"), str(rec.get("table_id", ""))),
|
||||
"start_time": start_str,
|
||||
"end_time": end_str,
|
||||
"duration": duration_str,
|
||||
"table_fee": table_fee,
|
||||
"table_orig_price": table_orig,
|
||||
"coaches": coaches,
|
||||
"food_amount": rec.get("goods_money", 0.0),
|
||||
"food_orig_price": None,
|
||||
"food_detail": rec.get("drinks"),
|
||||
"total_amount": total_actual,
|
||||
"total_orig_price": total_orig,
|
||||
"pay_method": "",
|
||||
"recharge_amount": None,
|
||||
}
|
||||
|
||||
|
||||
def _build_consumption_records(
|
||||
customer_id: int, site_id: int, conn, *, etl_conn: Any = None
|
||||
) -> list[dict]:
|
||||
"""
|
||||
构建 consumptionRecords 模块。
|
||||
|
||||
调用 fdw_queries.get_consumption_records() 获取结算单列表。
|
||||
⚠️ DWD-DOC 规则 1: totalAmount 使用 ledger_amount(items_sum 口径)。
|
||||
⚠️ DWD-DOC 规则 2: coaches fee 使用 assistant_pd_money / assistant_cx_money。
|
||||
按结算单粒度返回,同一结算单下多个助教聚合到 coaches 数组。
|
||||
⚠️ DWD-DOC 规则 1: totalAmount 使用 SUM(ledger_amount)(items_sum 口径)。
|
||||
⚠️ 废单排除: is_delete = 0,正向交易: settle_type IN (1, 3)。
|
||||
"""
|
||||
raw_records = fdw_queries.get_consumption_records(
|
||||
conn, site_id, customer_id, limit=5, offset=0, etl_conn=etl_conn
|
||||
)
|
||||
|
||||
result = []
|
||||
# 批量查询台桌名称
|
||||
table_ids = list({rec.get("table_id") for rec in raw_records if rec.get("table_id")})
|
||||
table_name_map: dict = {}
|
||||
@@ -364,81 +445,7 @@ def _build_consumption_records(
|
||||
except Exception:
|
||||
pass
|
||||
|
||||
for rec in raw_records:
|
||||
# 构建 coaches 子数组
|
||||
coaches = []
|
||||
pd_money = rec.get("assistant_pd_money", 0.0)
|
||||
cx_money = rec.get("assistant_cx_money", 0.0)
|
||||
level_code = rec.get("assistant_level")
|
||||
level_name = level_map.get(level_code, "") if level_code else ""
|
||||
|
||||
if pd_money:
|
||||
hrs = rec.get("service_hours", 0.0)
|
||||
coaches.append({
|
||||
"name": rec.get("assistant_name", ""),
|
||||
"level": level_name,
|
||||
"level_color": LEVEL_COLOR_MAP.get(level_name, ""),
|
||||
"course_type": "基础课",
|
||||
"hours": f"{hrs:.1f}h",
|
||||
"perf_hours": None,
|
||||
"fee": pd_money,
|
||||
})
|
||||
if cx_money:
|
||||
coaches.append({
|
||||
"name": rec.get("assistant_name", ""),
|
||||
"level": level_name,
|
||||
"level_color": LEVEL_COLOR_MAP.get(level_name, ""),
|
||||
"course_type": "激励课",
|
||||
"hours": "0h",
|
||||
"perf_hours": None,
|
||||
"fee": cx_money,
|
||||
})
|
||||
|
||||
settle_time = rec.get("settle_time")
|
||||
date_str = settle_time.strftime("%Y-%m-%d") if settle_time else ""
|
||||
start_raw = rec.get("start_time")
|
||||
end_raw = rec.get("end_time")
|
||||
# 格式化时间为 HH:mm
|
||||
start_str = start_raw.strftime("%H:%M") if start_raw else None
|
||||
end_str = end_raw.strftime("%H:%M") if end_raw else None
|
||||
# 格式化时长为 Xh Xmin
|
||||
svc_hours = rec.get("service_hours", 0.0)
|
||||
dur_h = int(svc_hours)
|
||||
dur_m = int((svc_hours - dur_h) * 60)
|
||||
duration_str = f"{dur_h}h {dur_m}min" if dur_h > 0 else f"{dur_m}min"
|
||||
|
||||
# 台费原价:table_charge_money + adjust_amount(台费调整/大客户优惠)
|
||||
table_fee = rec.get("table_charge_money", 0.0)
|
||||
adjust = rec.get("adjust_amount", 0.0)
|
||||
table_orig = None
|
||||
if adjust > 0.01:
|
||||
table_orig = round(table_fee + adjust, 2)
|
||||
|
||||
# 总金额原价(consume_money > items_sum 时显示)
|
||||
total_actual = rec.get("total_amount", 0.0)
|
||||
consume_orig = rec.get("consume_money", 0.0)
|
||||
total_orig = consume_orig if consume_orig > total_actual + 0.01 else None
|
||||
|
||||
result.append({
|
||||
"id": rec.get("id", ""),
|
||||
"type": "table",
|
||||
"date": date_str,
|
||||
"table_name": table_name_map.get(rec.get("table_id"), str(rec.get("table_id", ""))),
|
||||
"start_time": start_str,
|
||||
"end_time": end_str,
|
||||
"duration": duration_str,
|
||||
"table_fee": table_fee,
|
||||
"table_orig_price": table_orig,
|
||||
"coaches": coaches,
|
||||
"food_amount": rec.get("goods_money", 0.0),
|
||||
"food_orig_price": None,
|
||||
"total_amount": total_actual,
|
||||
"total_orig_price": total_orig,
|
||||
"pay_method": "",
|
||||
"recharge_amount": None,
|
||||
})
|
||||
|
||||
return result
|
||||
return [_build_settlement_card(rec, table_name_map, level_map) for rec in raw_records]
|
||||
|
||||
|
||||
# ── 3.4 关联助教任务(T2-2)──────────────────────────────
|
||||
@@ -996,10 +1003,9 @@ def _get_consumption_records_by_month(
|
||||
*, etl_conn=None,
|
||||
) -> list[dict]:
|
||||
"""
|
||||
按月份过滤的消费记录,复用 _build_consumption_records 的构建逻辑。
|
||||
按月份过滤的消费记录,复用 _build_settlement_card 构建逻辑。
|
||||
|
||||
⚠️ DWD-DOC 规则 1: totalAmount 使用 ledger_amount。
|
||||
⚠️ DWD-DOC 规则 2: coaches fee 使用 assistant_pd_money / assistant_cx_money。
|
||||
⚠️ DWD-DOC 规则 1: totalAmount 使用 SUM(ledger_amount)(items_sum 口径)。
|
||||
"""
|
||||
raw_records = fdw_queries.get_consumption_records(
|
||||
conn, site_id, customer_id, limit=200, offset=0, etl_conn=etl_conn,
|
||||
@@ -1031,77 +1037,7 @@ def _get_consumption_records_by_month(
|
||||
except Exception:
|
||||
pass
|
||||
|
||||
result = []
|
||||
for rec in raw_records:
|
||||
coaches = []
|
||||
pd_money = rec.get("assistant_pd_money", 0.0)
|
||||
cx_money = rec.get("assistant_cx_money", 0.0)
|
||||
level_code = rec.get("assistant_level")
|
||||
level_name = level_map.get(level_code, "") if level_code else ""
|
||||
|
||||
if pd_money:
|
||||
hrs = rec.get("service_hours", 0.0)
|
||||
coaches.append({
|
||||
"name": rec.get("assistant_name", ""),
|
||||
"level": level_name,
|
||||
"level_color": LEVEL_COLOR_MAP.get(level_name, ""),
|
||||
"course_type": "基础课",
|
||||
"hours": f"{hrs:.1f}h",
|
||||
"perf_hours": None,
|
||||
"fee": pd_money,
|
||||
})
|
||||
if cx_money:
|
||||
coaches.append({
|
||||
"name": rec.get("assistant_name", ""),
|
||||
"level": level_name,
|
||||
"level_color": LEVEL_COLOR_MAP.get(level_name, ""),
|
||||
"course_type": "激励课",
|
||||
"hours": "0h",
|
||||
"perf_hours": None,
|
||||
"fee": cx_money,
|
||||
})
|
||||
|
||||
settle_time = rec.get("settle_time")
|
||||
date_str = settle_time.strftime("%Y-%m-%d") if settle_time else ""
|
||||
start_raw = rec.get("start_time")
|
||||
end_raw = rec.get("end_time")
|
||||
start_str = start_raw.strftime("%H:%M") if start_raw else None
|
||||
end_str = end_raw.strftime("%H:%M") if end_raw else None
|
||||
svc_hours = rec.get("service_hours", 0.0)
|
||||
dur_h = int(svc_hours)
|
||||
dur_m = int((svc_hours - dur_h) * 60)
|
||||
duration_str = f"{dur_h}h {dur_m}min" if dur_h > 0 else f"{dur_m}min"
|
||||
|
||||
table_fee = rec.get("table_charge_money", 0.0)
|
||||
adjust = rec.get("adjust_amount", 0.0)
|
||||
table_orig = None
|
||||
if adjust > 0.01:
|
||||
table_orig = round(table_fee + adjust, 2)
|
||||
|
||||
total_actual = rec.get("total_amount", 0.0)
|
||||
consume_orig = rec.get("consume_money", 0.0)
|
||||
total_orig = consume_orig if consume_orig > total_actual + 0.01 else None
|
||||
|
||||
result.append({
|
||||
"id": rec.get("id", ""),
|
||||
"type": "table",
|
||||
"date": date_str,
|
||||
"table_name": table_name_map.get(rec.get("table_id"), str(rec.get("table_id", ""))),
|
||||
"start_time": start_str,
|
||||
"end_time": end_str,
|
||||
"duration": duration_str,
|
||||
"table_fee": table_fee,
|
||||
"table_orig_price": table_orig,
|
||||
"coaches": coaches,
|
||||
"food_amount": rec.get("goods_money", 0.0),
|
||||
"food_orig_price": None,
|
||||
"total_amount": total_actual,
|
||||
"total_orig_price": total_orig,
|
||||
"pay_method": "",
|
||||
"recharge_amount": None,
|
||||
})
|
||||
|
||||
return result
|
||||
return [_build_settlement_card(rec, table_name_map, level_map) for rec in raw_records]
|
||||
|
||||
|
||||
def _get_consumption_month_summary(
|
||||
|
||||
Reference in New Issue
Block a user