|
@@ -1130,14 +1130,6 @@ func (rg *RegisterController) Invoice(c *gin.Context) {
|
|
|
}
|
|
|
}
|
|
|
|
|
|
-
|
|
|
- if req.InvoiceType == fms.ContractInvoiceTypePay {
|
|
|
- err = fmsService.CalculatePaymentServiceAmount(req.ContractRegisterId)
|
|
|
- if err != nil {
|
|
|
- resp.FailMsg("自动分配金额失败", "自动分配金额失败, Err: "+err.Error(), c)
|
|
|
- return
|
|
|
- }
|
|
|
- }
|
|
|
|
|
|
if len(newInvoice) > 0 {
|
|
|
newAmount := decimal.NewFromFloat(0).Round(2)
|
|
@@ -1164,6 +1156,15 @@ func (rg *RegisterController) Invoice(c *gin.Context) {
|
|
|
return
|
|
|
}
|
|
|
|
|
|
+
|
|
|
+ if req.InvoiceType == fms.ContractInvoiceTypePay {
|
|
|
+ err = fmsService.CalculatePaymentServiceAmount(req.ContractRegisterId)
|
|
|
+ if err != nil {
|
|
|
+ resp.FailMsg("自动分配金额失败", "自动分配金额失败, Err: "+err.Error(), c)
|
|
|
+ return
|
|
|
+ }
|
|
|
+ }
|
|
|
+
|
|
|
|
|
|
go fmsService.CheckContractRegisterAmount(req.ContractRegisterId)
|
|
|
|