|
@@ -78,7 +78,7 @@ func getIncomeList(ch chan models.IncomeChartResp) (incomeChart models.IncomeCha
|
|
|
// endDate = fmt.Sprint(endDate, "-01")
|
|
|
//}
|
|
|
endDate = fmt.Sprint(endDate, "-01")
|
|
|
- cond := ` AND create_time >= '` + startDate + `' AND create_time < '` + endDate + `' `
|
|
|
+ cond := ` AND invoice_time >= '` + startDate + `' AND invoice_time < '` + endDate + `' `
|
|
|
|
|
|
item, countErr := models.GetIncomeListCount(cond)
|
|
|
if countErr != nil && countErr != utils.ErrNoRow {
|
|
@@ -164,9 +164,10 @@ func getIncomeListV2(ch chan models.IncomeChartResp) (incomeChart models.IncomeC
|
|
|
var invoiceTotal, paymentTotal float64
|
|
|
|
|
|
if len(summaryIds) > 0 {
|
|
|
- amountTotalCond := `a.id IN ?`
|
|
|
+ //amountTotalCond := `a.id IN ?`
|
|
|
+ amountTotalCond := `a.id IN ? AND (b.invoice_time BETWEEN ? AND ?)`
|
|
|
amountTotalPars := make([]interface{}, 0)
|
|
|
- amountTotalPars = append(amountTotalPars, summaryIds)
|
|
|
+ amountTotalPars = append(amountTotalPars, summaryIds, st, ed)
|
|
|
invoiceSum, e := fms.GetContractSummaryInvoicePaymentAmountTotal(amountTotalCond, amountTotalPars, 1)
|
|
|
if e != nil {
|
|
|
return
|