|
@@ -1134,6 +1134,27 @@ func (this *StatisticRaiDataSummaryController) RaiDataSummaryDetail() {
|
|
|
}
|
|
|
|
|
|
case "未到款比例":
|
|
|
+ if sellerId > 0 {
|
|
|
+ condition += ` AND a.rai_seller_id = ? `
|
|
|
+ pars = append(pars, sellerId)
|
|
|
+ }
|
|
|
+ condition += " AND a.is_deleted = 0 AND a.start_date >= ? AND a.start_date <= ? AND product_ids LIKE '%2%' "
|
|
|
+ pars = append(pars, startDate, endDate)
|
|
|
+ listFmsData, err := fms.GetContractRegisterAmountList(condition, pars)
|
|
|
+ if err != nil {
|
|
|
+ br.Msg = "获取数据信息失败"
|
|
|
+ br.ErrMsg = "获取数据信息失败,Err:" + err.Error()
|
|
|
+ return
|
|
|
+ }
|
|
|
+
|
|
|
+ for _, v := range listFmsData {
|
|
|
+ item := new(statistic_report.RaiDataSummaryDetailResp)
|
|
|
+ item.InvoicedAmount = v.InvoicedAmount
|
|
|
+ item.PaymentAmount = v.PaymentAmount
|
|
|
+ item.NotReceivedtAmount = v.InvoicedAmount - v.PaymentAmount
|
|
|
+ item.CreateTime = v.CreateTime.Format(utils.FormatDate)
|
|
|
+ listResp = append(listResp, item)
|
|
|
+ }
|
|
|
|
|
|
case "新客开票":
|
|
|
if sellerId > 0 {
|