ziwen 1 yıl önce
ebeveyn
işleme
f4587e2607
1 değiştirilmiş dosya ile 5 ekleme ve 1 silme
  1. 5 1
      controller/census/invoice_payment.go

+ 5 - 1
controller/census/invoice_payment.go

@@ -1949,7 +1949,11 @@ func (ct *InvoicePaymentController) NotInvoiceList(c *gin.Context) {
 				} else if v.InvoicedAmountCount == 0 {
 					invoiceTotal += v.PaymentAmountCount
 				}
-				contractAmount += v.ContractAmount
+				rate := v.RMBRate
+				if rate == 0.0{
+					rate = 1.0
+				}
+				contractAmount += v.ContractAmount/v.RMBRate
 			}
 
 		}()