|
@@ -213,14 +213,21 @@ func (rg *PreRegisterController) Add(c *gin.Context) {
|
|
|
resp.FailMsg("操作失败", "获取合同套餐详情失败, Err: "+e.Error(), c)
|
|
|
return
|
|
|
}
|
|
|
- if e = fms.CreateContractRegisterAndServicesAndPayMent(ob, serviceList); e != nil {
|
|
|
- resp.FailMsg("操作失败", "新增合同及套餐失败, Err: "+e.Error(), c)
|
|
|
+
|
|
|
+ if e = ob.Create(); e != nil {
|
|
|
+ resp.FailMsg("操作失败", "新增合同失败, Err: "+e.Error(), c)
|
|
|
return
|
|
|
}
|
|
|
if ob.ContractRegisterId == 0{
|
|
|
resp.FailMsg("操作失败", "新增合同失败,合同ID为0", c)
|
|
|
return
|
|
|
}
|
|
|
+
|
|
|
+ if e = fms.CreateContractRegisterAndServicesAndPayMent(ob, serviceList); e != nil {
|
|
|
+ resp.FailMsg("操作失败", "新增合同及套餐失败, Err: "+e.Error(), c)
|
|
|
+ return
|
|
|
+ }
|
|
|
+
|
|
|
for _, r := range req.List {
|
|
|
|
|
|
rateList, e := fmsService.GetTodayCurrencyRateList()
|