浏览代码

Merge branch 'master' of http://git.hiwavo.com/Fohow/fohow_api

abiao 3 年之前
父节点
当前提交
e98a0b0aa6
共有 1 个文件被更改,包括 0 次插入2 次删除
  1. 0 2
      go/gopath/src/fohow.com/apps/models/order_model/order.go

+ 0 - 2
go/gopath/src/fohow.com/apps/models/order_model/order.go

@@ -830,10 +830,8 @@ func GetDistrictOrdersCount(tcBl int64, tcArea string) int64 {
 	//pay支付时间
 	d := time.Now()
 	beginDay := helper.GetFirstDateOfMonth(d)
-	fmt.Println(beginDay.Unix())
 	beginTime := beginDay.Unix()
 	endDay := helper.GetLastDateOfMonth(d)
-	fmt.Println(endDay.Unix())
 	endTime := endDay.Unix()
 
 	sql := excuteSql + fmt.Sprintf(" and  paied_at > %d and paied_at < %d and  status in ('processing','complete','dispatch') order by paied_at desc", beginTime, endTime)