Browse Source

update

add_mode
DengBiao 1 year ago
parent
commit
701a1729bb
1 changed files with 2 additions and 2 deletions
  1. +2
    -2
      app/admin/svc/enterprise_manage/svc_central_kitchen_for_school.go

+ 2
- 2
app/admin/svc/enterprise_manage/svc_central_kitchen_for_school.go View File

@@ -752,8 +752,8 @@ func CentralKitchenForSchoolReserveList(req md.CentralKitchenForSchoolReserveLis


var months []time.Month var months []time.Month
if req.StartDate != "" { if req.StartDate != "" {
sDate, _ := time.ParseInLocation("2006-01-02 15:04:05", req.StartDate, time.Local)
eDate, _ := time.ParseInLocation("2006-01-02 15:04:05", req.EndDate, time.Local)
sDate, _ := time.ParseInLocation("2006-01-02", req.StartDate, time.Local)
eDate, _ := time.ParseInLocation("2006-01-02", req.EndDate, time.Local)
_, sMonth, _ := sDate.Date() _, sMonth, _ := sDate.Date()
_, eMonth, _ := eDate.Date() _, eMonth, _ := eDate.Date()
diffMonth := sMonth - eMonth diffMonth := sMonth - eMonth


Loading…
Cancel
Save