Merge branch 'su'
统计订单信息接口
This commit is contained in:
12
business/jxstore/report/report.go
Normal file
12
business/jxstore/report/report.go
Normal file
@@ -0,0 +1,12 @@
|
||||
package report
|
||||
|
||||
import (
|
||||
"git.rosy.net.cn/jx-callback/business/jxutils/jxcontext"
|
||||
"git.rosy.net.cn/jx-callback/business/model/dao"
|
||||
)
|
||||
|
||||
func GetStatisticsReportForOrders(ctx *jxcontext.Context, storeIDs []int, fromDate string, toDate string) (statisticsReportForOrdersList []*dao.StatisticsReportForOrdersList, err error) {
|
||||
db := dao.GetDB()
|
||||
statisticsReportForOrdersList, err = dao.GetStatisticsReportForOrders(db, storeIDs, fromDate, toDate)
|
||||
return statisticsReportForOrdersList, err
|
||||
}
|
||||
Reference in New Issue
Block a user