修复金额的问题
All checks were successful
构建并部署到测试环境(无 SSH) / build-and-deploy (push) Successful in 7m30s

This commit is contained in:
2026-04-23 10:09:23 +08:00
parent 10a35625a5
commit 6b1fbf4a92
17 changed files with 637 additions and 16 deletions

View File

@@ -109,6 +109,9 @@ func (s *OrderStore) List(ctx context.Context, opts *store.QueryOptions, filters
if v, ok := filters["order_type"]; ok {
query = query.Where("order_type = ?", v)
}
if v, ok := filters["payment_method"]; ok {
query = query.Where("payment_method = ?", v)
}
if v, ok := filters["order_no"]; ok {
query = query.Where("order_no = ?", v)
}