作者 唐旭辉

修复错误

@@ -168,7 +168,7 @@ func (dao OrderBaseDao) OrderBonusListForExcel(companyId int64, orderType int, p @@ -168,7 +168,7 @@ func (dao OrderBaseDao) OrderBonusListForExcel(companyId int64, orderType int, p
168 //@param orderType 订单类型 168 //@param orderType 订单类型
169 //@param partnerOrCode 合伙人姓名或订单号或发货单号 169 //@param partnerOrCode 合伙人姓名或订单号或发货单号
170 //@param partnerCategory 合伙人类型id 170 //@param partnerCategory 合伙人类型id
171 -//@param updateTime 订单更新时间范围"[开始时间,结束时间]",时间格式"2016-01-02 15:04:05+07" 171 +//@param updateTime 订单更新时间范围"[开始时间,结束时间]",时间格式"2006-01-02 15:04:05+07"
172 func (dao OrderBaseDao) OrderListByCondition(companyId int64, orderType int, partnerOrCode string, 172 func (dao OrderBaseDao) OrderListByCondition(companyId int64, orderType int, partnerOrCode string,
173 updateTime [2]string, partnerCategory int, limit, offset int) ([]models.OrderBase, int, error) { 173 updateTime [2]string, partnerCategory int, limit, offset int) ([]models.OrderBase, int, error) {
174 tx := dao.transactionContext.GetDB() 174 tx := dao.transactionContext.GetDB()
@@ -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()