|
@@ -438,24 +438,24 @@ func (c *OrderInfoController) PageListOrderReal() { |
|
@@ -438,24 +438,24 @@ func (c *OrderInfoController) PageListOrderReal() { |
438
|
)
|
438
|
)
|
439
|
if len(param.UpdateTime) > 0 {
|
439
|
if len(param.UpdateTime) > 0 {
|
440
|
if len(param.UpdateTime[0]) > 0 {
|
440
|
if len(param.UpdateTime[0]) > 0 {
|
441
|
- t, err := time.ParseInLocation("2016-01-02", param.UpdateTime[0], time.Local)
|
441
|
+ t, err := time.ParseInLocation("2006-01-02", param.UpdateTime[0], time.Local)
|
442
|
if err != nil {
|
442
|
if err != nil {
|
443
|
c.ResponseError(errors.New("UpdateTimeBegin 时间格式错误"))
|
443
|
c.ResponseError(errors.New("UpdateTimeBegin 时间格式错误"))
|
444
|
return
|
444
|
return
|
445
|
}
|
445
|
}
|
446
|
- updateTimeBegin = t.Format("2016-01-02 15:04:05+07")
|
446
|
+ updateTimeBegin = t.Format("2006-01-02 15:04:05+07")
|
447
|
}
|
447
|
}
|
448
|
}
|
448
|
}
|
449
|
if len(param.UpdateTime) > 1 {
|
449
|
if len(param.UpdateTime) > 1 {
|
450
|
if len(param.UpdateTime[1]) > 0 {
|
450
|
if len(param.UpdateTime[1]) > 0 {
|
451
|
- t, err := time.ParseInLocation("2016-01-02", param.UpdateTime[1], time.Local)
|
451
|
+ t, err := time.ParseInLocation("2006-01-02", param.UpdateTime[1], time.Local)
|
452
|
if err != nil {
|
452
|
if err != nil {
|
453
|
c.ResponseError(errors.New("UpdateTimeEnd 时间格式错误"))
|
453
|
c.ResponseError(errors.New("UpdateTimeEnd 时间格式错误"))
|
454
|
return
|
454
|
return
|
455
|
}
|
455
|
}
|
456
|
//设定时间边界
|
456
|
//设定时间边界
|
457
|
t.Add(86399 * time.Second)
|
457
|
t.Add(86399 * time.Second)
|
458
|
- updateTimeEnd = t.Format("2016-01-02 15:04:05+07")
|
458
|
+ updateTimeEnd = t.Format("2006-01-02 15:04:05+07")
|
459
|
}
|
459
|
}
|
460
|
}
|
460
|
}
|
461
|
companyId := c.GetUserCompany()
|
461
|
companyId := c.GetUserCompany()
|