1
This commit is contained in:
@@ -428,9 +428,11 @@ func GetPlatformSettlement(db *DaoDB, storeIDs []int, finishedAtBegin, finishedA
|
||||
sql += ` AND t2.status = ? `
|
||||
sqlParams = append(sqlParams, model.OrderStatusFinished)
|
||||
|
||||
var count int64 = 0
|
||||
var count struct {
|
||||
Count int64 `json:"count"`
|
||||
}
|
||||
err := GetRow(db, &count, sql, sqlParams...)
|
||||
return count, err
|
||||
return count.Count, err
|
||||
}
|
||||
|
||||
func GetStoreOrderSkuList4Afs(db *DaoDB, storeIDs []int, finishedAtBegin, finishedAtEnd time.Time, isFinish bool) (skuList []*OrderSkuWithActualPayPrice, err error) {
|
||||
|
||||
Reference in New Issue
Block a user