瀏覽代碼

update

add_mode
DengBiao 1 年之前
父節點
當前提交
df828715f7
共有 1 個檔案被更改,包括 3 行新增3 行删除
  1. +3
    -3
      app/admin/svc/enterprise_manage/svc_central_kitchen_for_school.go

+ 3
- 3
app/admin/svc/enterprise_manage/svc_central_kitchen_for_school.go 查看文件

@@ -855,7 +855,7 @@ func CentralKitchenForSchoolBatchAskForLeave(req md.CentralKitchenForSchoolBatch
}
if len(m) > 0 {
//2、更改 `central_kitchen_for_school_user_with_day` 的 state 为 退款中
sql := "update central_kitchen_for_school_user_with_day set state = %d where identity_id In (%s) and date = %s and kind = %d"
sql := "update central_kitchen_for_school_user_with_day set state = %d where identity_id In (%s) and date = '%s' and kind = %d"
idsStr := strings.Join(identityIds, ",")
sql = fmt.Sprintf(sql, enum2.CentralKitchenForSchoolUserWithDayStateForCanceling, idsStr, req.Date, enum2.CentralKitchenForSchoolUserWithDayKindForBreakfast)
fmt.Println(sql)
@@ -911,7 +911,7 @@ func CentralKitchenForSchoolBatchAskForLeave(req md.CentralKitchenForSchoolBatch

if len(m) > 0 {
//2、更改 `central_kitchen_for_school_user_with_day` 的 state 为 退款中
sql := "update central_kitchen_for_school_user_with_day set state = %d where identity_id In (%s) and date = %s and kind = %d"
sql := "update central_kitchen_for_school_user_with_day set state = %d where identity_id In (%s) and date = '%s' and kind = %d"
idsStr := strings.Join(identityIds, ",")
sql = fmt.Sprintf(sql, enum2.CentralKitchenForSchoolUserWithDayStateForCanceling, idsStr, req.Date, enum2.CentralKitchenForSchoolUserWithDayKindForLunch)
fmt.Println(sql)
@@ -967,7 +967,7 @@ func CentralKitchenForSchoolBatchAskForLeave(req md.CentralKitchenForSchoolBatch
}
if len(m) < 0 {
//2、更改 `central_kitchen_for_school_user_with_day` 的 state 为 退款中
sql := "update central_kitchen_for_school_user_with_day set state = %d where identity_id In (%s) and date = %s and kind = %d"
sql := "update central_kitchen_for_school_user_with_day set state = %d where identity_id In (%s) and date = '%s' and kind = %d"
idsStr := strings.Join(identityIds, ",")
sql = fmt.Sprintf(sql, enum2.CentralKitchenForSchoolUserWithDayStateForCanceling, idsStr, req.Date, enum2.CentralKitchenForSchoolUserWithDayKindForDinner)
fmt.Println(sql)


Loading…
取消
儲存