|
@@ -667,9 +667,17 @@ func getPaymentIncomeChartList(ch chan models.CensusIncomeChartResp, req fms.Inc
|
|
|
historyCond += ` AND new_company = 0 `
|
|
|
}
|
|
|
|
|
|
+ var earliestTime time.Time
|
|
|
+ EarliestinvoiceItem, err := fms.GetEarliestPaymentIncome(cond, pars)
|
|
|
+ if err != nil && err != utils.ErrNoRow {
|
|
|
+ err = fmt.Errorf("获取最新的开票或到款日期, Err: %s", err.Error())
|
|
|
+ return
|
|
|
+ }
|
|
|
+ earliestTime = EarliestinvoiceItem.InvoiceDate
|
|
|
+
|
|
|
var latestTime time.Time
|
|
|
|
|
|
- invoiceItem, err := fms.GetLatestIncome(cond, pars)
|
|
|
+ invoiceItem, err := fms.GetLatestPaymentIncome(cond, pars)
|
|
|
if err != nil && err != utils.ErrNoRow {
|
|
|
err = fmt.Errorf("获取最新的开票或到款日期, Err: %s", err.Error())
|
|
|
return
|
|
@@ -733,8 +741,8 @@ func getPaymentIncomeChartList(ch chan models.CensusIncomeChartResp, req fms.Inc
|
|
|
monthNum = int(reqEndDate.Month() - reqStartDate.Month())
|
|
|
}
|
|
|
} else {
|
|
|
- yearNum = latestTime.Year() - 2020
|
|
|
- monthNum = int(latestTime.Month() - 1)
|
|
|
+ yearNum = latestTime.Year() - earliestTime.Year()
|
|
|
+ monthNum = int(latestTime.Month() - earliestTime.Month())
|
|
|
}
|
|
|
|
|
|
numMonth := yearNum*12 + monthNum //共存在多少个月
|
|
@@ -1114,20 +1122,17 @@ func getPaymentIncomeList(ch chan base.BaseData, req fms.IncomeListReq) (baseDat
|
|
|
|
|
|
var reqStartDate, reqEndDate time.Time
|
|
|
|
|
|
- st := fmt.Sprint(req.StartDate, "-01 00:00:00")
|
|
|
- ed := fmt.Sprint(req.EndDate, "-01 23:59:59")
|
|
|
- reqStartDate, _ = time.Parse(utils.FormatDateTime, st)
|
|
|
- reqEndDate, _ = time.Parse(utils.FormatDateTime, ed)
|
|
|
-
|
|
|
var startDate, endDate string
|
|
|
//开始日期
|
|
|
if req.StartDate != "" && req.EndDate != "" {
|
|
|
- startDate = reqStartDate.Format(utils.FormatDate)
|
|
|
- }
|
|
|
+ st := fmt.Sprint(req.StartDate, "-01 00:00:00")
|
|
|
+ ed := fmt.Sprint(req.EndDate, "-01 23:59:59")
|
|
|
|
|
|
- //结束日期
|
|
|
- if req.StartDate != "" && req.EndDate != "" {
|
|
|
- endDate = reqEndDate.Format(utils.FormatDate)
|
|
|
+ reqStartDate, _ = time.Parse(utils.FormatDateTime, st)
|
|
|
+ reqEndDate, _ = time.Parse(utils.FormatDateTime, ed)
|
|
|
+
|
|
|
+ startDate = reqStartDate.Format(utils.FormatDate)
|
|
|
+ endDate = reqEndDate.AddDate(0, 1, -1).Format(utils.FormatDate)
|
|
|
}
|
|
|
|
|
|
cond := `1 = 1`
|
|
@@ -1355,8 +1360,6 @@ func getCensusIncomeList(ch chan base.BaseData, req fms.IncomeListReq) (baseData
|
|
|
page.SetCurrent(1)
|
|
|
}
|
|
|
|
|
|
-
|
|
|
-
|
|
|
//校验日期,分段查询
|
|
|
st := fmt.Sprint(startDate, " 00:00:00")
|
|
|
ed := fmt.Sprint(endDate, " 23:59:59")
|
|
@@ -1557,7 +1560,6 @@ func getCensusIncomeList(ch chan base.BaseData, req fms.IncomeListReq) (baseData
|
|
|
page.SetTotal(int64(len(respItems)))
|
|
|
baseData.SetPage(page)
|
|
|
|
|
|
-
|
|
|
start := (page.GetCurrent() - 1) * page.PageSize
|
|
|
end := start + page.PageSize
|
|
|
if end > int64(len(respItems)) {
|
|
@@ -1640,7 +1642,6 @@ func getCensusIncomeList(ch chan base.BaseData, req fms.IncomeListReq) (baseData
|
|
|
page.SetTotal(int64(len(respItems)))
|
|
|
baseData.SetPage(page)
|
|
|
|
|
|
-
|
|
|
start := (page.GetCurrent() - 1) * page.PageSize
|
|
|
end := start + page.PageSize
|
|
|
if end > int64(len(respItems)) {
|