Browse Source

update

tmp
DengBiao 10 months ago
parent
commit
eddd9d4f91
2 changed files with 4 additions and 0 deletions
  1. +1
    -0
      app/admin/md/md_central_kitchen_for_school_order.go
  2. +3
    -0
      app/admin/svc/order/svc_central_kitchen_for_school_order.go

+ 1
- 0
app/admin/md/md_central_kitchen_for_school_order.go View File

@@ -23,6 +23,7 @@ type CentralKitchenForSchoolOrderRefundListReq struct {
EnterpriseId int `json:"enterprise_id" label:"单位id"` EnterpriseId int `json:"enterprise_id" label:"单位id"`
Phone string `json:"phone" label:"用户电话"` Phone string `json:"phone" label:"用户电话"`
Name string `json:"name" label:"名称"` Name string `json:"name" label:"名称"`
Memo string `json:"memo" label:"备注"`
Kind int `json:"kind" label:"订餐类型"` Kind int `json:"kind" label:"订餐类型"`
State int `json:"state" label:"退款订单状态"` State int `json:"state" label:"退款订单状态"`
StartDate string `json:"start_date" label:"开始时间"` StartDate string `json:"start_date" label:"开始时间"`


+ 3
- 0
app/admin/svc/order/svc_central_kitchen_for_school_order.go View File

@@ -56,6 +56,9 @@ func CentralKitchenForSchoolOrderRefundList(req md.CentralKitchenForSchoolOrderR
if req.OutRequestNo != "" { if req.OutRequestNo != "" {
sess.And("central_kitchen_for_school_user_refund_day.out_request_no like ?", "%"+req.OutRequestNo+"%") sess.And("central_kitchen_for_school_user_refund_day.out_request_no like ?", "%"+req.OutRequestNo+"%")
} }
if req.Memo != "" {
sess.And("central_kitchen_for_school_user_refund_day.memo like ?", "%"+req.Memo+"%")
}


var classWithUserIdentityIdsOne []int var classWithUserIdentityIdsOne []int
var classWithUserIdentityIdsTwo []int var classWithUserIdentityIdsTwo []int


Loading…
Cancel
Save