|
@@ -1691,8 +1691,15 @@ func (ct *InvoicePaymentController) NotInvoiceList(c *gin.Context) {
|
|
|
}
|
|
|
|
|
|
noSummaryCond += ` AND b.is_deleted = 0 AND b.contract_status <> 4 `
|
|
|
- noSummaryCond += ` AND b.contract_register_id IN ? AND b.contract_register_id NOT IN ?`
|
|
|
- noSummaryPars = append(noSummaryPars, queryRegisterIds, notQueryRegisterIds)
|
|
|
+ if len(notQueryRegisterIds) >0 {
|
|
|
+ noSummaryCond += ` AND b.contract_register_id IN ? AND b.contract_register_id NOT IN ?`
|
|
|
+ noSummaryPars = append(noSummaryPars, queryRegisterIds, notQueryRegisterIds)
|
|
|
+ } else {
|
|
|
+ noSummaryCond += ` AND b.contract_register_id IN ? `
|
|
|
+ noSummaryPars = append(noSummaryPars, queryRegisterIds)
|
|
|
+ }
|
|
|
+
|
|
|
+
|
|
|
noSummaryData, e := fms.GetNoInvoicePaymentCensusData(noSummaryCond, noSummaryPars)
|
|
|
if e != nil {
|
|
|
resp.FailMsg("获取失败", "GetNoInvoicePaymentCensusData, Err: "+e.Error(), c)
|
|
@@ -1770,7 +1777,6 @@ func (ct *InvoicePaymentController) NotInvoiceList(c *gin.Context) {
|
|
|
|
|
|
NotInvoiceSummaryMap[v.ContractRegisterId] = append(NotInvoiceSummaryMap[v.ContractRegisterId], &item2)
|
|
|
}
|
|
|
-
|
|
|
} else if v.ProductIds == "1" && len(NotInvoiceSummaryMap[v.ContractRegisterId]) == 0 {
|
|
|
if serviceAmount, ok := serviceAmountMap[v.ContractRegisterId]; ok {
|
|
|
item1 := fms.NotInvoicePaymentSummaryItem{
|
|
@@ -1906,10 +1912,10 @@ func (ct *InvoicePaymentController) NotInvoiceList(c *gin.Context) {
|
|
|
contractIdSumMap := make(map[int]int)
|
|
|
|
|
|
for _, v := range registerList {
|
|
|
- if v.InvoicedAmountCount >= v.PaymentAmountCount {
|
|
|
- invoiceTotal += v.InvoicedAmountCount
|
|
|
- } else if v.InvoicedAmountCount == 0 {
|
|
|
- invoiceTotal += v.PaymentAmountCount
|
|
|
+ if v.InvoicedAmount >= v.PaymentAmount {
|
|
|
+ invoiceTotal += v.InvoicedAmount
|
|
|
+ } else if v.InvoicedAmount == 0 {
|
|
|
+ invoiceTotal += v.PaymentAmount
|
|
|
}
|
|
|
rate := v.RMBRate
|
|
|
if rate == 0.0 {
|
|
@@ -2112,6 +2118,7 @@ func (ct *InvoicePaymentController) NotPaymentList(c *gin.Context) {
|
|
|
page.SetCurrent(1)
|
|
|
}
|
|
|
|
|
|
+ cond += ` AND b.payment_amount <> b.invoiced_amount AND b.is_deleted = 0 AND b.contract_status <> 4 `
|
|
|
registerList, total, e := fms.GetNoPaymentCensusPageList(page, cond, pars)
|
|
|
if e != nil {
|
|
|
resp.FailMsg("获取失败", "获取商品到款统计列表总数失败, Err: "+e.Error(), c)
|