|
@@ -709,11 +709,14 @@ func (rg *RegisterController) Add(c *gin.Context) {
|
|
|
}
|
|
|
templateIdStr := strings.Join(ids, ",")
|
|
|
nDupList := make([]*fms.DupInvoice, 0)
|
|
|
+
|
|
|
for _, dup := range dupList {
|
|
|
if templateIdStr == dup.TemplateIds {
|
|
|
nDupList = append(nDupList, dup)
|
|
|
}
|
|
|
}
|
|
|
+
|
|
|
+
|
|
|
//先遍历一遍拿到开票销售信息
|
|
|
for _, ppItem := range nDupList {
|
|
|
j := 0
|
|
@@ -830,6 +833,8 @@ func (rg *RegisterController) Add(c *gin.Context) {
|
|
|
}
|
|
|
}
|
|
|
}
|
|
|
+ // 开票到款汇总
|
|
|
+ go fmsService.SummaryInvoicePaymentByContractRegisterId(ob.ContractRegisterId)
|
|
|
// 操作日志
|
|
|
go func() {
|
|
|
logOB := new(fms.ContractRegisterLog)
|
|
@@ -3595,11 +3600,13 @@ func (rg *RegisterController) Import(c *gin.Context) {
|
|
|
}
|
|
|
templateIdStr := strings.Join(ids, ",")
|
|
|
nDupList := make([]*fms.DupInvoice, 0)
|
|
|
+
|
|
|
for _, dup := range dupList {
|
|
|
if templateIdStr == dup.TemplateIds {
|
|
|
nDupList = append(nDupList, dup)
|
|
|
}
|
|
|
}
|
|
|
+
|
|
|
//先遍历一遍拿到开票销售信息
|
|
|
for _, ppItem := range dupList {
|
|
|
j := 0
|
|
@@ -3720,6 +3727,8 @@ func (rg *RegisterController) Import(c *gin.Context) {
|
|
|
go fmsService.CalculatePaymentServiceAmount(newId)
|
|
|
newIds = append(newIds, newId)
|
|
|
|
|
|
+ // 开票到款汇总
|
|
|
+ go fmsService.SummaryInvoicePaymentByContractRegisterId(rowRegister.ContractRegisterId)
|
|
|
}
|
|
|
}
|
|
|
}
|