|
@@ -2038,7 +2038,7 @@ func (ct *InvoicePaymentController) NotInvoiceList(c *gin.Context) {
|
|
|
}
|
|
|
results.DataList = respList
|
|
|
results.InvoiceTotal = invoiceTotal
|
|
|
- results.NotInvoiceTotal = contractAmount - invoiceTotal
|
|
|
+ results.NotInvoiceTotal, _ = strconv.ParseFloat(fmt.Sprintf("%.2f", contractAmount - invoiceTotal), 64)
|
|
|
results.InvoiceCurrencyTotal = invoiceCurrencyTotals
|
|
|
results.PaymentCurrencyTotal = paymentCurrencyTotals
|
|
|
results.NotInvoiceCurrencyTotal = contractAmountCurrencyTotals
|