|
|
@@ -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) |
|
|
|