|
@@ -484,6 +484,81 @@ func (rg *RegisterController) Add(c *gin.Context) {
|
|
return
|
|
return
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
+
|
|
|
|
+ dupList, e := fms.GetDuplicateContractInvoiceDetailItemList(ob.CompanyName, req.StartDate, req.EndDate)
|
|
|
|
+ if e != nil {
|
|
|
|
+ err = fmt.Errorf("获取开票到款列表失败, Err: %s", e.Error())
|
|
|
|
+ return
|
|
|
|
+ }
|
|
|
|
+ for _, ppItem := range dupList {
|
|
|
|
+ if ppItem.ContractRegisterId != req.ContractRegisterId{
|
|
|
|
+ v := &fms.ContractInvoice{
|
|
|
|
+ ContractRegisterId: ob.ContractRegisterId,
|
|
|
|
+ ContractCode: ob.ContractCode,
|
|
|
|
+ Amount: ppItem.Amount,
|
|
|
|
+ OriginAmount: ppItem.OriginAmount,
|
|
|
|
+ CurrencyUnit: ppItem.CurrencyUnit,
|
|
|
|
+ InvoiceDate: ppItem.InvoiceDate,
|
|
|
|
+ SellerId: ppItem.SellerId,
|
|
|
|
+ SellerName: ppItem.SellerName,
|
|
|
|
+ SellerGroupId: ppItem.SellerGroupId,
|
|
|
|
+ SellerGroupName: ppItem.SellerGroupName,
|
|
|
|
+ SellerTeamId: ppItem.SellerTeamId,
|
|
|
|
+ SellerTeamName: ppItem.SellerTeamName,
|
|
|
|
+ AdminId: int(adminInfo.AdminId),
|
|
|
|
+ AdminName: adminInfo.RealName,
|
|
|
|
+ Remark: ppItem.Remark,
|
|
|
|
+ ServiceProductId: ppItem.ServiceProductId,
|
|
|
|
+ IsPrePay: 1,
|
|
|
|
+ StartDate: ppItem.StartDate,
|
|
|
|
+ EndDate: ppItem.EndDate,
|
|
|
|
+ }
|
|
|
|
+ if ppItem.InvoiceType == 3 {
|
|
|
|
+ v.InvoiceType = 1
|
|
|
|
+ } else if ppItem.InvoiceType == 4 {
|
|
|
|
+ v.InvoiceType = 2
|
|
|
|
+ }
|
|
|
|
+ v.Set()
|
|
|
|
+ // 到款登记-付款方式
|
|
|
|
+ v.PayType = fmsService.CalculateContractPaymentType(ppItem.Amount, ob.ContractAmount, dayDiff)
|
|
|
|
+
|
|
|
|
+ // 新增的记录
|
|
|
|
+ opData := ""
|
|
|
|
+ opDataByte, e := json.Marshal(req)
|
|
|
|
+ if e != nil {
|
|
|
|
+ return
|
|
|
|
+ }
|
|
|
|
+ opData = string(opDataByte)
|
|
|
|
+ opType := fms.ContractRegisterOpTypePreInvoice
|
|
|
|
+ newAmount := decimal.NewFromFloat(0).Round(2)
|
|
|
|
+ a := decimal.NewFromFloat(v.Amount).Round(2)
|
|
|
|
+ newAmount = newAmount.Add(a)
|
|
|
|
+ ia, _ := newAmount.Round(2).Float64()
|
|
|
|
+ logList = append(logList, &fms.ContractRegisterLog{
|
|
|
|
+ ContractRegisterId: ob.ContractRegisterId,
|
|
|
|
+ AdminId: int(adminInfo.AdminId),
|
|
|
|
+ AdminName: adminInfo.RealName,
|
|
|
|
+ OpData: opData,
|
|
|
|
+ OpType: opType,
|
|
|
|
+ CreateTime: nowTime,
|
|
|
|
+ AmountRemark: fmt.Sprint("新增", fms.ContractInvoiceKeyNameMap[opType], "金额", ia, "元"),
|
|
|
|
+ })
|
|
|
|
+
|
|
|
|
+ if e := v.Create(); e != nil {
|
|
|
|
+ resp.FailData("日期格式有误", "Err:"+e.Error(), c)
|
|
|
|
+ return
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ //最后删除预到款记录
|
|
|
|
+ e = ppItem.Delete()
|
|
|
|
+ if e != nil {
|
|
|
|
+ resp.FailMsg("删除预到款记录失败", "Err:"+e.Error(), c)
|
|
|
|
+ return
|
|
|
|
+ }
|
|
|
|
+ }
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+
|
|
ppOB := new(fms.ContractPreRegister)
|
|
ppOB := new(fms.ContractPreRegister)
|
|
items, e := ppOB.FetchByRegisterId(req.ContractRegisterId)
|
|
items, e := ppOB.FetchByRegisterId(req.ContractRegisterId)
|
|
if e != nil {
|
|
if e != nil {
|