撞车订单新增「接待中」状态,支持后台接待标记

已支付订单可标记为接待中,避免重复跟进;完成/取消覆盖接待中状态,前后台同步展示与筛选。
This commit is contained in:
yml2213
2026-07-19 16:08:41 +08:00
parent d93795a4b4
commit 6450b31129
12 changed files with 123 additions and 17 deletions
@@ -11,6 +11,7 @@ var (
ErrOrderNotFound = errors.New("order not found")
ErrOrderCannotPay = errors.New("order cannot pay")
ErrOrderCannotCancel = errors.New("order cannot cancel")
ErrOrderCannotReceive = errors.New("order cannot receive")
ErrOrderCannotComplete = errors.New("order cannot complete")
ErrUnauthorized = errors.New("unauthorized")
)