register.go 93 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943
  1. package contract
  2. import (
  3. "bytes"
  4. "encoding/json"
  5. "fmt"
  6. "github.com/gin-gonic/gin"
  7. "github.com/go-playground/validator/v10"
  8. "github.com/shopspring/decimal"
  9. "github.com/tealeg/xlsx"
  10. "hongze/fms_api/controller/resp"
  11. "hongze/fms_api/global"
  12. "hongze/fms_api/models/base"
  13. "hongze/fms_api/models/crm"
  14. "hongze/fms_api/models/fms"
  15. "hongze/fms_api/models/system"
  16. "hongze/fms_api/services/alarm_msg"
  17. crmService "hongze/fms_api/services/crm"
  18. fmsService "hongze/fms_api/services/fms"
  19. "hongze/fms_api/utils"
  20. "net/http"
  21. "os"
  22. "path"
  23. "strconv"
  24. "strings"
  25. "time"
  26. )
  27. // RegisterController 合同登记
  28. type RegisterController struct{}
  29. // List
  30. // @Title 合同登记列表
  31. // @Description 合同登记列表
  32. // @Param Keyword query string false "关键词"
  33. // @Param StartDate query string false "合同开始日期"
  34. // @Param EndDate query string false "合同结束日期"
  35. // @Param ServiceType query int false "套餐类型"
  36. // @Param ContractType query int false "合同类型"
  37. // @Param RegisterStatus query int false "登记状态"
  38. // @Success 200 {object} fms.ContractRegisterItem
  39. // @router /contract/register/list [get]
  40. func (rg *RegisterController) List(c *gin.Context) {
  41. var req fms.ContractRegisterListReq
  42. if e := c.BindQuery(&req); e != nil {
  43. err, ok := e.(validator.ValidationErrors)
  44. if !ok {
  45. resp.FailData("参数解析失败", "Err:"+e.Error(), c)
  46. return
  47. }
  48. resp.FailData("参数解析失败", err.Translate(global.Trans), c)
  49. return
  50. }
  51. cond := `1 = 1`
  52. pars := make([]interface{}, 0)
  53. // 合同编号/客户姓名/销售/实际使用方
  54. if req.Keyword != "" {
  55. kw := "%" + req.Keyword + "%"
  56. cond += ` AND (company_name LIKE ? OR contract_code LIKE ? OR seller_name LIKE ? OR rai_seller_name LIKE ? OR actual_company_name LIKE ?)`
  57. pars = append(pars, kw, kw, kw, kw, kw)
  58. }
  59. if req.StartDate != "" && req.EndDate != "" {
  60. st := fmt.Sprint(req.StartDate, " 00:00:00")
  61. ed := fmt.Sprint(req.EndDate, " 23:59:59")
  62. cond += ` AND (create_time BETWEEN ? AND ?)`
  63. pars = append(pars, st, ed)
  64. }
  65. if req.ContractType != 0 {
  66. cond += ` AND contract_type = ?`
  67. pars = append(pars, req.ContractType)
  68. }
  69. if req.RegisterStatus != 0 {
  70. cond += ` AND register_status = ?`
  71. pars = append(pars, req.RegisterStatus)
  72. }
  73. // 套餐筛选
  74. if req.ServiceTypes != "" {
  75. serviceTypes := strings.Split(req.ServiceTypes, ",")
  76. registerIds, e := fms.GetContractRegisterIdsByTempId(serviceTypes)
  77. if e != nil {
  78. resp.FailMsg("获取失败", "获取合同登记IDs失败, Err: "+e.Error(), c)
  79. return
  80. }
  81. if len(registerIds) > 0 {
  82. cond += ` AND contract_register_id IN ?`
  83. pars = append(pars, registerIds)
  84. } else {
  85. cond += ` AND 1 = 2`
  86. }
  87. }
  88. page := new(base.Page)
  89. page.SetPageSize(req.PageSize)
  90. page.SetCurrent(req.Current)
  91. page.AddOrderItem(base.OrderItem{Column: "create_time", Asc: false})
  92. total, list, e := fms.GetContractRegisterItemPageList(page, cond, pars)
  93. if e != nil {
  94. resp.FailMsg("获取失败", "获取合同登记列表失败, Err: "+e.Error(), c)
  95. return
  96. }
  97. registerIds := make([]int, 0)
  98. for i := range list {
  99. registerIds = append(registerIds, list[i].ContractRegisterId)
  100. }
  101. serviceMap := make(map[int]string, 0)
  102. invoiceMap := make(map[int][]*fms.ContractInvoiceItem, 0)
  103. paymentMap := make(map[int][]*fms.ContractInvoiceItem, 0)
  104. if len(registerIds) > 0 {
  105. // 获取所有的服务套餐
  106. serviceMap, _, e = fmsService.GetContractServiceNameFormat(registerIds)
  107. if e != nil {
  108. resp.FailMsg("获取失败", e.Error(), c)
  109. return
  110. }
  111. // 获取开票/到款列表
  112. invoiceCond := `contract_register_id IN ?`
  113. invoicePars := make([]interface{}, 0)
  114. invoicePars = append(invoicePars, registerIds)
  115. invoiceList, e := fms.GetContractInvoiceItemList(invoiceCond, invoicePars)
  116. if e != nil {
  117. resp.FailMsg("获取失败", "获取开票/到款列表失败, Err: "+e.Error(), c)
  118. return
  119. }
  120. for i := range invoiceList {
  121. if invoiceMap[invoiceList[i].ContractRegisterId] == nil {
  122. invoiceMap[invoiceList[i].ContractRegisterId] = make([]*fms.ContractInvoiceItem, 0)
  123. }
  124. if paymentMap[invoiceList[i].ContractRegisterId] == nil {
  125. paymentMap[invoiceList[i].ContractRegisterId] = make([]*fms.ContractInvoiceItem, 0)
  126. }
  127. if invoiceList[i].InvoiceType == fms.ContractInvoiceTypeMake {
  128. invoiceMap[invoiceList[i].ContractRegisterId] = append(invoiceMap[invoiceList[i].ContractRegisterId], invoiceList[i])
  129. }
  130. if invoiceList[i].InvoiceType == fms.ContractInvoiceTypePay {
  131. paymentMap[invoiceList[i].ContractRegisterId] = append(paymentMap[invoiceList[i].ContractRegisterId], invoiceList[i])
  132. }
  133. }
  134. }
  135. respList := make([]*fms.ContractRegisterList, 0)
  136. for i := range list {
  137. v := new(fms.ContractRegisterList)
  138. v.ContractRegisterItem = list[i]
  139. v.ServicesName = serviceMap[list[i].ContractRegisterId]
  140. v.InvoiceList = invoiceMap[list[i].ContractRegisterId]
  141. v.PaymentList = paymentMap[list[i].ContractRegisterId]
  142. respList = append(respList, v)
  143. }
  144. page.SetTotal(total)
  145. baseData := new(base.BaseData)
  146. baseData.SetPage(page)
  147. baseData.SetList(respList)
  148. resp.OkData("获取成功", baseData, c)
  149. }
  150. // Add
  151. // @Title 新增合同登记
  152. // @Description 新增合同登记
  153. // @Param request body fms.ContractRegisterAddReq true "type json string"
  154. // @Success 200 string "操作成功"
  155. // @router /contract/register/add [post]
  156. func (rg *RegisterController) Add(c *gin.Context) {
  157. req := new(fms.ContractRegisterAddReq)
  158. err := c.ShouldBind(&req)
  159. if err != nil {
  160. errs, ok := err.(validator.ValidationErrors)
  161. if !ok {
  162. resp.FailData("参数解析失败", "Err:"+err.Error(), c)
  163. return
  164. }
  165. resp.FailData("参数解析失败", errs.Translate(global.Trans), c)
  166. return
  167. }
  168. claims, _ := c.Get("adminInfo")
  169. adminInfo := claims.(*system.SysAdmin)
  170. // 日期校验
  171. startDate, e := time.ParseInLocation(utils.FormatDate, req.StartDate, time.Local)
  172. if e != nil {
  173. resp.FailMsg("合同开始日期格式有误", "合同开始日期格式有误, Err: "+e.Error(), c)
  174. return
  175. }
  176. endDate, e := time.ParseInLocation(utils.FormatDate, req.EndDate, time.Local)
  177. if e != nil {
  178. resp.FailMsg("合同结束日期格式有误", "合同结束日期格式有误, Err: "+e.Error(), c)
  179. return
  180. }
  181. signDate, _ := time.ParseInLocation(utils.FormatDate, "0000-00-00", time.Local)
  182. if req.SignDate != "" {
  183. signDateTime, e := time.ParseInLocation(utils.FormatDate, req.SignDate, time.Local)
  184. if e != nil {
  185. resp.FailMsg("合同签订日期格式有误", "合同签订日期格式有误, Err: "+e.Error(), c)
  186. return
  187. }
  188. signDate = signDateTime
  189. }
  190. // 是否存在相同合同编号的登记
  191. ob := new(fms.ContractRegister)
  192. existCond := `contract_code = ?`
  193. existPars := make([]interface{}, 0)
  194. existPars = append(existPars, req.ContractCode)
  195. exist, e := ob.FetchByCondition(existCond, existPars)
  196. if e != nil && e != utils.ErrNoRow {
  197. resp.FailMsg("操作失败", "获取相同登记号失败, Err: "+e.Error(), c)
  198. return
  199. }
  200. if exist != nil && exist.ContractRegisterId > 0 {
  201. resp.Fail("合同编号已存在", c)
  202. return
  203. }
  204. // 货币及汇率
  205. rateList, e := fmsService.GetTodayCurrencyRateList()
  206. if e != nil {
  207. resp.FailMsg("操作失败", "获取今日货币汇率失败, Err: "+e.Error(), c)
  208. return
  209. }
  210. var rate float64
  211. for i := range rateList {
  212. if req.CurrencyUnit == rateList[i].Code {
  213. rate = rateList[i].RMBRate
  214. break
  215. }
  216. }
  217. if rate <= 0 {
  218. resp.FailMsg("操作失败", "货币汇率信息有误", c)
  219. return
  220. }
  221. // 查询销售信息
  222. var (
  223. sellerId int
  224. raiSellerId int
  225. sellerName string
  226. raiSellerName string
  227. )
  228. if req.SellerIds != "" {
  229. admin := new(crm.Admin)
  230. sellerIds := strings.Split(req.SellerIds, ",")
  231. if len(sellerIds) > 2 {
  232. resp.Fail("最多只能选择两个销售", c)
  233. return
  234. }
  235. var pars []interface{}
  236. cond := ` admin_id in (?) `
  237. pars = append(pars, sellerIds)
  238. sellers, e := admin.List(cond, pars)
  239. if e != nil {
  240. resp.FailMsg("获取销售信息失败", "获取销售信息失败, Err: "+e.Error(), c)
  241. return
  242. }
  243. for _, v := range sellers {
  244. if v.DepartmentId == crm.SellerDepartmentId {
  245. sellerId = v.AdminId
  246. sellerName = v.AdminName
  247. }else if v.DepartmentId == crm.RaiSellerDepartmentId {
  248. raiSellerId = v.AdminId
  249. raiSellerName = v.AdminName
  250. }
  251. }
  252. }
  253. //新老客户判断
  254. /*newCompany := req.NewCompany
  255. if req.ContractType == 1 {
  256. newCompany = 1
  257. }else if req.ContractType == 2 || req.ContractType == 3 {
  258. newCompany = 0
  259. }
  260. if newCompany != req.NewCompany {
  261. resp.Fail("请输入正确的客户类型", c)
  262. return
  263. }*/
  264. nowTime := time.Now().Local()
  265. ob.ContractCode = req.ContractCode
  266. ob.RelateContractCode = req.RelateContractCode
  267. ob.CrmContractId = req.CrmContractId
  268. ob.ContractSource = req.ContractSource
  269. ob.CompanyName = req.CompanyName
  270. ob.ActualCompanyName = req.ActualCompanyName
  271. ob.ProductIds = req.ProductIds
  272. ob.SellerId = sellerId
  273. ob.SellerName = sellerName
  274. ob.RaiSellerId = raiSellerId
  275. ob.RaiSellerName = raiSellerName
  276. ob.ContractType = req.ContractType
  277. ob.ContractAmount = req.ContractAmount
  278. ob.CurrencyUnit = req.CurrencyUnit
  279. ob.RMBRate = rate
  280. ob.StartDate = startDate
  281. ob.EndDate = endDate
  282. ob.SignDate = signDate
  283. ob.AgreedPayTime = req.AgreedPayTime
  284. ob.ContractStatus = req.ContractStatus
  285. ob.RegisterStatus = fms.ContractRegisterStatusIng
  286. ob.Remark = req.Remark
  287. ob.ServiceRemark = req.ServiceRemark
  288. ob.HasPayment = req.HasPayment
  289. ob.NewCompany = req.NewCompany
  290. ob.Set()
  291. // 存在代付的直接完成登记, 且不允许进行开票/到款登记
  292. if req.HasPayment == 1 || req.ContractStatus == fms.ContractStatusEnd {
  293. ob.RegisterStatus = fms.ContractRegisterStatusComplete
  294. }
  295. // 新增套餐金额详情内容
  296. serviceAmountMap := make(map[int]float64)
  297. serviceAmountList, e := fmsService.HandleContractServiceAmount(req.ServiceAmount, serviceAmountMap, req.CurrencyUnit)
  298. if e != nil {
  299. resp.FailMsg("操作失败", "新增合同套餐金额信息失败, Err: "+e.Error(), c)
  300. return
  301. }
  302. //判断产品信息
  303. productIds := make(map[int]struct{})
  304. productIdsStr := ""
  305. for _, v := range serviceAmountList {
  306. productIds[v.ProductId] = struct{}{}
  307. }
  308. for proId, _ := range productIds {
  309. productIdsStr += strconv.Itoa(proId)+","
  310. }
  311. productIdsStr = strings.Trim(productIdsStr, ",")
  312. ob.ProductIds = productIdsStr
  313. // 套餐信息
  314. serviceList, e := fmsService.HandleContractServiceAndDetail(req.Services, true, serviceAmountMap)
  315. if e != nil {
  316. resp.FailMsg("操作失败", "获取合同套餐详情失败, Err: "+e.Error(), c)
  317. return
  318. }
  319. // 新增合同及套餐
  320. if req.Supplement == 1 {
  321. //新增到款信息
  322. if ob.HasPayment == 1 {
  323. resp.Fail("合同存在代付不允许添加开票/到款登记", c)
  324. return
  325. }
  326. //新增合同信息
  327. if e = fms.CreateContractRegisterAndServicesAndPayMent(ob, serviceList, req.PrePayId); e != nil {
  328. resp.FailMsg("操作失败", "新增合同及套餐失败, Err: "+e.Error(), c)
  329. return
  330. }
  331. prePayOB := new(fms.ContractPrePayment)
  332. ppItem, e := prePayOB.Fetch(req.PrePayId)
  333. if e != nil {
  334. if e == utils.ErrNoRow {
  335. resp.Fail("预到款不存在或已被删除", c)
  336. return
  337. }
  338. resp.FailMsg("获取预到款记录失败", "Err:"+e.Error(), c)
  339. return
  340. }
  341. // 合同有效时长(计算付款方式)
  342. dayDiff := ob.EndDate.Sub(ob.StartDate).Hours() / 24
  343. // 获取销售分组信息
  344. sellerList, e := crmService.GetSellerDepartmentListWithGroupAndTeam()
  345. if e != nil {
  346. resp.FailData("获取销售失败", "Err:"+e.Error(), c)
  347. return
  348. }
  349. sellerMap := make(map[int]*crm.SellerAdminWithGroupTeam)
  350. for i := range sellerList {
  351. sellerMap[sellerList[i].SellerId] = sellerList[i]
  352. }
  353. v := &fms.ContractInvoice{
  354. ContractRegisterId: ob.ContractRegisterId,
  355. ContractCode: ob.ContractCode,
  356. Amount: ppItem.Amount,
  357. OriginAmount: ppItem.OriginAmount,
  358. CurrencyUnit: ppItem.CurrencyUnit,
  359. InvoiceType: fms.ContractInvoiceTypePay,
  360. InvoiceDate: ppItem.CreateTime,
  361. AdminId: int(adminInfo.AdminId),
  362. AdminName: adminInfo.RealName,
  363. Remark: ppItem.Remark,
  364. IsPrePay: 1,
  365. }
  366. v.Set()
  367. // 到款登记-付款方式
  368. v.PayType = fmsService.CalculateContractPaymentType(ppItem.Amount, ob.ContractAmount, dayDiff)
  369. // 新增的记录
  370. logList := make([]*fms.ContractRegisterLog, 0)
  371. opData := ""
  372. opDataByte, e := json.Marshal(req)
  373. if e != nil {
  374. return
  375. }
  376. opData = string(opDataByte)
  377. opType := fms.ContractInvoiceTypePrePay
  378. newAmount := decimal.NewFromFloat(0).Round(2)
  379. a := decimal.NewFromFloat(v.Amount).Round(2)
  380. newAmount = newAmount.Add(a)
  381. ia, _ := newAmount.Round(2).Float64()
  382. logList = append(logList, &fms.ContractRegisterLog{
  383. ContractRegisterId: ob.ContractRegisterId,
  384. AdminId: int(adminInfo.AdminId),
  385. AdminName: adminInfo.RealName,
  386. OpData: opData,
  387. OpType: opType,
  388. CreateTime: nowTime,
  389. AmountRemark: fmt.Sprint("新增", fms.ContractInvoiceKeyNameMap[opType], "金额", ia, "元"),
  390. })
  391. if e := v.Create(); e != nil {
  392. resp.FailData("日期格式有误", "Err:"+e.Error(), c)
  393. return
  394. }
  395. //最后删除预到款记录
  396. e = ppItem.Delete()
  397. if e != nil {
  398. resp.FailMsg("删除预到款记录失败", "Err:"+e.Error(), c)
  399. return
  400. }
  401. // 校验金额-是否修改状态
  402. go fmsService.CheckContractRegisterAmount(ob.ContractRegisterId)
  403. // 开票到款汇总
  404. go fmsService.SummaryInvoicePaymentByContractRegisterId(ob.ContractRegisterId)
  405. // 操作日志
  406. go func() {
  407. logOB := new(fms.ContractRegisterLog)
  408. if e := logOB.AddInBatches(logList); e != nil {
  409. return
  410. }
  411. }()
  412. } else {
  413. if e = fms.CreateContractRegisterAndServices(ob, serviceList, serviceAmountList); e != nil {
  414. resp.FailMsg("操作失败", "新增合同及套餐失败, Err: "+e.Error(), c)
  415. return
  416. }
  417. }
  418. // 操作日志
  419. go func() {
  420. opData := ""
  421. opDataByte, e := json.Marshal(req)
  422. if e != nil {
  423. return
  424. }
  425. opData = string(opDataByte)
  426. logItem := new(fms.ContractRegisterLog)
  427. logItem.ContractRegisterId = ob.ContractRegisterId
  428. logItem.AdminId = int(adminInfo.AdminId)
  429. logItem.AdminName = adminInfo.RealName
  430. logItem.OpData = opData
  431. logItem.OpType = fms.ContractRegisterOpTypeSave
  432. logItem.CreateTime = nowTime
  433. logItem.Remark = req.Remark
  434. if e = logItem.Create(); e != nil {
  435. return
  436. }
  437. }()
  438. resp.Ok("操作成功", c)
  439. }
  440. // Edit
  441. // @Title 编辑合同登记
  442. // @Description 编辑合同登记
  443. // @Param request body fms.ContractRegisterEditReq true "type json string"
  444. // @Success 200 string "操作成功"
  445. // @router /contract/register/edit [post]
  446. func (rg *RegisterController) Edit(c *gin.Context) {
  447. req := new(fms.ContractRegisterEditReq)
  448. err := c.ShouldBind(&req)
  449. if err != nil {
  450. errs, ok := err.(validator.ValidationErrors)
  451. if !ok {
  452. resp.FailData("参数解析失败", "Err:"+err.Error(), c)
  453. return
  454. }
  455. resp.FailData("参数解析失败", errs.Translate(global.Trans), c)
  456. return
  457. }
  458. claims, _ := c.Get("adminInfo")
  459. adminInfo := claims.(*system.SysAdmin)
  460. // 日期校验
  461. startDate, e := time.ParseInLocation(utils.FormatDate, req.StartDate, time.Local)
  462. if e != nil {
  463. resp.FailMsg("合同开始日期格式有误", "合同开始日期格式有误, Err: "+e.Error(), c)
  464. return
  465. }
  466. endDate, e := time.ParseInLocation(utils.FormatDate, req.EndDate, time.Local)
  467. if e != nil {
  468. resp.FailMsg("合同结束日期格式有误", "合同结束日期格式有误, Err: "+e.Error(), c)
  469. return
  470. }
  471. signDate, _ := time.ParseInLocation(utils.FormatDate, "0000-00-00", time.Local)
  472. if req.SignDate != "" {
  473. signDateTime, e := time.ParseInLocation(utils.FormatDate, req.SignDate, time.Local)
  474. if e != nil {
  475. resp.FailMsg("合同签订日期格式有误", "合同签订日期格式有误, Err: "+e.Error(), c)
  476. return
  477. }
  478. signDate = signDateTime
  479. }
  480. ob := new(fms.ContractRegister)
  481. item, e := ob.Fetch(req.ContractRegisterId)
  482. if e != nil {
  483. if e == utils.ErrNoRow {
  484. resp.Fail("登记记录不存在或已被删除", c)
  485. return
  486. }
  487. resp.FailMsg("操作失败", "获取合同登记信息失败, Err:"+e.Error(), c)
  488. return
  489. }
  490. // 查询销售信息
  491. var (
  492. sellerId int
  493. raiSellerId int
  494. sellerName string
  495. raiSellerName string
  496. )
  497. if req.SellerIds != "" {
  498. admin := new(crm.Admin)
  499. sellerIds := strings.Split(req.SellerIds, ",")
  500. if len(sellerIds) > 2 {
  501. resp.Fail("最多只能选择两个销售", c)
  502. return
  503. }
  504. var pars []interface{}
  505. cond := ` admin_id in (?) `
  506. pars = append(pars, sellerIds)
  507. sellers, e := admin.List(cond, pars)
  508. if e != nil {
  509. resp.FailMsg("获取销售信息失败", "获取销售信息失败, Err: "+e.Error(), c)
  510. return
  511. }
  512. for _, v := range sellers {
  513. if v.DepartmentId == crm.SellerDepartmentId {
  514. sellerId = v.AdminId
  515. sellerName = v.AdminName
  516. }else if v.DepartmentId == crm.RaiSellerDepartmentId {
  517. raiSellerId = v.AdminId
  518. raiSellerName = v.AdminName
  519. }
  520. }
  521. }
  522. // 是否存在相同合同编号的登记
  523. existCond := `contract_code = ?`
  524. existPars := make([]interface{}, 0)
  525. existPars = append(existPars, req.ContractCode)
  526. exist, e := ob.FetchByCondition(existCond, existPars)
  527. if e != nil && e != utils.ErrNoRow {
  528. resp.FailMsg("操作失败", "获取相同登记号失败, Err: "+e.Error(), c)
  529. return
  530. }
  531. if exist != nil && exist.ContractRegisterId > 0 && exist.ContractRegisterId != item.ContractRegisterId {
  532. resp.Fail("合同编号已存在", c)
  533. return
  534. }
  535. originHasPayment := item.HasPayment
  536. updateCols := []string{
  537. "ProductIds","ContractCode", "RelateContractCode", "CrmContractId", "ContractSource", "CompanyName", "ActualCompanyName",
  538. "SellerId", "SellerName", "ContractType", "ContractAmount", "StartDate", "EndDate", "SignDate", "AgreedPayTime",
  539. "ContractStatus", "RegisterStatus", "Remark", "ServiceRemark", "HasPayment", "NewCompany", "ModifyTime",
  540. }
  541. nowTime := time.Now().Local()
  542. item.ProductIds = req.ProductIds
  543. item.ContractCode = req.ContractCode
  544. item.RelateContractCode = req.RelateContractCode
  545. item.CrmContractId = req.CrmContractId
  546. item.ContractSource = req.ContractSource
  547. item.CompanyName = req.CompanyName
  548. item.ActualCompanyName = req.ActualCompanyName
  549. item.SellerId = sellerId
  550. item.SellerName = sellerName
  551. item.RaiSellerId = raiSellerId
  552. item.RaiSellerName = raiSellerName
  553. item.ContractType = req.ContractType
  554. item.ContractAmount = req.ContractAmount
  555. item.StartDate = startDate
  556. item.EndDate = endDate
  557. item.SignDate = signDate
  558. item.AgreedPayTime = req.AgreedPayTime
  559. item.ContractStatus = req.ContractStatus
  560. item.RegisterStatus = fms.ContractRegisterStatusIng
  561. item.Remark = req.Remark
  562. item.ServiceRemark = req.ServiceRemark
  563. item.HasPayment = req.HasPayment
  564. item.NewCompany = req.NewCompany
  565. item.ModifyTime = nowTime
  566. // 存在代付的直接完成登记, 且不允许进行开票/到款登记
  567. if req.HasPayment == 1 {
  568. item.RegisterStatus = fms.ContractRegisterStatusComplete
  569. updateCols = append(updateCols, "RegisterStatus")
  570. }
  571. // 开票到款信息
  572. invoiceOB := new(fms.ContractInvoice)
  573. invoiceCond := `contract_register_id = ?`
  574. invoicePars := make([]interface{}, 0)
  575. invoicePars = append(invoicePars, req.ContractRegisterId)
  576. invoiceList, e := invoiceOB.List(invoiceCond, invoicePars, "")
  577. if e != nil {
  578. resp.FailMsg("操作失败", "获取合同开票到款列表失败, Err: "+e.Error(), c)
  579. return
  580. }
  581. invoiceUpdateCols := make([]string, 0)
  582. // 开票到款操作类型: 0-无; 1-更新; 2-删除;
  583. logRemark := req.Remark
  584. invoiceHandleType := 0
  585. if originHasPayment == 0 && req.HasPayment == 1 {
  586. // 若从无代付修改为有代付, 则删除无代付期间新增的所有开票到款登记
  587. invoiceHandleType = 2
  588. } else {
  589. // 修改了货币单位后,同步更新汇率及开票到款的换算金额
  590. if req.CurrencyUnit != item.CurrencyUnit {
  591. rateList, e := fmsService.GetTodayCurrencyRateList()
  592. if e != nil {
  593. resp.FailMsg("操作失败", "获取货币列表及汇率失败, Err: "+e.Error(), c)
  594. return
  595. }
  596. var rate float64
  597. for i := range rateList {
  598. if rateList[i].Code == req.CurrencyUnit {
  599. rate = rateList[i].RMBRate
  600. break
  601. }
  602. }
  603. if rate < 0 {
  604. resp.FailMsg("操作失败", "货币汇率有误", c)
  605. return
  606. }
  607. item.CurrencyUnit = req.CurrencyUnit
  608. item.RMBRate = rate
  609. updateCols = append(updateCols, "CurrencyUnit", "RMBRate")
  610. // 调整开票到款换算后的金额, 保留两位小数
  611. for i := range invoiceList {
  612. invoiceList[i].CurrencyUnit = req.CurrencyUnit
  613. a, _ := strconv.ParseFloat(fmt.Sprintf("%.2f", invoiceList[i].OriginAmount/rate), 64)
  614. invoiceList[i].Amount = a
  615. }
  616. invoiceUpdateCols = append(invoiceUpdateCols, "CurrencyUnit", "Amount")
  617. invoiceHandleType = 1
  618. logRemark = fmt.Sprintf("金额单位由%s修改为%s\n%s", item.CurrencyUnit, req.CurrencyUnit, logRemark)
  619. }
  620. }
  621. // 新增套餐金额详情内容
  622. serviceAmountMap := make(map[int]float64)
  623. serviceAmountList, e := fmsService.HandleContractServiceAmount(req.ServiceAmount, serviceAmountMap, req.CurrencyUnit)
  624. if e != nil {
  625. resp.FailMsg("操作失败", "新增合同套餐金额信息失败, Err: "+e.Error(), c)
  626. return
  627. }
  628. //判断产品信息
  629. productIds := make(map[int]struct{})
  630. productIdsStr := ""
  631. for _, v := range serviceAmountList {
  632. productIds[v.ProductId] = struct{}{}
  633. }
  634. for proId, _ := range productIds {
  635. productIdsStr += strconv.Itoa(proId)+","
  636. }
  637. productIdsStr = strings.Trim(productIdsStr, ",")
  638. item.ProductIds = productIdsStr
  639. // 套餐信息
  640. serviceList, e := fmsService.HandleContractServiceAndDetail(req.Services, true, serviceAmountMap)
  641. if e != nil {
  642. resp.FailMsg("操作失败", "获取合同套餐详情失败, Err: "+e.Error(), c)
  643. return
  644. }
  645. // 更新合同登记、套餐、开票到款
  646. if e = fms.UpdateContractRegister(item, updateCols, serviceList, invoiceList, invoiceUpdateCols, invoiceHandleType, serviceAmountList); e != nil {
  647. resp.FailMsg("操作失败", "更新合同及套餐失败, Err: "+e.Error(), c)
  648. return
  649. }
  650. // 自动分配套餐金额
  651. go fmsService.CalculatePaymentServiceAmount(item.ContractRegisterId)
  652. // 校验金额-是否修改状态
  653. go fmsService.CheckContractRegisterAmount(item.ContractRegisterId)
  654. // 操作日志
  655. go func() {
  656. opData := ""
  657. opDataByte, e := json.Marshal(req)
  658. if e != nil {
  659. return
  660. }
  661. opData = string(opDataByte)
  662. logItem := new(fms.ContractRegisterLog)
  663. logItem.ContractRegisterId = item.ContractRegisterId
  664. logItem.AdminId = int(adminInfo.AdminId)
  665. logItem.AdminName = adminInfo.RealName
  666. logItem.OpData = opData
  667. logItem.OpType = fms.ContractRegisterOpTypeEdit
  668. logItem.CreateTime = nowTime
  669. logItem.Remark = logRemark
  670. if e = logItem.Create(); e != nil {
  671. return
  672. }
  673. }()
  674. resp.Ok("操作成功", c)
  675. }
  676. // Del
  677. // @Title 删除合同登记
  678. // @Description 删除合同登记
  679. // @Param request body fms.ContractRegisterDelReq true "type json string"
  680. // @Success 200 string "操作成功"
  681. // @router /contract/register/del [post]
  682. func (rg *RegisterController) Del(c *gin.Context) {
  683. req := new(fms.ContractRegisterDelReq)
  684. err := c.ShouldBind(&req)
  685. if err != nil {
  686. errs, ok := err.(validator.ValidationErrors)
  687. if !ok {
  688. resp.FailData("参数解析失败", "Err:"+err.Error(), c)
  689. return
  690. }
  691. resp.FailData("参数解析失败", errs.Translate(global.Trans), c)
  692. return
  693. }
  694. claims, _ := c.Get("adminInfo")
  695. adminInfo := claims.(*system.SysAdmin)
  696. ob := new(fms.ContractRegister)
  697. item, e := ob.Fetch(req.ContractRegisterId)
  698. if e != nil {
  699. if e == utils.ErrNoRow {
  700. resp.Fail("合同登记不存在或已被删除", c)
  701. return
  702. }
  703. resp.FailMsg("获取合同登记失败", "Err:"+e.Error(), c)
  704. return
  705. }
  706. nowTime := time.Now().Local()
  707. item.IsDeleted = 1
  708. item.ModifyTime = nowTime
  709. updateCols := []string{"IsDeleted", "ModifyTime"}
  710. if e = item.Update(updateCols); e != nil {
  711. resp.FailMsg("操作失败", "更新合同登记失败, Err:"+e.Error(), c)
  712. return
  713. }
  714. // 删除对应的开票到款登记
  715. go func() {
  716. if e = fms.DeleteContractInvoicesByRegisterId(item.ContractRegisterId); e != nil {
  717. alarm_msg.SendAlarmMsg(fmt.Sprintf("删除合同登记%d后, 删除开票到款记录失败, ErrMsg: %s", item.ContractRegisterId, e.Error()), 3)
  718. return
  719. }
  720. if e = fms.DeleteInvoicePaymentSummaryByRegisterId(item.ContractRegisterId); e != nil {
  721. alarm_msg.SendAlarmMsg(fmt.Sprintf("删除合同登记%d后, 删除开票到款汇总数据失败, ErrMsg: %s", item.ContractRegisterId, e.Error()), 3)
  722. return
  723. }
  724. }()
  725. // 操作日志
  726. go func() {
  727. opData := ""
  728. opDataByte, e := json.Marshal(req)
  729. if e != nil {
  730. return
  731. }
  732. opData = string(opDataByte)
  733. logItem := new(fms.ContractRegisterLog)
  734. logItem.ContractRegisterId = req.ContractRegisterId
  735. logItem.AdminId = int(adminInfo.AdminId)
  736. logItem.AdminName = adminInfo.RealName
  737. logItem.OpData = opData
  738. logItem.OpType = fms.ContractRegisterOpTypeDel
  739. logItem.CreateTime = nowTime
  740. if e = logItem.Create(); e != nil {
  741. return
  742. }
  743. }()
  744. resp.Ok("操作成功", c)
  745. }
  746. // Detail
  747. // @Title 合同登记详情
  748. // @Description 合同登记详情
  749. // @Param ContractRegisterId query int false "合同登记ID"
  750. // @Success 200 {object} fms.ContractRegisterDetail
  751. // @router /contract/register/detail [get]
  752. func (rg *RegisterController) Detail(c *gin.Context) {
  753. var req fms.ContractRegisterDetailReq
  754. if e := c.BindQuery(&req); e != nil {
  755. err, ok := e.(validator.ValidationErrors)
  756. if !ok {
  757. resp.FailData("参数解析失败", "Err:"+e.Error(), c)
  758. return
  759. }
  760. resp.FailData("参数解析失败", err.Translate(global.Trans), c)
  761. return
  762. }
  763. result := new(fms.ContractRegisterDetail)
  764. // 合同登记信息
  765. item, e := fms.GetContractRegisterItemById(req.ContractRegisterId)
  766. if e != nil {
  767. resp.FailData("获取失败", "获取合同登记详情失败, Err:"+e.Error(), c)
  768. return
  769. }
  770. item.SellerIds = strconv.Itoa(item.SellerId)
  771. if item.RaiSellerId != 0 {
  772. item.SellerIds += ","+strconv.Itoa(item.RaiSellerId)
  773. }
  774. item.SellerIds = strings.Trim(item.SellerIds, ",")
  775. result.ContractRegisterItem = item
  776. // 套餐信息
  777. serviceAmountTempList, e := fms.GetContractServiceAmountByRegisterId(req.ContractRegisterId)
  778. if e != nil {
  779. resp.FailData("获取失败", "获取合同套餐信息失败, Err: "+e.Error(), c)
  780. return
  781. }
  782. serviceAmountList := make([]*fms.ContractServiceAmountItem, 0)
  783. for _, v := range serviceAmountTempList {
  784. tmp := &fms.ContractServiceAmountItem{
  785. ContractRegisterId: v.ContractRegisterId,
  786. ProductId: v.ProductId,
  787. ServiceAmount: v.ServiceAmount,
  788. CurrencyUnit: v.CurrencyUnit,
  789. }
  790. serviceAmountList = append(serviceAmountList, tmp)
  791. }
  792. result.ServiceAmountList = serviceAmountList
  793. // 套餐金额信息
  794. serviceList, e := fmsService.GetContractServiceAndDetail(req.ContractRegisterId)
  795. if e != nil {
  796. resp.FailData("获取失败", "获取合同套餐信息失败, Err: "+e.Error(), c)
  797. return
  798. }
  799. result.ServiceList = serviceList
  800. // 开票/到款信息
  801. invoiceCond := `contract_register_id = ?`
  802. invoicePars := make([]interface{}, 0)
  803. invoicePars = append(invoicePars, req.ContractRegisterId)
  804. invoiceList, e := fms.GetContractInvoiceItemList(invoiceCond, invoicePars)
  805. if e != nil {
  806. resp.FailData("获取失败", "获取合同开票/到款信息失败, Err: "+e.Error(), c)
  807. return
  808. }
  809. result.InvoiceList = make([]*fms.ContractInvoiceItem, 0)
  810. result.PaymentList = make([]*fms.ContractInvoiceItem, 0)
  811. for i := range invoiceList {
  812. if invoiceList[i].InvoiceType == fms.ContractInvoiceTypeMake {
  813. result.InvoiceList = append(result.InvoiceList, invoiceList[i])
  814. continue
  815. }
  816. if invoiceList[i].InvoiceType == fms.ContractInvoiceTypePay {
  817. result.PaymentList = append(result.PaymentList, invoiceList[i])
  818. }
  819. }
  820. // 合同登记进度
  821. logCond := `contract_register_id = ?`
  822. logPars := make([]interface{}, 0)
  823. logPars = append(logPars, req.ContractRegisterId)
  824. logList, e := fms.GetContractRegisterLogItemList(logCond, logPars)
  825. if e != nil {
  826. resp.FailData("获取失败", "获取合同登记进度失败, Err: "+e.Error(), c)
  827. return
  828. }
  829. result.Logs = logList
  830. resp.OkData("获取成功", result, c)
  831. }
  832. // UpdateStatus
  833. // @Title 修改合同状态
  834. // @Description 修改合同状态
  835. // @Param request body fms.ContractRegisterUpdateStatusReq true "type json string"
  836. // @Success 200 string "操作成功"
  837. // @router /contract/register/update_status [post]
  838. func (rg *RegisterController) UpdateStatus(c *gin.Context) {
  839. req := new(fms.ContractRegisterUpdateStatusReq)
  840. err := c.ShouldBind(&req)
  841. if err != nil {
  842. errs, ok := err.(validator.ValidationErrors)
  843. if !ok {
  844. resp.FailData("参数解析失败", "Err:"+err.Error(), c)
  845. return
  846. }
  847. resp.FailData("参数解析失败", errs.Translate(global.Trans), c)
  848. return
  849. }
  850. claims, _ := c.Get("adminInfo")
  851. adminInfo := claims.(*system.SysAdmin)
  852. ob := new(fms.ContractRegister)
  853. item, e := ob.Fetch(req.ContractRegisterId)
  854. if e != nil {
  855. if e == utils.ErrNoRow {
  856. resp.Fail("合同登记不存在或已被删除", c)
  857. return
  858. }
  859. resp.FailMsg("获取合同登记失败", "Err:"+e.Error(), c)
  860. return
  861. }
  862. nowTime := time.Now().Local()
  863. item.ContractStatus = req.ContractStatus
  864. item.ModifyTime = nowTime
  865. updateCols := []string{"ContractStatus", "ModifyTime"}
  866. if e = item.Update(updateCols); e != nil {
  867. resp.FailMsg("操作失败", "更新合同登记失败, Err:"+e.Error(), c)
  868. return
  869. }
  870. // 校验金额-是否修改状态
  871. go fmsService.CheckContractRegisterAmount(req.ContractRegisterId)
  872. // 操作日志
  873. go func() {
  874. opData := ""
  875. opDataByte, e := json.Marshal(req)
  876. if e != nil {
  877. return
  878. }
  879. opData = string(opDataByte)
  880. logItem := new(fms.ContractRegisterLog)
  881. logItem.ContractRegisterId = req.ContractRegisterId
  882. logItem.AdminId = int(adminInfo.AdminId)
  883. logItem.AdminName = adminInfo.RealName
  884. logItem.OpData = opData
  885. logItem.OpType = fms.ContractRegisterOpTypeStatus
  886. logItem.CreateTime = nowTime
  887. if e = logItem.Create(); e != nil {
  888. return
  889. }
  890. }()
  891. resp.Ok("操作成功", c)
  892. }
  893. // Invoice
  894. // @Title 开票/到款登记
  895. // @Description 开票/到款登记
  896. // @Param request body fms.ContractInvoiceSaveReq true "type json string"
  897. // @Success 200 string "操作成功"
  898. // @router /contract/register/invoice [post]
  899. func (rg *RegisterController) Invoice(c *gin.Context) {
  900. req := new(fms.ContractInvoiceSaveReq)
  901. err := c.ShouldBind(&req)
  902. if err != nil {
  903. errs, ok := err.(validator.ValidationErrors)
  904. if !ok {
  905. resp.FailData("参数解析失败", "Err:"+err.Error(), c)
  906. return
  907. }
  908. resp.FailData("参数解析失败", errs.Translate(global.Trans), c)
  909. return
  910. }
  911. claims, _ := c.Get("adminInfo")
  912. adminInfo := claims.(*system.SysAdmin)
  913. registerOB := new(fms.ContractRegister)
  914. item, e := registerOB.Fetch(req.ContractRegisterId)
  915. if e != nil {
  916. if e == utils.ErrNoRow {
  917. resp.Fail("合同登记不存在或已被删除", c)
  918. return
  919. }
  920. resp.FailMsg("获取合同登记失败", "Err:"+e.Error(), c)
  921. return
  922. }
  923. // 合同存在代付不允许开票/到款登记
  924. if item.HasPayment == 1 {
  925. resp.Fail("合同存在代付不允许添加开票/到款登记", c)
  926. return
  927. }
  928. noChangeInvoiceIds := make([]int, 0)
  929. newInvoice := make([]*fms.ContractInvoice, 0)
  930. if len(req.AmountList) > 0 {
  931. // 合同有效时长(计算付款方式)
  932. dayDiff := item.EndDate.Sub(item.StartDate).Hours() / 24
  933. // 获取销售分组信息
  934. sellerList, e := crmService.GetSellerDepartmentListWithGroupAndTeam()
  935. if e != nil {
  936. resp.FailData("获取销售失败", "Err:"+e.Error(), c)
  937. return
  938. }
  939. sellerMap := make(map[int]*crm.SellerAdminWithGroupTeam)
  940. for i := range sellerList {
  941. sellerMap[sellerList[i].SellerId] = sellerList[i]
  942. }
  943. for i := range req.AmountList {
  944. if req.AmountList[i].Amount <= 0 {
  945. resp.Fail("登记金额有误", c)
  946. return
  947. }
  948. if req.AmountList[i].InvoiceDate == "" {
  949. resp.Fail("请选择日期", c)
  950. return
  951. }
  952. if req.AmountList[i].ServiceProductId != 1 && req.AmountList[i].ServiceProductId !=2 {
  953. resp.Fail("请选择套餐类型", c)
  954. return
  955. }
  956. // 开票登记销售必填
  957. if req.InvoiceType == fms.ContractInvoiceTypeMake && req.AmountList[i].SellerId <= 0 {
  958. resp.Fail("请选择销售", c)
  959. return
  960. }
  961. t, e := time.ParseInLocation(utils.FormatDate, req.AmountList[i].InvoiceDate, time.Local)
  962. if e != nil {
  963. resp.FailData("日期格式有误", "Err:"+e.Error(), c)
  964. return
  965. }
  966. if req.AmountList[i].InvoiceId > 0 {
  967. noChangeInvoiceIds = append(noChangeInvoiceIds, req.AmountList[i].InvoiceId)
  968. continue
  969. }
  970. if req.AmountList[i].InvoiceId == 0 {
  971. v := &fms.ContractInvoice{
  972. ContractRegisterId: req.ContractRegisterId,
  973. ContractCode: item.ContractCode,
  974. Amount: req.AmountList[i].Amount,
  975. OriginAmount: req.AmountList[i].OriginAmount,
  976. CurrencyUnit: item.CurrencyUnit,
  977. InvoiceType: req.InvoiceType,
  978. ServiceProductId: req.AmountList[i].ServiceProductId,
  979. InvoiceDate: t,
  980. AdminId: int(adminInfo.AdminId),
  981. AdminName: adminInfo.RealName,
  982. Remark: req.AmountList[i].Remark,
  983. }
  984. v.Set()
  985. // 开票登记-销售信息
  986. if req.InvoiceType == fms.ContractInvoiceTypeMake {
  987. sellerItem := sellerMap[req.AmountList[i].SellerId]
  988. if sellerItem == nil {
  989. resp.Fail("销售信息异常", c)
  990. return
  991. }
  992. if req.AmountList[i].ServiceProductId == crm.CompanyProductFicc && sellerItem.DepartmentId != crm.SellerDepartmentId {
  993. resp.Fail("销售类型和所选套餐类型不一致", c)
  994. return
  995. }
  996. if req.AmountList[i].ServiceProductId == crm.CompanyProductRai && sellerItem.DepartmentId != crm.RaiSellerDepartmentId {
  997. resp.Fail("销售类型和所选套餐类型不一致", c)
  998. return
  999. }
  1000. v.SellerId = sellerItem.SellerId
  1001. v.SellerName = sellerItem.SellerName
  1002. v.SellerGroupId = sellerItem.GroupId
  1003. v.SellerGroupName = sellerItem.GroupName
  1004. v.SellerTeamId = sellerItem.TeamId
  1005. v.SellerTeamName = sellerItem.TeamName
  1006. }
  1007. // 到款登记-付款方式
  1008. if req.InvoiceType == fms.ContractInvoiceTypePay {
  1009. v.PayType = fmsService.CalculateContractPaymentType(req.AmountList[i].Amount, item.ContractAmount, dayDiff)
  1010. }
  1011. newInvoice = append(newInvoice, v)
  1012. }
  1013. }
  1014. }
  1015. // 获取原有的登记信息
  1016. invoiceCond := `contract_register_id = ? AND invoice_type = ? `
  1017. invoicePars := make([]interface{}, 0)
  1018. invoicePars = append(invoicePars, req.ContractRegisterId, req.InvoiceType)
  1019. originInvoiceList, e := fms.GetContractInvoiceItemList(invoiceCond, invoicePars)
  1020. if e != nil {
  1021. resp.FailMsg("获取失败", "获取开票/到款列表失败, Err: "+e.Error(), c)
  1022. return
  1023. }
  1024. // 比对原有和现有的登记信息
  1025. logList := make([]*fms.ContractRegisterLog, 0)
  1026. opData := ""
  1027. opDataByte, e := json.Marshal(req)
  1028. if e != nil {
  1029. return
  1030. }
  1031. opData = string(opDataByte)
  1032. opType := fms.ContractRegisterOpTypeInvoice
  1033. if req.InvoiceType == fms.ContractInvoiceTypePay {
  1034. opType = fms.ContractRegisterOpTypePayment
  1035. }
  1036. nowTime := time.Now().Local()
  1037. // 需要删除的记录
  1038. deleteInvoiceIds := make([]int, 0)
  1039. for i := range originInvoiceList {
  1040. if !utils.InArrayByInt(noChangeInvoiceIds, originInvoiceList[i].ContractInvoiceId) {
  1041. deleteInvoiceIds = append(deleteInvoiceIds, originInvoiceList[i].ContractInvoiceId)
  1042. logList = append(logList, &fms.ContractRegisterLog{
  1043. ContractRegisterId: req.ContractRegisterId,
  1044. AdminId: int(adminInfo.AdminId),
  1045. AdminName: adminInfo.RealName,
  1046. OpData: opData,
  1047. OpType: opType,
  1048. CreateTime: nowTime,
  1049. AmountRemark: fmt.Sprint("删除", fms.ContractInvoiceKeyNameMap[opType], "金额", originInvoiceList[i].Amount, "元"),
  1050. })
  1051. }
  1052. }
  1053. // todo 判断是否符合均分金额的条件,如果符合,需要生成金额分配记录表
  1054. if req.InvoiceType == fms.ContractInvoiceTypePay {
  1055. err = fmsService.CalculatePaymentServiceAmount(req.ContractRegisterId)
  1056. if err != nil {
  1057. resp.FailMsg("自动分配金额失败", "自动分配金额失败, Err: "+err.Error(), c)
  1058. return
  1059. }
  1060. }
  1061. // 新增的记录
  1062. if len(newInvoice) > 0 {
  1063. newAmount := decimal.NewFromFloat(0).Round(2)
  1064. for i := range newInvoice {
  1065. a := decimal.NewFromFloat(newInvoice[i].Amount).Round(2)
  1066. newAmount = newAmount.Add(a)
  1067. }
  1068. ia, _ := newAmount.Round(2).Float64()
  1069. logList = append(logList, &fms.ContractRegisterLog{
  1070. ContractRegisterId: req.ContractRegisterId,
  1071. AdminId: int(adminInfo.AdminId),
  1072. AdminName: adminInfo.RealName,
  1073. OpData: opData,
  1074. OpType: opType,
  1075. CreateTime: nowTime,
  1076. AmountRemark: fmt.Sprint("新增", fms.ContractInvoiceKeyNameMap[opType], "金额", ia, "元"),
  1077. })
  1078. }
  1079. // 删除并新增登记
  1080. ob := new(fms.ContractInvoice)
  1081. if e := ob.DeleteAndCreateNewInvoice(req.ContractRegisterId, req.InvoiceType, deleteInvoiceIds, newInvoice); e != nil {
  1082. resp.FailData("日期格式有误", "Err:"+e.Error(), c)
  1083. return
  1084. }
  1085. // 校验金额-是否修改状态
  1086. go fmsService.CheckContractRegisterAmount(req.ContractRegisterId)
  1087. // 开票到款汇总
  1088. go fmsService.SummaryInvoicePaymentByContractRegisterId(req.ContractRegisterId)
  1089. // 操作日志
  1090. go func() {
  1091. logOB := new(fms.ContractRegisterLog)
  1092. if e := logOB.AddInBatches(logList); e != nil {
  1093. return
  1094. }
  1095. }()
  1096. resp.Ok("操作成功", c)
  1097. }
  1098. // Export
  1099. // @Title 合同登记-导出
  1100. // @Description 合同登记-导出
  1101. // @Param Keyword query string false "关键词"
  1102. // @Param StartDate query string false "合同开始日期"
  1103. // @Param EndDate query string false "合同结束日期"
  1104. // @Param ServiceType query int false "套餐类型"
  1105. // @Param ContractType query int false "合同类型"
  1106. // @Param RegisterStatus query int false "登记状态"
  1107. // @Success 200 string "操作成功"
  1108. // @router /contract/register/export [get]
  1109. func (rg *RegisterController) Export(c *gin.Context) {
  1110. var req fms.ContractRegisterListReq
  1111. if e := c.BindQuery(&req); e != nil {
  1112. err, ok := e.(validator.ValidationErrors)
  1113. if !ok {
  1114. resp.FailData("参数解析失败", "Err:"+e.Error(), c)
  1115. return
  1116. }
  1117. resp.FailData("参数解析失败", err.Translate(global.Trans), c)
  1118. return
  1119. }
  1120. cond := `1 = 1`
  1121. pars := make([]interface{}, 0)
  1122. // 合同编号/客户姓名/销售/实际使用方
  1123. if req.Keyword != "" {
  1124. kw := "%" + req.Keyword + "%"
  1125. cond += ` AND (company_name LIKE ? OR contract_code LIKE ? OR seller_name LIKE ? OR actual_company_name LIKE ?)`
  1126. pars = append(pars, kw, kw, kw, kw)
  1127. }
  1128. if req.StartDate != "" && req.EndDate != "" {
  1129. st := fmt.Sprint(req.StartDate, " 00:00:00")
  1130. ed := fmt.Sprint(req.EndDate, " 23:59:59")
  1131. cond += ` AND (create_time BETWEEN ? AND ?)`
  1132. pars = append(pars, st, ed)
  1133. }
  1134. if req.ContractType != 0 {
  1135. cond += ` AND contract_type = ?`
  1136. pars = append(pars, req.ContractType)
  1137. }
  1138. if req.RegisterStatus != 0 {
  1139. cond += ` AND register_status = ?`
  1140. pars = append(pars, req.RegisterStatus)
  1141. }
  1142. if req.ServiceTypes != "" {
  1143. serviceTypes := strings.Split(req.ServiceTypes, ",")
  1144. registerIds, e := fms.GetContractRegisterIdsByTempId(serviceTypes)
  1145. if e != nil {
  1146. resp.FailMsg("获取失败", "获取合同登记IDs失败, Err: "+e.Error(), c)
  1147. return
  1148. }
  1149. if len(registerIds) > 0 {
  1150. cond += ` AND contract_register_id IN ?`
  1151. pars = append(pars, registerIds)
  1152. } else {
  1153. cond += ` AND 1 = 2`
  1154. }
  1155. }
  1156. // 获取列表数据
  1157. cr := new(fms.ContractRegister)
  1158. list, e := cr.List(cond, pars)
  1159. if e != nil {
  1160. resp.FailData("获取合同列表失败", "Err:"+e.Error(), c)
  1161. return
  1162. }
  1163. if len(list) == 0 {
  1164. resp.Fail("无有效数据可导出", c)
  1165. return
  1166. }
  1167. registerIds := make([]int, 0)
  1168. for i := range list {
  1169. registerIds = append(registerIds, list[i].ContractRegisterId)
  1170. }
  1171. // 获取小套餐品种
  1172. cpCond := `product_id = ? AND permission_name <> ?`
  1173. cpPars := make([]interface{}, 0)
  1174. cpPars = append(cpPars, crm.CompanyProductFicc, crm.ChartPermissionStrategyName)
  1175. cp := new(crm.ChartPermission)
  1176. permissionList, e := cp.List(cpCond, cpPars)
  1177. if e != nil {
  1178. resp.FailData("获取小套餐品种失败", "Err:"+e.Error(), c)
  1179. return
  1180. }
  1181. permissionLen := len(permissionList)
  1182. permissionNameIdMap := make(map[string]int)
  1183. for i := range permissionList {
  1184. permissionNameIdMap[permissionList[i].PermissionName] = permissionList[i].ChartPermissionId
  1185. }
  1186. // 获取所有FICC套餐服务
  1187. serviceList, e := fms.GetContractServiceTemplateMapByProductId(crm.CompanyProductFicc)
  1188. if e != nil {
  1189. resp.FailData("获取套餐服务失败", "Err:"+e.Error(), c)
  1190. return
  1191. }
  1192. // 除大小套餐外的其他套餐(下面的导出需要以此动态处理)
  1193. otherService := make([]*fms.ContractServiceTemplateItem, 0)
  1194. for i := range serviceList {
  1195. if serviceList[i].Title != "FICC大套餐" && serviceList[i].Title != "FICC小套餐" {
  1196. otherService = append(otherService, serviceList[i])
  1197. }
  1198. }
  1199. otherServiceLen := len(otherService)
  1200. // 获取所有权益套餐服务
  1201. raiServiceList, e := fms.GetContractServiceTemplateAllByProductId(crm.CompanyProductRai)
  1202. if e != nil {
  1203. resp.FailData("获取权益套餐服务失败", "Err:"+e.Error(), c)
  1204. return
  1205. }
  1206. raiServiceIdMap := make(map[int]*fms.ContractServiceTemplateItem)
  1207. for i := range raiServiceList {
  1208. raiServiceIdMap[raiServiceList[i].ServiceTemplateId] = raiServiceList[i]
  1209. }
  1210. // 除大小套餐外的其他套餐(下面的导出需要以此动态处理)
  1211. raiOtherService := make([]*fms.ContractServiceTemplateItem, 0)
  1212. raiServiceNotShowMap := make(map[int]struct{})
  1213. for _, v := range raiServiceList {
  1214. if v.Pid > 0 && raiServiceIdMap[v.Pid].Pid > 0 {
  1215. raiServiceNotShowMap[v.Pid] = struct{}{}
  1216. raiServiceNotShowMap[raiServiceIdMap[v.Pid].Pid] = struct{}{}
  1217. }else if v.Pid > 0 {
  1218. raiServiceNotShowMap[v.Pid] = struct{}{}
  1219. }
  1220. }
  1221. for _, v := range raiServiceList {
  1222. if _, ok := raiServiceNotShowMap[v.ServiceTemplateId]; !ok {
  1223. if v.Pid > 0 {
  1224. v.ParentTitle = raiServiceIdMap[v.Pid].Title
  1225. }
  1226. raiOtherService = append(raiOtherService, v)
  1227. }
  1228. }
  1229. otherServiceLen += len(raiOtherService)
  1230. //套餐金额map
  1231. serviceAmountMap := make(map[int]map[int]*fms.ContractServiceAmount)
  1232. // 套餐/开票/到款列表
  1233. serviceMap := make(map[int][]*fms.ContractServiceWithParentTitle)
  1234. serviceChartPermissionsMap := make(map[int][]int)
  1235. invoiceMap := make(map[int][]*fms.ContractInvoice)
  1236. paymentMap := make(map[int][]*fms.ContractInvoice)
  1237. maxInvoice := 0
  1238. maxPayment := 0
  1239. if len(registerIds) > 0 {
  1240. // 获取套餐信息
  1241. csCond := `cv.contract_register_id IN ?`
  1242. csPars := make([]interface{}, 0)
  1243. csPars = append(csPars, registerIds)
  1244. cs := new(fms.ContractService)
  1245. serviceList, e := cs.ListWithWithParentTitle(csCond, csPars)
  1246. if e != nil {
  1247. resp.FailData("获取合同套餐列表失败", "Err:"+e.Error(), c)
  1248. return
  1249. }
  1250. for i := range serviceList {
  1251. cid := serviceList[i].ContractRegisterId
  1252. if serviceMap[cid] == nil {
  1253. serviceMap[cid] = make([]*fms.ContractServiceWithParentTitle, 0)
  1254. }
  1255. serviceMap[cid] = append(serviceMap[cid], serviceList[i])
  1256. // 小套餐权限
  1257. if serviceChartPermissionsMap[cid] == nil {
  1258. serviceChartPermissionsMap[cid] = make([]int, 0)
  1259. }
  1260. if serviceList[i].ChartPermissionIds != "" {
  1261. ids := utils.JoinStr2IntArr(serviceList[i].ChartPermissionIds, ",")
  1262. serviceChartPermissionsMap[cid] = append(serviceChartPermissionsMap[cid], ids...)
  1263. }
  1264. }
  1265. // 获取合同的套餐金额信息
  1266. serviceAmountList, e := fms.GetContractServiceAmountByContractRegisterIds(registerIds)
  1267. if e != nil {
  1268. resp.FailData("获取合同的套餐金额信息失败", "Err:"+e.Error(), c)
  1269. return
  1270. }
  1271. for _, v := range serviceAmountList {
  1272. if _, ok := serviceAmountMap[v.ContractRegisterId]; !ok {
  1273. serviceAmountMap[v.ContractRegisterId] = make(map[int]*fms.ContractServiceAmount)
  1274. }
  1275. serviceAmountMap[v.ContractRegisterId][v.ProductId] = v
  1276. }
  1277. // 获取开票/到款详情, 并取最大的开票/到款数(用于动态扩展第二列表头)
  1278. ci := new(fms.ContractInvoice)
  1279. csCond = `contract_register_id IN ?`
  1280. csPars = make([]interface{}, 0)
  1281. csPars = append(csPars, registerIds)
  1282. invoiceList, e := ci.List(csCond, csPars, "")
  1283. if e != nil {
  1284. resp.FailData("获取开票/到款列表失败", "Err:"+e.Error(), c)
  1285. return
  1286. }
  1287. for k := range invoiceList {
  1288. cid := invoiceList[k].ContractRegisterId
  1289. if invoiceMap[cid] == nil {
  1290. invoiceMap[cid] = make([]*fms.ContractInvoice, 0)
  1291. }
  1292. if paymentMap[cid] == nil {
  1293. paymentMap[cid] = make([]*fms.ContractInvoice, 0)
  1294. }
  1295. if invoiceList[k].InvoiceType == fms.ContractInvoiceTypeMake {
  1296. invoiceMap[cid] = append(invoiceMap[cid], invoiceList[k])
  1297. continue
  1298. }
  1299. if invoiceList[k].InvoiceType == fms.ContractInvoiceTypePay {
  1300. paymentMap[cid] = append(paymentMap[cid], invoiceList[k])
  1301. continue
  1302. }
  1303. }
  1304. // 取最大开票/到款数
  1305. for j := range invoiceMap {
  1306. if len(invoiceMap[j]) > maxInvoice {
  1307. maxInvoice = len(invoiceMap[j])
  1308. }
  1309. }
  1310. for p := range paymentMap {
  1311. if len(paymentMap[p]) > maxPayment {
  1312. maxPayment = len(paymentMap[p])
  1313. }
  1314. }
  1315. }
  1316. serviceProductIdMap := map[int]string{
  1317. 1:"FICC套餐",
  1318. 2:"权益套餐",
  1319. }
  1320. // 生成Excel文件
  1321. xlsxFile := xlsx.NewFile()
  1322. style := xlsx.NewStyle()
  1323. alignment := xlsx.Alignment{
  1324. Horizontal: "center",
  1325. Vertical: "center",
  1326. WrapText: true,
  1327. }
  1328. style.Alignment = alignment
  1329. style.ApplyAlignment = true
  1330. sheetName := "财务列表"
  1331. sheet, err := xlsxFile.AddSheet(sheetName)
  1332. if err != nil {
  1333. resp.FailData("新增Sheet失败", "Err:"+err.Error(), c)
  1334. return
  1335. }
  1336. // 1行表头
  1337. hInt := 0
  1338. titleRow := sheet.AddRow()
  1339. titleRow.SetHeight(40)
  1340. // 1行1列-右合并两格, 下合并1行
  1341. cell1 := titleRow.AddCell()
  1342. cell1.HMerge = 4
  1343. cell1.VMerge = 1
  1344. cell1.SetString("FICC客户签约表")
  1345. cell1.SetStyle(style)
  1346. // 右增两列空白格用于第一列合并, 否则后续单元格合并会有问题
  1347. titleRow.AddCell().SetString("")
  1348. titleRow.AddCell().SetString("")
  1349. titleRow.AddCell().SetString("")
  1350. titleRow.AddCell().SetString("")
  1351. hInt += 5
  1352. // 1行2列
  1353. cell2 := titleRow.AddCell()
  1354. cell2.VMerge = 1
  1355. cell2.SetString("FICC大套餐")
  1356. cell2.SetStyle(style)
  1357. hInt ++
  1358. // 1行3列-右合并小套餐数
  1359. if permissionLen >= 1 {
  1360. cell3 := titleRow.AddCell()
  1361. hInt ++
  1362. cell3.HMerge = permissionLen - 1
  1363. cell3.VMerge = 1
  1364. cell3.SetString("FICC小套餐")
  1365. cell3.SetStyle(style)
  1366. // 同上右增单元格小套餐数-1的空白单元格用于合并
  1367. for i := 0; i < permissionLen-1; i++ {
  1368. titleRow.AddCell().SetString("")
  1369. hInt ++
  1370. }
  1371. }
  1372. for i := range otherService {
  1373. cellOther := titleRow.AddCell()
  1374. cellOther.VMerge = 1
  1375. hInt ++
  1376. cellOther.SetString(otherService[i].Title)
  1377. cellOther.SetStyle(style)
  1378. }
  1379. //权益大套餐
  1380. cell4 := titleRow.AddCell()
  1381. cell4.HMerge = 1
  1382. cell4.VMerge = 1
  1383. cell4.SetString("权益大套餐")
  1384. cell4.SetStyle(style)
  1385. titleRow.AddCell().SetString("")
  1386. hInt +=2
  1387. //权益分行业套餐
  1388. cell5 := titleRow.AddCell()
  1389. cell5.HMerge = 8
  1390. cell5.SetString("权益分行业套餐")
  1391. cell5.SetStyle(style)
  1392. titleRow.AddCell().SetString("")
  1393. titleRow.AddCell().SetString("")
  1394. titleRow.AddCell().SetString("")
  1395. titleRow.AddCell().SetString("")
  1396. titleRow.AddCell().SetString("")
  1397. titleRow.AddCell().SetString("")
  1398. titleRow.AddCell().SetString("")
  1399. titleRow.AddCell().SetString("")
  1400. //第二行,前面几个单元格用于第一行的合并
  1401. titleRow2 := sheet.AddRow()
  1402. titleRow2.SetHeight(30)
  1403. for i:= 0; i<hInt;i++ {
  1404. titleRow2.AddCell().SetString("")
  1405. }
  1406. //权益分行业套餐
  1407. row2Cell1 := titleRow2.AddCell()
  1408. row2Cell1.HMerge = 1
  1409. row2Cell1.SetString("医药")
  1410. row2Cell1.SetStyle(style)
  1411. titleRow2.AddCell().SetString("")
  1412. row2Cell2 := titleRow2.AddCell()
  1413. row2Cell2.HMerge = 1
  1414. row2Cell2.SetString("消费")
  1415. row2Cell2.SetStyle(style)
  1416. titleRow2.AddCell().SetString("")
  1417. row2Cell3 := titleRow2.AddCell()
  1418. row2Cell3.HMerge = 1
  1419. row2Cell3.SetString("科技")
  1420. row2Cell3.SetStyle(style)
  1421. titleRow2.AddCell().SetString("")
  1422. row2Cell4 := titleRow2.AddCell()
  1423. row2Cell4.HMerge = 1
  1424. row2Cell4.SetString("智造")
  1425. row2Cell4.SetStyle(style)
  1426. titleRow2.AddCell().SetString("")
  1427. row2Cell5 := titleRow2.AddCell()
  1428. row2Cell5.SetString("策略")
  1429. row2Cell5.SetStyle(style)
  1430. // 第三行表头
  1431. titleRow3 := sheet.AddRow()
  1432. titleRow3.SetHeight(60)
  1433. row3Title := make([]string, 0)
  1434. row3TitleParent := make([]string, 0)
  1435. row3Title = append(row3Title, "客户名称", "新客户\n0-是\n1-否", "合同类型\n续约-0\n新增-1\n代付-2\n补充协议-3", "FICC销售", "权益销售", "FICC大套餐")
  1436. for i := range permissionList {
  1437. row3Title = append(row3Title, permissionList[i].PermissionName)
  1438. }
  1439. // 其他套餐
  1440. for i := range otherService {
  1441. row3Title = append(row3Title, otherService[i].Title)
  1442. }
  1443. // 定义二级套餐名称
  1444. for i:= range row3Title {
  1445. row3TitleParent = append(row3TitleParent, row3Title[i])
  1446. }
  1447. // 权益三级套餐
  1448. for i := range raiOtherService {
  1449. row3Title = append(row3Title, raiOtherService[i].Title)
  1450. if raiOtherService[i].ParentTitle != "" {
  1451. row3TitleParent = append(row3TitleParent, raiOtherService[i].ParentTitle)
  1452. }else{
  1453. row3TitleParent = append(row3TitleParent, raiOtherService[i].Title)
  1454. }
  1455. }
  1456. row3Title = append(row3Title, "套餐备注", "开始时间", "到期时间", "2022年合同金额", "金额单位", "FICC套餐总金额", "权益套餐总金额", "约定付款时间", "签订日", "合同状态",
  1457. "合同编号", "合规备注")
  1458. // 设置表头
  1459. for i := range row3Title {
  1460. v := titleRow3.AddCell()
  1461. v.SetString(row3Title[i])
  1462. v.SetStyle(style)
  1463. }
  1464. // 第二行表头-开票/收款(动态添加)
  1465. invoiceTitle := []string{"开票日", "开票金额", "套餐类型", "销售", "备注"}
  1466. for i := 0; i < maxInvoice; i++ {
  1467. n := i + 1
  1468. for ii := range invoiceTitle {
  1469. c := titleRow3.AddCell()
  1470. t := fmt.Sprintf("%s%d", invoiceTitle[ii], n)
  1471. c.SetString(t)
  1472. c.SetStyle(style)
  1473. row3Title = append(row3Title, t)
  1474. }
  1475. }
  1476. paymentTitle := []string{"到款日", "到款金额", "套餐类型", "备注"}
  1477. for i := 0; i < maxPayment; i++ {
  1478. n := i + 1
  1479. for ii := range paymentTitle {
  1480. c := titleRow3.AddCell()
  1481. t := fmt.Sprintf("%s%d", paymentTitle[ii], n)
  1482. c.SetString(t)
  1483. c.SetStyle(style)
  1484. row3Title = append(row3Title, t)
  1485. }
  1486. }
  1487. // 此处取第二行标题NameKeyMap, 后面的动态匹配
  1488. row2NameKeyMap := make(map[string]int)
  1489. for i := range row3Title {
  1490. row2NameKeyMap[row3Title[i]] = i
  1491. }
  1492. newCompanyMap := map[int]string{0: "1", 1: "0"}
  1493. contractTMap := map[int]int{
  1494. fms.ContractTypeNew: 1,
  1495. fms.ContractTypeRenew: 0,
  1496. fms.ContractTypeAgentPay: 2, // 代付合同
  1497. fms.ContractTypePlus: 3, // 补充协议
  1498. }
  1499. for _, v := range list {
  1500. k := -1 // 套餐匹配用
  1501. dataRow := sheet.AddRow()
  1502. dataRow.SetHeight(20)
  1503. k += 4
  1504. dataRow.AddCell().SetString(v.CompanyName)
  1505. dataRow.AddCell().SetString(newCompanyMap[v.NewCompany])
  1506. dataRow.AddCell().SetString(fmt.Sprint(contractTMap[v.ContractType]))
  1507. dataRow.AddCell().SetString(v.SellerName)
  1508. dataRow.AddCell().SetString(v.RaiSellerName)
  1509. // 大套餐
  1510. k += 1
  1511. col4Name := row3Title[k]
  1512. svList := serviceMap[v.ContractRegisterId]
  1513. col4 := ""
  1514. if svList != nil && len(svList) > 0 {
  1515. for isv := range svList {
  1516. if svList[isv].Title == col4Name {
  1517. col4 = "是"
  1518. break
  1519. }
  1520. }
  1521. }
  1522. dataRow.AddCell().SetString(col4)
  1523. // 小套餐
  1524. serviceChartPermissionIds := serviceChartPermissionsMap[v.ContractRegisterId]
  1525. for i := 0; i < permissionLen; i++ {
  1526. k += 1
  1527. colName := row3Title[k]
  1528. chartPermissionId := permissionNameIdMap[colName]
  1529. if utils.InArray(chartPermissionId, serviceChartPermissionIds) {
  1530. dataRow.AddCell().SetString("是")
  1531. } else {
  1532. dataRow.AddCell().SetString("")
  1533. }
  1534. }
  1535. // 除大小套餐外的其他套餐(处理方式其实跟上面的大套餐一样, 只是中间隔了小套餐按照顺序要这么处理=_=!)
  1536. for i := 0; i < otherServiceLen; i++ {
  1537. k += 1
  1538. otherColName := row3Title[k]
  1539. otherCol := ""
  1540. if svList != nil && len(svList) > 0 {
  1541. for isv := range svList {
  1542. if svList[isv].Title == otherColName {
  1543. // 判断权益套餐权限时,需要同时判断父级name
  1544. if otherColName == "主观" || otherColName == "客观" {
  1545. if row3TitleParent[k] == svList[isv].ParentTitle {
  1546. otherCol = "是"
  1547. break
  1548. }
  1549. }else{
  1550. otherCol = "是"
  1551. break
  1552. }
  1553. }
  1554. }
  1555. }
  1556. dataRow.AddCell().SetString(otherCol)
  1557. }
  1558. // 其他信息
  1559. ficcAmount, _ := serviceAmountMap[v.ContractRegisterId][crm.CompanyProductFicc]
  1560. raiAmount, _ := serviceAmountMap[v.ContractRegisterId][crm.CompanyProductRai]
  1561. dataRow.AddCell().SetString(v.ServiceRemark) // 套餐备注
  1562. dataRow.AddCell().SetString(utils.TimeTransferString("2006/01/02", v.StartDate)) // 开始时间
  1563. dataRow.AddCell().SetString(utils.TimeTransferString("2006/01/02", v.EndDate)) // 到期时间
  1564. dataRow.AddCell().SetString(fmt.Sprint("¥", v.ContractAmount)) // 2022年合同金额
  1565. dataRow.AddCell().SetString(v.CurrencyUnit) // 货币单位
  1566. dataRow.AddCell().SetString(fmt.Sprint("¥", ficcAmount.ServiceAmount)) // FICC套餐总金额
  1567. dataRow.AddCell().SetString(fmt.Sprint("¥", raiAmount.ServiceAmount)) // 权益套餐总金额
  1568. dataRow.AddCell().SetString(v.AgreedPayTime) // 约定付款时间
  1569. dataRow.AddCell().SetString(utils.TimeTransferString("2006/01/02", v.SignDate)) // 签订日
  1570. dataRow.AddCell().SetString(fms.ContractStatusKeyNameMap[v.ContractStatus]) // 合同状态
  1571. dataRow.AddCell().SetString(v.ContractCode) // 合同编号
  1572. dataRow.AddCell().SetString(v.Remark) // 合规备注
  1573. // 开票/到款信息
  1574. ivList := invoiceMap[v.ContractRegisterId]
  1575. ivListLen := len(ivList)
  1576. for ia := 0; ia < maxInvoice; ia++ {
  1577. if ia < ivListLen {
  1578. if ivList != nil && ivList[ia] != nil {
  1579. dataRow.AddCell().SetString(utils.TimeTransferString("2006/01/02", ivList[ia].InvoiceDate)) // 开票日
  1580. dataRow.AddCell().SetString(fmt.Sprint(ivList[ia].OriginAmount)) // 开票金额
  1581. dataRow.AddCell().SetString(serviceProductIdMap[ivList[ia].ServiceProductId]) // 套餐类型
  1582. dataRow.AddCell().SetString(ivList[ia].SellerName) // 销售名称
  1583. dataRow.AddCell().SetString(ivList[ia].Remark) // 开票备注
  1584. continue
  1585. }
  1586. }
  1587. // 这里要把不够的填充为空
  1588. dataRow.AddCell().SetString("")
  1589. dataRow.AddCell().SetString("")
  1590. dataRow.AddCell().SetString("")
  1591. dataRow.AddCell().SetString("")
  1592. dataRow.AddCell().SetString("")
  1593. }
  1594. pyList := paymentMap[v.ContractRegisterId]
  1595. pyListLen := len(pyList)
  1596. for ib := 0; ib < maxPayment; ib++ {
  1597. if ib < pyListLen {
  1598. if pyList != nil && pyList[ib] != nil {
  1599. dataRow.AddCell().SetString(utils.TimeTransferString("2006/01/02", pyList[ib].InvoiceDate)) // 收款日
  1600. dataRow.AddCell().SetString(fmt.Sprint(pyList[ib].OriginAmount)) // 收款金额
  1601. dataRow.AddCell().SetString(serviceProductIdMap[pyList[ib].ServiceProductId]) // 套餐类型
  1602. dataRow.AddCell().SetString(pyList[ib].Remark) // 收款备注
  1603. continue
  1604. }
  1605. }
  1606. // 这里要把不够的填充为空
  1607. dataRow.AddCell().SetString("")
  1608. dataRow.AddCell().SetString("")
  1609. dataRow.AddCell().SetString("")
  1610. dataRow.AddCell().SetString("")
  1611. }
  1612. }
  1613. // 输出文件
  1614. var buffer bytes.Buffer
  1615. _ = xlsxFile.Write(&buffer)
  1616. content := bytes.NewReader(buffer.Bytes())
  1617. randStr := time.Now().Format(utils.FormatDateTimeUnSpace)
  1618. fileName := sheetName + randStr + ".xlsx"
  1619. c.Writer.Header().Add("Content-Disposition", fmt.Sprintf(`attachment; filename="%s"`, fileName))
  1620. c.Writer.Header().Add("Content-Type", "application/vnd.openxmlformats-officedocument.spreadsheetml.sheet")
  1621. http.ServeContent(c.Writer, c.Request, fileName, time.Now(), content)
  1622. }
  1623. // InvoiceList
  1624. // @Title 开票/到款列表
  1625. // @Description 开票/到款列表
  1626. // @Param InvoiceType query int false "类型: 1-开票登记; 2-到款登记"
  1627. // @Param ContractCode query string false "合同编号"
  1628. // @Param StartDate query string false "开始日期"
  1629. // @Param EndDate query string false "结束日期"
  1630. // @Param MinAmount query float64 false "开票金额区间-最小值"
  1631. // @Param MaxAmount query float64 false "开票金额区间-最大值"
  1632. // @Param IsExport query int false "是否导出: 0-否; 1-是"
  1633. // @Success 200 {object} fms.ContractInvoiceItem
  1634. // @router /contract/register/invoice_list [get]
  1635. func (rg *RegisterController) InvoiceList(c *gin.Context) {
  1636. var req fms.ContractInvoiceListReq
  1637. if e := c.BindQuery(&req); e != nil {
  1638. err, ok := e.(validator.ValidationErrors)
  1639. if !ok {
  1640. resp.FailData("参数解析失败", "Err:"+e.Error(), c)
  1641. return
  1642. }
  1643. resp.FailData("参数解析失败", err.Translate(global.Trans), c)
  1644. return
  1645. }
  1646. pageSize := req.PageSize
  1647. pageIndex := req.Current
  1648. if pageSize <= 0 {
  1649. pageSize = utils.PageSize20
  1650. }
  1651. if pageIndex <= 0 {
  1652. pageIndex = 1
  1653. }
  1654. cond := `invoice_type = ?`
  1655. pars := make([]interface{}, 0)
  1656. pars = append(pars, req.InvoiceType)
  1657. // 合同编号
  1658. if req.ContractCode != "" {
  1659. kw := fmt.Sprint("%", req.ContractCode, "%")
  1660. pars = append(pars, kw)
  1661. // 开票列表同时模糊查询销售名称
  1662. if req.InvoiceType == fms.ContractInvoiceTypeMake {
  1663. cond += ` AND (contract_code LIKE ? )`
  1664. pars = append(pars, kw)
  1665. } else {
  1666. cond += ` AND contract_code LIKE ?`
  1667. pars = append(pars, kw)
  1668. }
  1669. }
  1670. if req.StartDate != "" && req.EndDate != "" {
  1671. st := fmt.Sprint(req.StartDate, " 00:00:00")
  1672. ed := fmt.Sprint(req.EndDate, " 23:59:59")
  1673. cond += ` AND (invoice_time BETWEEN ? AND ?)`
  1674. pars = append(pars, st, ed)
  1675. }
  1676. if req.MinAmount > 0 {
  1677. cond += ` AND amount >= ?`
  1678. pars = append(pars, req.MinAmount)
  1679. }
  1680. if req.MaxAmount > 0 {
  1681. cond += ` AND amount <= ?`
  1682. pars = append(pars, req.MaxAmount)
  1683. }
  1684. // 套餐类型
  1685. if req.ServiceProductId > 0 {
  1686. cond += ` AND service_product_id = ?`
  1687. pars = append(pars, req.ServiceProductId)
  1688. }
  1689. // 销售
  1690. if req.SellerIds != "" {
  1691. sellerIds := strings.Split(req.SellerIds, ",")
  1692. cond += ` AND (seller_id in (?))`
  1693. pars = append(pars, sellerIds)
  1694. }
  1695. // 货币列表
  1696. currencyOB := new(fms.CurrencyUnit)
  1697. currencyCond := `enable = 1`
  1698. currencyPars := make([]interface{}, 0)
  1699. currencyList, e := currencyOB.List(currencyCond, currencyPars)
  1700. if e != nil {
  1701. resp.FailMsg("获取失败", "获取货币列表失败, Err: "+e.Error(), c)
  1702. return
  1703. }
  1704. unitMap := make(map[string]string)
  1705. currencyTotals := make([]*fms.InvoiceListCurrencyTotal, 0)
  1706. for i := range currencyList {
  1707. unitMap[currencyList[i].Code] = currencyList[i].UnitName
  1708. currencyTotals = append(currencyTotals, &fms.InvoiceListCurrencyTotal{
  1709. Name: currencyList[i].Name,
  1710. UnitName: currencyList[i].UnitName,
  1711. Code: currencyList[i].Code,
  1712. FlagImg: currencyList[i].FlagImg,
  1713. })
  1714. }
  1715. page := new(base.Page)
  1716. page.SetPageSize(pageSize)
  1717. page.SetCurrent(pageIndex)
  1718. page.AddOrderItem(base.OrderItem{Column: "invoice_time", Asc: false})
  1719. if req.IsExport == 1 {
  1720. page.SetPageSize(10000)
  1721. page.SetCurrent(1)
  1722. }
  1723. total, list, e := fms.GetContractInvoiceItemPageList(page, cond, pars)
  1724. if e != nil {
  1725. resp.FailMsg("获取失败", "获取合同开票/到款列表失败, Err: "+e.Error(), c)
  1726. return
  1727. }
  1728. page.SetTotal(total)
  1729. contractRegisterIds := make([]int, 0)
  1730. contractStatusMap := make(map[int]int)
  1731. for i := range list {
  1732. list[i].UnitName = unitMap[list[i].CurrencyUnit]
  1733. contractRegisterIds = append(contractRegisterIds, list[i].ContractRegisterId)
  1734. }
  1735. if len(contractRegisterIds) > 0 {
  1736. contractRegisters, err := fms.GetContractInfoByRegisterIds(contractRegisterIds)
  1737. if err != nil {
  1738. resp.FailMsg("查询合同信息失败", "查询合同信息失败, Err: "+err.Error(), c)
  1739. return
  1740. }
  1741. for _, v := range contractRegisters {
  1742. contractStatusMap[v.ContractRegisterId] = v.ContractStatus
  1743. }
  1744. }
  1745. for i := range list {
  1746. list[i].ContractStatus = contractStatusMap[list[i].ContractRegisterId]
  1747. }
  1748. // 分币种合计金额
  1749. var amountTotal float64
  1750. sumList, e := fms.GetInvoiceListCurrencySum(cond, pars, "currency_unit")
  1751. if e != nil {
  1752. resp.FailMsg("获取失败", "获取开票/到款列表合计金额失败, Err: "+e.Error(), c)
  1753. return
  1754. }
  1755. sumMap := make(map[string]float64)
  1756. for i := range sumList {
  1757. amountTotal += sumList[i].AmountTotal
  1758. sumMap[sumList[i].CurrencyUnit] = sumList[i].OriginAmountTotal
  1759. }
  1760. amountTotal, _ = strconv.ParseFloat(fmt.Sprintf("%.2f", amountTotal), 64)
  1761. for i := range currencyTotals {
  1762. a, _ := strconv.ParseFloat(fmt.Sprintf("%.2f", sumMap[currencyTotals[i].Code]), 64)
  1763. currencyTotals[i].Amount = a
  1764. }
  1765. respData := &fms.InvoiceListRespData{
  1766. Page: page,
  1767. List: list,
  1768. AmountTotal: amountTotal,
  1769. CurrencyTotal: currencyTotals,
  1770. }
  1771. // 是否导出
  1772. if req.IsExport == 1 {
  1773. ExportInvoiceList(c, req, respData)
  1774. return
  1775. }
  1776. resp.OkData("获取成功", respData, c)
  1777. }
  1778. // ExportInvoiceList 导出开票/到款列表
  1779. func ExportInvoiceList(c *gin.Context, req fms.ContractInvoiceListReq, results *fms.InvoiceListRespData) {
  1780. list := make([]*fms.ContractInvoiceItem, 0)
  1781. if val, ok := results.List.([]*fms.ContractInvoiceItem); ok {
  1782. list = val
  1783. } else {
  1784. resp.Fail("列表数据有误", c)
  1785. return
  1786. }
  1787. if len(list) == 0 {
  1788. resp.Fail("列表数据为空", c)
  1789. return
  1790. }
  1791. listName := "开票"
  1792. if req.InvoiceType == fms.ContractInvoiceTypePay {
  1793. listName = "到款"
  1794. }
  1795. // 生成Excel文件
  1796. xlsxFile := xlsx.NewFile()
  1797. style := xlsx.NewStyle()
  1798. alignment := xlsx.Alignment{
  1799. Horizontal: "center",
  1800. Vertical: "center",
  1801. WrapText: true,
  1802. }
  1803. style.Alignment = alignment
  1804. style.ApplyAlignment = true
  1805. sheet, err := xlsxFile.AddSheet(fmt.Sprintf("%s列表", listName))
  1806. if err != nil {
  1807. resp.FailData("新增Sheet失败", "Err:"+err.Error(), c)
  1808. return
  1809. }
  1810. // 前两行显示合计金额, 第三行空出与列表数据隔一行
  1811. rowA := sheet.AddRow()
  1812. cellAA := rowA.AddCell()
  1813. cellAA.SetString(fmt.Sprintf("已开票合计金额(换算后):%.2f(元)", results.AmountTotal))
  1814. rowBData := "已开票金额:"
  1815. for _, v := range results.CurrencyTotal {
  1816. rowBData += fmt.Sprintf("%s%.2f(%s) ", v.Name, v.Amount, v.UnitName)
  1817. }
  1818. rowB := sheet.AddRow()
  1819. rowB.AddCell().SetString(rowBData)
  1820. sheet.AddRow()
  1821. // 列表数据表头
  1822. titles := []string{"合同编号", "套餐类型", fmt.Sprintf("%s金额", listName), "金额单位", "换算金额(元)",
  1823. fmt.Sprintf("%s日期", listName), "销售", "备注"}
  1824. titleRow := sheet.AddRow()
  1825. titleRow.SetHeight(40)
  1826. for i := range titles {
  1827. c := titleRow.AddCell()
  1828. c.SetString(titles[i])
  1829. c.SetStyle(style)
  1830. }
  1831. ServiceTemplateStrMap := map[int]string{
  1832. crm.CompanyProductFicc: "FICC套餐",
  1833. crm.CompanyProductRai: "权益套餐",
  1834. }
  1835. // 单元格赋值
  1836. for _, v := range list {
  1837. dataRow := sheet.AddRow()
  1838. dataRow.SetHeight(20)
  1839. dataRow.AddCell().SetString(v.ContractCode) // 合同编号
  1840. dataRow.AddCell().SetString(ServiceTemplateStrMap[v.ServiceProductId]) // 套餐类型
  1841. dataRow.AddCell().SetString(fmt.Sprint(v.OriginAmount)) // 开票金额
  1842. dataRow.AddCell().SetString(v.UnitName) // 金额单位
  1843. dataRow.AddCell().SetString(fmt.Sprint(v.Amount)) // 换算金额(元)
  1844. dataRow.AddCell().SetString(v.InvoiceDate) // 开票日
  1845. dataRow.AddCell().SetString(v.SellerName) // 销售
  1846. dataRow.AddCell().SetString(v.Remark) // 备注
  1847. }
  1848. // 输出文件
  1849. var buffer bytes.Buffer
  1850. _ = xlsxFile.Write(&buffer)
  1851. content := bytes.NewReader(buffer.Bytes())
  1852. randStr := time.Now().Format(utils.FormatDateTimeUnSpace)
  1853. fileName := fmt.Sprintf("%s列表_%s.xlsx", listName, randStr)
  1854. c.Writer.Header().Add("Content-Disposition", fmt.Sprintf(`attachment; filename="%s"`, fileName))
  1855. c.Writer.Header().Add("Content-Type", "application/vnd.openxmlformats-officedocument.spreadsheetml.sheet")
  1856. http.ServeContent(c.Writer, c.Request, fileName, time.Now(), content)
  1857. }
  1858. // Import
  1859. // @Title 合同登记-导入
  1860. // @Description 合同登记-导入
  1861. // @Success 200 string "操作成功"
  1862. // @router /contract/register/import [post]
  1863. func (rg *RegisterController) Import(c *gin.Context) {
  1864. h, err := c.FormFile("File")
  1865. if err != nil {
  1866. resp.FailData("获取文件失败", "Err:"+err.Error(), c)
  1867. return
  1868. }
  1869. ext := path.Ext(h.Filename)
  1870. if ext != ".xlsx" && ext != ".xls" {
  1871. resp.Fail("请上传Excel文件", c)
  1872. return
  1873. }
  1874. uploadDir := "static/xls"
  1875. err = os.MkdirAll(uploadDir, 766)
  1876. if err != nil {
  1877. resp.FailData("存储目录创建失败", "Err:"+err.Error(), c)
  1878. return
  1879. }
  1880. uploadPath := uploadDir + "/" + time.Now().Format(utils.FormatDateTimeUnSpace) + h.Filename
  1881. err = c.SaveUploadedFile(h, uploadPath)
  1882. if err != nil {
  1883. resp.FailData("保存本地文件失败", "Err:"+err.Error(), c)
  1884. return
  1885. }
  1886. defer func() {
  1887. _ = os.Remove(uploadPath)
  1888. }()
  1889. xlFile, err := xlsx.OpenFile(uploadPath)
  1890. if err != nil {
  1891. resp.FailData("打开文件失败", "Err:"+err.Error(), c)
  1892. return
  1893. }
  1894. // 获取所有已登记,根据合同编号去重
  1895. contractCodeArr := make([]string, 0)
  1896. registerOB := new(fms.ContractRegister)
  1897. registerCond := ``
  1898. registerPars := make([]interface{}, 0)
  1899. registerList, e := registerOB.List(registerCond, registerPars)
  1900. if e != nil {
  1901. resp.FailData("获取合同登记列表失败", "Err:"+e.Error(), c)
  1902. return
  1903. }
  1904. for i := range registerList {
  1905. contractCodeArr = append(contractCodeArr, registerList[i].ContractCode)
  1906. }
  1907. // 获取所有销售Map
  1908. sellerList, e := crmService.GetSellerDepartmentListWithGroupAndTeam()
  1909. if e != nil {
  1910. resp.FailData("获取销售列表失败", "Err:"+e.Error(), c)
  1911. return
  1912. }
  1913. sellerMap := make(map[string]*crm.SellerAdminWithGroupTeam)
  1914. for i := range sellerList {
  1915. sellerMap[sellerList[i].SellerName] = sellerList[i]
  1916. }
  1917. // 获取品种权限Map
  1918. chartPermissionNameIdMap := make(map[string]int)
  1919. cpCond := `product_id = ?`
  1920. cpPars := make([]interface{}, 0)
  1921. cpPars = append(cpPars, crm.CompanyProductFicc)
  1922. cp := new(crm.ChartPermission)
  1923. permissionList, e := cp.List(cpCond, cpPars)
  1924. if e != nil {
  1925. resp.FailData("获取权限列表失败", "Err:"+e.Error(), c)
  1926. return
  1927. }
  1928. for i := range permissionList {
  1929. chartPermissionNameIdMap[permissionList[i].PermissionName] = permissionList[i].ChartPermissionId
  1930. }
  1931. // 获取所有套餐模板
  1932. serviceTempCond := ``
  1933. serviceTempPars := make([]interface{}, 0)
  1934. serviceTempOB := new(fms.ContractServiceTemplate)
  1935. serviceTempList, e := serviceTempOB.List(serviceTempCond, serviceTempPars)
  1936. if e != nil {
  1937. resp.FailData("获取套餐模板列表失败", "Err:"+e.Error(), c)
  1938. return
  1939. }
  1940. serviceTempNameMap := make(map[string]*fms.ContractServiceTemplate)
  1941. serviceTempFullNameMap := make(map[string]*fms.ContractServiceTemplate)
  1942. serviceTempIdMap := make(map[int]*fms.ContractServiceTemplate)
  1943. for i := range serviceTempList {
  1944. serviceTempIdMap[serviceTempList[i].ServiceTemplateId] = serviceTempList[i]
  1945. serviceTempNameMap[serviceTempList[i].Title] = serviceTempList[i]
  1946. }
  1947. for i := range serviceTempList {
  1948. fullName := serviceTempList[i].Title
  1949. if serviceTempList[i].Pid > 0 {
  1950. parentItem := serviceTempIdMap[serviceTempList[i].Pid]
  1951. fullName += "_"+parentItem.Title
  1952. if parentItem.Pid > 0 {
  1953. fullName += "_"+serviceTempIdMap[parentItem.Pid].Title
  1954. }
  1955. }
  1956. serviceTempFullNameMap[fullName] = serviceTempList[i]
  1957. }
  1958. //权益行业套餐名称
  1959. raiIndustryMap := map[int]string{
  1960. 36:"医药",
  1961. 37:"医药",
  1962. 38:"消费",
  1963. 39:"消费",
  1964. 40:"科技",
  1965. 41:"科技",
  1966. 42:"智造",
  1967. 43:"智造",
  1968. 44:"策略",
  1969. }
  1970. // 获取货币列表及汇率(汇率为导入日的汇率)
  1971. rateList, e := fmsService.GetTodayCurrencyRateList()
  1972. if e != nil {
  1973. resp.FailData("获取货币列表及汇率失败", "Err:"+e.Error(), c)
  1974. return
  1975. }
  1976. rateMap := make(map[string]float64)
  1977. for i := range rateList {
  1978. rateMap[rateList[i].Code] = rateList[i].RMBRate
  1979. }
  1980. titleMap := make(map[int]string)
  1981. newIds := make([]int, 0)
  1982. newCompanyArr := []string{"0", "1"}
  1983. newCompanyMap := map[string]int{"0": 1, "1": 0}
  1984. contractTypeArr := []string{"0", "1", "2", "3"}
  1985. contractTypeMap := map[string]int{
  1986. "0": fms.ContractTypeRenew,
  1987. "1": fms.ContractTypeNew,
  1988. "2": fms.ContractTypeAgentPay,
  1989. "3": fms.ContractTypePlus,
  1990. }
  1991. // 更新登记状态
  1992. defer func() {
  1993. if len(newIds) > 0 {
  1994. go func() {
  1995. for i := range newIds {
  1996. fmsService.CheckContractRegisterAmount(newIds[i])
  1997. fmsService.SummaryInvoicePaymentByContractRegisterId(newIds[i])
  1998. }
  1999. }()
  2000. }
  2001. }()
  2002. invoiceMax := 3
  2003. checkDate := time.Date(1900, 1, 1, 0, 0, 0, 0, time.Local)
  2004. for _, sheet := range xlFile.Sheets {
  2005. // 遍历行读取
  2006. maxRow := sheet.MaxRow
  2007. for i := 0; i < maxRow; i++ {
  2008. // 第三行开始读取表头
  2009. if i == 2 {
  2010. row := sheet.Row(i)
  2011. cells := row.Cells
  2012. for k, cell := range cells {
  2013. text := cell.String()
  2014. titleMap[k] = text
  2015. // 只检验前面部分表头, 后面很多动态列
  2016. if k == 0 {
  2017. if text != "客户名称" {
  2018. resp.Fail("【客户名称】列名称有误, 请参考模板导入", c)
  2019. return
  2020. }
  2021. continue
  2022. } else if k == 1 {
  2023. if !strings.Contains(text, "新客户") {
  2024. resp.Fail("【新客户】列名称有误, 请参考模板导入", c)
  2025. return
  2026. }
  2027. continue
  2028. } else if k == 2 {
  2029. if !strings.Contains(text, "合同类型") {
  2030. resp.Fail("【合同类型】列名称有误, 请参考模板导入", c)
  2031. return
  2032. }
  2033. continue
  2034. } else if k == 3 {
  2035. if text != "FICC销售" {
  2036. resp.Fail("【FICC销售】列名称有误, 请参考模板导入", c)
  2037. return
  2038. }
  2039. continue
  2040. } else if k == 4 {
  2041. if text != "权益销售" {
  2042. resp.Fail("【权益销售】列名称有误, 请参考模板导入", c)
  2043. return
  2044. }
  2045. continue
  2046. } else if k == 5 {
  2047. if text != "FICC大套餐" {
  2048. resp.Fail("【FICC大套餐】列名称有误, 请参考模板导入", c)
  2049. return
  2050. }
  2051. continue
  2052. }
  2053. }
  2054. }else if i >= 3 {
  2055. // 数据行
  2056. row := sheet.Row(i)
  2057. cells := row.Cells
  2058. // 登记信息
  2059. rowRegister := new(fms.ContractRegister)
  2060. // 套餐
  2061. rowServices := make([]*fms.ContractService, 0)
  2062. // 套餐金额
  2063. rowServiceAmount := make([]*fms.ContractServiceAmount, 0)
  2064. // 开票/到款
  2065. rowInvoices := make([]*fms.ContractInvoice, 0)
  2066. for ir := 0; ir < invoiceMax; ir++ {
  2067. rowInvoices = append(rowInvoices, new(fms.ContractInvoice))
  2068. }
  2069. rowPayments := make([]*fms.ContractInvoice, 0)
  2070. for ir := 0; ir < invoiceMax; ir++ {
  2071. rowPayments = append(rowPayments, new(fms.ContractInvoice))
  2072. }
  2073. // 小套餐权限
  2074. rowChartPermissionIdArr := make([]string, 0)
  2075. productIds := make(map[int]struct{})
  2076. isSkip := false
  2077. for k, cell := range cells {
  2078. v := utils.TrimStr(cell.String())
  2079. // 客户名称
  2080. if k == 0 {
  2081. if v == "" {
  2082. resp.Fail(fmt.Sprintf("第%d行客户名称不可为空, 请按模板导入", i+1), c)
  2083. return
  2084. }
  2085. rowRegister.CompanyName = v
  2086. continue
  2087. }
  2088. // 是否新客户
  2089. if k == 1 {
  2090. if !utils.InArrayByStr(newCompanyArr, v) {
  2091. resp.Fail(fmt.Sprintf("第%d行新客户有误, 请按模板导入", i+1), c)
  2092. return
  2093. }
  2094. rowRegister.NewCompany = newCompanyMap[v]
  2095. continue
  2096. }
  2097. // 合同类型
  2098. if k == 2 {
  2099. if !utils.InArrayByStr(contractTypeArr, v) {
  2100. resp.Fail(fmt.Sprintf("第%d行合同类型有误, 请按模板导入", i+1), c)
  2101. return
  2102. }
  2103. rowRegister.ContractType = contractTypeMap[v]
  2104. if rowRegister.ContractType == 0 {
  2105. resp.Fail(fmt.Sprintf("第%d行合同类型匹配有误, 请按模板导入", i+1), c)
  2106. return
  2107. }
  2108. continue
  2109. }
  2110. // FICC销售
  2111. if k == 3 {
  2112. if v != "" {
  2113. /*resp.Fail(fmt.Sprintf("第%d行销售名称不可为空, 请按模板导入", i+1), c)
  2114. return*/
  2115. sellerItem := sellerMap[v]
  2116. if sellerItem == nil {
  2117. resp.Fail(fmt.Sprintf("第%d行销售名称与系统销售不匹配, 请核对名称后导入", i+1), c)
  2118. return
  2119. }
  2120. rowRegister.SellerId = sellerItem.SellerId
  2121. rowRegister.SellerName = sellerItem.SellerName
  2122. }
  2123. continue
  2124. }
  2125. // 权益销售
  2126. if k == 4 {
  2127. if v == "" && rowRegister.SellerName == "" {
  2128. resp.Fail(fmt.Sprintf("第FICC销售名称和权益销售名称不可都为空, 请按模板导入", i+1), c)
  2129. return
  2130. }
  2131. sellerItem := sellerMap[v]
  2132. if sellerItem == nil {
  2133. resp.Fail(fmt.Sprintf("第%d行权益销售名称与系统销售不匹配, 请核对名称后导入", i+1), c)
  2134. return
  2135. }
  2136. rowRegister.RaiSellerId = sellerItem.SellerId
  2137. rowRegister.RaiSellerName = sellerItem.SellerName
  2138. continue
  2139. }
  2140. // FICC大套餐
  2141. if k == 5 {
  2142. if v == "是" {
  2143. tempItem := serviceTempNameMap[titleMap[k]]
  2144. if tempItem == nil {
  2145. resp.Fail(fmt.Sprintf("第%d行套餐名称不匹配, 请按模板导入", i+1), c)
  2146. return
  2147. }
  2148. cs := &fms.ContractService{
  2149. ProductId: crm.CompanyProductFicc,
  2150. ServiceTemplateId: tempItem.ServiceTemplateId,
  2151. Title: tempItem.Title,
  2152. Value: tempItem.Value,
  2153. TableValue: tempItem.TableValue,
  2154. ChartPermissionId: tempItem.ChartPermissionId,
  2155. }
  2156. cs.Set()
  2157. rowServices = append(rowServices, cs)
  2158. productIds[crm.CompanyProductFicc] = struct{}{}
  2159. }
  2160. continue
  2161. }
  2162. // FICC小套餐
  2163. if k >= 6 && k <= 26 {
  2164. // 小套餐权限
  2165. if v == "是" {
  2166. rowChartPermissionIdArr = append(rowChartPermissionIdArr, strconv.Itoa(chartPermissionNameIdMap[titleMap[k]]))
  2167. productIds[crm.CompanyProductFicc] = struct{}{}
  2168. }
  2169. continue
  2170. }
  2171. // 其他类型套餐
  2172. if k >= 27 && k <= 33 {
  2173. if v == "是" {
  2174. tempItem := serviceTempNameMap[titleMap[k]]
  2175. if tempItem == nil {
  2176. resp.Fail(fmt.Sprintf("第%d行套餐名称不匹配, 请按模板导入", i+1), c)
  2177. return
  2178. }
  2179. cs := &fms.ContractService{
  2180. ProductId: crm.CompanyProductFicc,
  2181. ServiceTemplateId: tempItem.ServiceTemplateId,
  2182. Title: tempItem.Title,
  2183. Value: tempItem.Value,
  2184. TableValue: tempItem.TableValue,
  2185. ChartPermissionId: tempItem.ChartPermissionId,
  2186. }
  2187. cs.Set()
  2188. rowServices = append(rowServices, cs)
  2189. productIds[crm.CompanyProductFicc] = struct{}{}
  2190. }
  2191. continue
  2192. }
  2193. if k >=34 && k<=44 {
  2194. if v == "是" {
  2195. // 权益大套餐
  2196. if k <= 35 {
  2197. //新增
  2198. parentName := "权益大套餐"
  2199. tempItem := serviceTempNameMap[titleMap[k]]
  2200. if tempItem == nil {
  2201. resp.Fail(fmt.Sprintf("第%d行套餐名称不匹配, 请按模板导入", i+1), c)
  2202. return
  2203. }
  2204. cs := &fms.ContractService{
  2205. ProductId: crm.CompanyProductFicc,
  2206. ServiceTemplateId: tempItem.ServiceTemplateId,
  2207. Title: tempItem.Title,
  2208. Value: tempItem.Value,
  2209. TableValue: tempItem.TableValue,
  2210. ChartPermissionId: tempItem.ChartPermissionId,
  2211. }
  2212. rowServices = append(rowServices, cs)
  2213. tempItem = serviceTempNameMap[parentName]
  2214. if tempItem == nil {
  2215. resp.Fail(fmt.Sprintf("第%d行套餐名称不匹配, 请按模板导入", i+1), c)
  2216. return
  2217. }
  2218. cs = &fms.ContractService{
  2219. ProductId: crm.CompanyProductRai,
  2220. ServiceTemplateId: tempItem.ServiceTemplateId,
  2221. Title: tempItem.Title,
  2222. Value: tempItem.Value,
  2223. TableValue: tempItem.TableValue,
  2224. ChartPermissionId: tempItem.ChartPermissionId,
  2225. }
  2226. rowServices = append(rowServices, cs)
  2227. } else {
  2228. rootName := "行业套餐"
  2229. // 新增三条套餐信息
  2230. parentName, _ := raiIndustryMap[k]
  2231. childName := titleMap[k]
  2232. fullName := childName+"_"+parentName+"_"+rootName
  2233. if fullName != "" {
  2234. //增加三级权限
  2235. tempItem := serviceTempFullNameMap[fullName]
  2236. if tempItem == nil {
  2237. resp.Fail(fmt.Sprintf("第%d行套餐名称不匹配, 请按模板导入", i+1), c)
  2238. return
  2239. }
  2240. cs := &fms.ContractService{
  2241. ProductId: crm.CompanyProductRai,
  2242. ServiceTemplateId: tempItem.ServiceTemplateId,
  2243. Title: tempItem.Title,
  2244. Value: tempItem.Value,
  2245. TableValue: tempItem.TableValue,
  2246. ChartPermissionId: tempItem.ChartPermissionId,
  2247. }
  2248. rowServices = append(rowServices, cs)
  2249. //增加二级权限
  2250. tempItem = serviceTempFullNameMap[parentName+"_"+rootName]
  2251. if tempItem == nil {
  2252. resp.Fail(fmt.Sprintf("第%d行套餐名称不匹配, 请按模板导入", i+1), c)
  2253. return
  2254. }
  2255. cs = &fms.ContractService{
  2256. ProductId: crm.CompanyProductRai,
  2257. ServiceTemplateId: tempItem.ServiceTemplateId,
  2258. Title: tempItem.Title,
  2259. Value: tempItem.Value,
  2260. TableValue: tempItem.TableValue,
  2261. ChartPermissionId: tempItem.ChartPermissionId,
  2262. }
  2263. rowServices = append(rowServices, cs)
  2264. //增加一级权限
  2265. tempItem = serviceTempFullNameMap[rootName]
  2266. if tempItem == nil {
  2267. resp.Fail(fmt.Sprintf("第%d行套餐名称不匹配, 请按模板导入", i+1), c)
  2268. return
  2269. }
  2270. cs = &fms.ContractService{
  2271. ProductId: crm.CompanyProductRai,
  2272. ServiceTemplateId: tempItem.ServiceTemplateId,
  2273. Title: tempItem.Title,
  2274. Value: tempItem.Value,
  2275. TableValue: tempItem.TableValue,
  2276. ChartPermissionId: tempItem.ChartPermissionId,
  2277. }
  2278. rowServices = append(rowServices, cs)
  2279. }
  2280. }
  2281. productIds[crm.CompanyProductRai] = struct{}{}
  2282. }
  2283. continue
  2284. }
  2285. // 权益研选等套餐
  2286. if k >= 45 && k<=49 {
  2287. if v == "是" {
  2288. tempItem := serviceTempNameMap[titleMap[k]]
  2289. if tempItem == nil {
  2290. resp.Fail(fmt.Sprintf("第%d行套餐名称不匹配, 请按模板导入", i+1), c)
  2291. return
  2292. }
  2293. cs := &fms.ContractService{
  2294. ProductId: crm.CompanyProductRai,
  2295. ServiceTemplateId: tempItem.ServiceTemplateId,
  2296. Title: tempItem.Title,
  2297. Value: tempItem.Value,
  2298. TableValue: tempItem.TableValue,
  2299. ChartPermissionId: tempItem.ChartPermissionId,
  2300. }
  2301. cs.Set()
  2302. rowServices = append(rowServices, cs)
  2303. productIds[crm.CompanyProductRai] = struct{}{}
  2304. }
  2305. continue
  2306. }
  2307. // 套餐备注
  2308. if k == 50 {
  2309. rowRegister.ServiceRemark = v
  2310. continue
  2311. }
  2312. // 开始时间/到期时间
  2313. if k == 51 {
  2314. // 转换失败可能是因为格式为Excel日期格式, 读取出来会是一串数字, 将其转换成日期字符串再处理
  2315. va := cell.Value
  2316. if va == "" {
  2317. resp.Fail(fmt.Sprintf("第%d行开始时间不可为空, 请按模板导入", i+1), c)
  2318. return
  2319. }
  2320. startDate, e := time.ParseInLocation("2006/01/02", va, time.Local)
  2321. if e != nil {
  2322. d := utils.ConvertToFormatDay(va, "2006/01/02")
  2323. startDate, e = time.ParseInLocation("2006/01/02", d, time.Local)
  2324. if e != nil {
  2325. resp.Fail(fmt.Sprintf("第%d行开始时间格式转换有误, 请按模板导入", i+1), c)
  2326. return
  2327. }
  2328. }
  2329. // 转换后的日期小于1900-01-01表示当前生成的日期是有问题的
  2330. if startDate.Before(checkDate) {
  2331. resp.Fail(fmt.Sprintf("第%d行开始时间格式有误, 请按模板导入", i+1), c)
  2332. return
  2333. }
  2334. rowRegister.StartDate = startDate
  2335. continue
  2336. }
  2337. if k == 52 {
  2338. va := cell.Value
  2339. if va == "" {
  2340. resp.Fail(fmt.Sprintf("第%d行到期时间不可为空, 请按模板导入", i+1), c)
  2341. return
  2342. }
  2343. endDate, e := time.ParseInLocation("2006/01/02", va, time.Local)
  2344. if e != nil {
  2345. d := utils.ConvertToFormatDay(va, "2006/01/02")
  2346. endDate, e = time.ParseInLocation("2006/01/02", d, time.Local)
  2347. if e != nil {
  2348. resp.Fail(fmt.Sprintf("第%d行到期时间格式转换有误, 请按模板导入", i+1), c)
  2349. return
  2350. }
  2351. }
  2352. if endDate.Before(checkDate) {
  2353. resp.Fail(fmt.Sprintf("第%d行到期时间格式有误, 请按模板导入", i+1), c)
  2354. return
  2355. }
  2356. rowRegister.EndDate = endDate
  2357. continue
  2358. }
  2359. // 合同金额
  2360. if k == 53 {
  2361. amountStr := v
  2362. amount, e := strconv.ParseFloat(amountStr, 64)
  2363. if e != nil {
  2364. resp.Fail(fmt.Sprintf("第%d行合同金额有误, 请按模板导入", i+1), c)
  2365. return
  2366. }
  2367. rowRegister.ContractAmount = amount
  2368. continue
  2369. }
  2370. // 金额单位
  2371. if k == 54 {
  2372. rate := rateMap[v]
  2373. if rate <= 0 {
  2374. resp.Fail(fmt.Sprintf("第%d行金额单位有误, 请按模板导入", i+1), c)
  2375. return
  2376. }
  2377. rowRegister.CurrencyUnit = v
  2378. rowRegister.RMBRate = rate
  2379. continue
  2380. }
  2381. // FICC 套餐总金额
  2382. if k == 55 {
  2383. amountStr := v
  2384. amount, e := strconv.ParseFloat(amountStr, 64)
  2385. if e != nil {
  2386. resp.Fail(fmt.Sprintf("第%d行FICC套餐总金额有误, 请按模板导入", i+1), c)
  2387. return
  2388. }
  2389. if amount > 0 {
  2390. tmp := &fms.ContractServiceAmount{
  2391. ProductId: crm.CompanyProductFicc,
  2392. ServiceAmount: amount,
  2393. CurrencyUnit: rowRegister.CurrencyUnit,
  2394. TimeBase: base.TimeBase{},
  2395. }
  2396. rowServiceAmount = append(rowServiceAmount, tmp)
  2397. }
  2398. continue
  2399. }
  2400. // 权益套餐总金额
  2401. if k == 56 {
  2402. amountStr := v
  2403. amount, e := strconv.ParseFloat(amountStr, 64)
  2404. if e != nil {
  2405. resp.Fail(fmt.Sprintf("第%d行权益套餐总金额有误, 请按模板导入", i+1), c)
  2406. return
  2407. }
  2408. if amount > 0 {
  2409. tmp := &fms.ContractServiceAmount{
  2410. ProductId: crm.CompanyProductRai,
  2411. ServiceAmount: amount,
  2412. CurrencyUnit: rowRegister.CurrencyUnit,
  2413. TimeBase: base.TimeBase{},
  2414. }
  2415. rowServiceAmount = append(rowServiceAmount, tmp)
  2416. }
  2417. continue
  2418. }
  2419. // 约定付款日期
  2420. if k == 57 {
  2421. rowRegister.AgreedPayTime = v
  2422. continue
  2423. }
  2424. // 签订日
  2425. if k == 58 {
  2426. va := cell.Value
  2427. if va == "" {
  2428. continue
  2429. }
  2430. signDate, e := time.ParseInLocation("2006/01/02", va, time.Local)
  2431. if e != nil {
  2432. d := utils.ConvertToFormatDay(va, "2006/01/02")
  2433. signDate, e = time.ParseInLocation("2006/01/02", d, time.Local)
  2434. if e != nil {
  2435. resp.Fail(fmt.Sprintf("第%d行签订日格式转换有误, 请按模板导入", i+1), c)
  2436. return
  2437. }
  2438. }
  2439. if signDate.Before(checkDate) {
  2440. resp.Fail(fmt.Sprintf("第%d行签订日格式有误, 请按模板导入", i+1), c)
  2441. return
  2442. }
  2443. rowRegister.SignDate = signDate
  2444. continue
  2445. }
  2446. // 合同状态
  2447. if k == 59 {
  2448. rowRegister.ContractStatus = fms.ContractStatusNameKeyMap[v]
  2449. if rowRegister.ContractStatus == 0 {
  2450. resp.Fail(fmt.Sprintf("第%d行合同状态不匹配, 请按模板导入", i+1), c)
  2451. return
  2452. }
  2453. continue
  2454. }
  2455. // 合同编号
  2456. if k == 60 {
  2457. rowContractCode := v
  2458. if rowContractCode == "" {
  2459. resp.Fail(fmt.Sprintf("第%d行合同编号不可为空, 请按模板导入", i+1), c)
  2460. return
  2461. }
  2462. if utils.InArrayByStr(contractCodeArr, rowContractCode) {
  2463. // 此合同已登记, 跳过本行的读取
  2464. isSkip = true
  2465. break
  2466. }
  2467. rowRegister.ContractCode = rowContractCode
  2468. continue
  2469. }
  2470. // 合规备注
  2471. if k == 61 {
  2472. rowRegister.Remark = v
  2473. continue
  2474. }
  2475. // 开票列表
  2476. k2 := 61
  2477. for ir := 0; ir < invoiceMax; ir++ {
  2478. n := ir + 1
  2479. // 开票日
  2480. k2 += 1
  2481. if k == k2 {
  2482. if v != "" {
  2483. va := cell.Value
  2484. invoiceDate, e := time.ParseInLocation("2006/01/02", va, time.Local)
  2485. if e != nil {
  2486. d := utils.ConvertToFormatDay(va, "2006/01/02")
  2487. invoiceDate, e = time.ParseInLocation("2006/01/02", d, time.Local)
  2488. if e != nil {
  2489. resp.Fail(fmt.Sprintf("第%d行开票时间%d格式转换有误, 请按模板导入", i+1, n), c)
  2490. return
  2491. }
  2492. }
  2493. if invoiceDate.Before(checkDate) {
  2494. resp.Fail(fmt.Sprintf("第%d行开票时间%d格式有误, 请按模板导入", i+1, n), c)
  2495. return
  2496. }
  2497. rowInvoices[ir].InvoiceDate = invoiceDate
  2498. rowInvoices[ir].ContractCode = rowRegister.ContractCode
  2499. rowInvoices[ir].InvoiceType = fms.ContractInvoiceTypeMake
  2500. }
  2501. continue
  2502. }
  2503. // 开票金额
  2504. k2 += 1
  2505. if k == k2 {
  2506. if v != "" {
  2507. amountStr := v
  2508. amount, e := strconv.ParseFloat(amountStr, 64)
  2509. if e != nil {
  2510. resp.Fail(fmt.Sprintf("第%d行开票金额%d有误, 请按模板导入", i+1, n), c)
  2511. return
  2512. }
  2513. if rowRegister.RMBRate <= 0 {
  2514. resp.Fail(fmt.Sprintf("第%d行开票金额换算%d有误, 请按模板导入金额单位", i+1, n), c)
  2515. return
  2516. }
  2517. a, _ := strconv.ParseFloat(fmt.Sprintf("%.2f", amount/rowRegister.RMBRate), 64)
  2518. rowInvoices[ir].OriginAmount = amount
  2519. rowInvoices[ir].Amount = a
  2520. }
  2521. continue
  2522. }
  2523. // 开票套餐类型
  2524. k2 += 1
  2525. if k == k2 {
  2526. if v != "" {
  2527. if v == "FICC套餐" {
  2528. rowInvoices[ir].ServiceProductId = crm.CompanyProductFicc
  2529. }else if v == "权益套餐"{
  2530. rowInvoices[ir].ServiceProductId = crm.CompanyProductRai
  2531. }else{
  2532. resp.Fail(fmt.Sprintf("第%d行开票套餐类型%d:%s有误, 请按模板导入", i+1, n, v), c)
  2533. return
  2534. }
  2535. }
  2536. continue
  2537. }
  2538. // 开票销售
  2539. k2 += 1
  2540. if k == k2 {
  2541. if v != "" {
  2542. sellerItem := sellerMap[v]
  2543. if sellerItem == nil {
  2544. resp.Fail(fmt.Sprintf("第%d行开票销售名称与系统销售不匹配, 请核对名称后导入", i+1), c)
  2545. return
  2546. }
  2547. rowInvoices[ir].SellerId = sellerItem.SellerId
  2548. rowInvoices[ir].SellerName = sellerItem.SellerName
  2549. rowInvoices[ir].SellerGroupId = sellerItem.GroupId
  2550. rowInvoices[ir].SellerGroupName = sellerItem.GroupName
  2551. rowInvoices[ir].SellerTeamId = sellerItem.TeamId
  2552. rowInvoices[ir].SellerTeamName = sellerItem.TeamName
  2553. }
  2554. continue
  2555. }
  2556. // 备注
  2557. k2 += 1
  2558. if k == k2 {
  2559. if v != "" {
  2560. rowInvoices[ir].Remark = v
  2561. }
  2562. continue
  2563. }
  2564. }
  2565. // 到款列表
  2566. for ir := 0; ir < invoiceMax; ir++ {
  2567. n := ir + 1
  2568. // 到款日
  2569. k2 += 1
  2570. if k == k2 {
  2571. if v != "" {
  2572. va := cell.Value
  2573. invoiceDate, e := time.ParseInLocation("2006/01/02", va, time.Local)
  2574. if e != nil {
  2575. d := utils.ConvertToFormatDay(va, "2006/01/02")
  2576. invoiceDate, e = time.ParseInLocation("2006/01/02", d, time.Local)
  2577. if e != nil {
  2578. resp.Fail(fmt.Sprintf("第%d行到款时间%d格式转换有误, 请按模板导入", i+1, n), c)
  2579. return
  2580. }
  2581. }
  2582. if invoiceDate.Before(checkDate) {
  2583. resp.Fail(fmt.Sprintf("第%d行到款时间%d格式有误, 请按模板导入", i+1, n), c)
  2584. return
  2585. }
  2586. rowPayments[ir].InvoiceDate = invoiceDate
  2587. rowPayments[ir].ContractCode = rowRegister.ContractCode
  2588. rowPayments[ir].InvoiceType = fms.ContractInvoiceTypePay
  2589. }
  2590. continue
  2591. }
  2592. // 到款金额
  2593. k2 += 1
  2594. if k == k2 {
  2595. if v != "" {
  2596. amountStr := v
  2597. amount, e := strconv.ParseFloat(amountStr, 64)
  2598. if e != nil {
  2599. resp.Fail(fmt.Sprintf("第%d行到款金额%d有误, 请按模板导入", i+1, n), c)
  2600. return
  2601. }
  2602. if rowRegister.RMBRate <= 0 {
  2603. resp.Fail(fmt.Sprintf("第%d行到款金额换算%d有误, 请按模板导入金额单位", i+1, n), c)
  2604. return
  2605. }
  2606. // 付款方式
  2607. dayDiff := rowRegister.EndDate.Sub(rowRegister.StartDate).Hours() / 24
  2608. contractAmount := rowRegister.ContractAmount
  2609. payType := fmsService.CalculateContractPaymentType(amount, contractAmount, dayDiff)
  2610. rowPayments[ir].PayType = payType
  2611. rowPayments[ir].OriginAmount = amount
  2612. a, _ := strconv.ParseFloat(fmt.Sprintf("%.2f", amount/rowRegister.RMBRate), 64)
  2613. rowPayments[ir].Amount = a
  2614. }
  2615. continue
  2616. }
  2617. // 到款套餐类型
  2618. k2 += 1
  2619. if k == k2 {
  2620. if v != "" {
  2621. if v == "FICC套餐" {
  2622. rowPayments[ir].ServiceProductId = crm.CompanyProductFicc
  2623. }else if v == "权益套餐"{
  2624. rowPayments[ir].ServiceProductId = crm.CompanyProductRai
  2625. }else{
  2626. resp.Fail(fmt.Sprintf("第%d行到款套餐类型%d:%s有误, 请按模板导入", i+1, n, v), c)
  2627. return
  2628. }
  2629. }
  2630. continue
  2631. }
  2632. // 备注
  2633. k2 += 1
  2634. if k == k2 {
  2635. if v != "" {
  2636. rowPayments[ir].Remark = v
  2637. }
  2638. continue
  2639. }
  2640. }
  2641. }
  2642. if isSkip {
  2643. continue
  2644. }
  2645. // 小套餐
  2646. if len(rowChartPermissionIdArr) > 0 {
  2647. // 说明有小套餐
  2648. tempItem := serviceTempNameMap["FICC小套餐"]
  2649. if tempItem == nil {
  2650. resp.Fail(fmt.Sprintf("第%d行小套餐名称不匹配, 请按模板导入", i+1), c)
  2651. return
  2652. }
  2653. rowChartPermissionIds := strings.Join(rowChartPermissionIdArr, ",")
  2654. cs := &fms.ContractService{
  2655. ProductId: crm.CompanyProductFicc,
  2656. ServiceTemplateId: tempItem.ServiceTemplateId,
  2657. Title: tempItem.Title,
  2658. Value: tempItem.Value,
  2659. TableValue: tempItem.TableValue,
  2660. ChartPermissionId: tempItem.ChartPermissionId,
  2661. ChartPermissionIds: rowChartPermissionIds,
  2662. }
  2663. cs.Set()
  2664. rowServices = append(rowServices, cs)
  2665. }
  2666. // 如果导入的最后一条合同编号为空并且合同编号之后的字段均为空
  2667. // excel这个包读行的时候不会再往后面没数据的地方读取, 所以此处需要重新判断一次
  2668. if rowRegister.ContractCode == "" {
  2669. resp.Fail(fmt.Sprintf("第%d行合同编号为空", i+1), c)
  2670. return
  2671. }
  2672. rowRegister.RegisterStatus = fms.ContractRegisterStatusIng
  2673. rowInvoiceList := make([]*fms.ContractInvoice, 0)
  2674. // 过滤信息不完整的开票到款
  2675. for l := range rowInvoices {
  2676. if rowInvoices[l].ContractCode != "" {
  2677. if rowInvoices[l].OriginAmount <= 0 || rowInvoices[l].SellerId == 0 {
  2678. resp.Fail(fmt.Sprintf("第%d行开票信息必填项不完整", i+1), c)
  2679. return
  2680. }
  2681. rowInvoiceList = append(rowInvoiceList, rowInvoices[l])
  2682. }
  2683. }
  2684. for l := range rowPayments {
  2685. if rowPayments[l].ContractCode != "" {
  2686. if rowPayments[l].OriginAmount <= 0 {
  2687. resp.Fail(fmt.Sprintf("第%d行到款信息必填项不完整", i+1), c)
  2688. return
  2689. }
  2690. rowInvoiceList = append(rowInvoiceList, rowPayments[l])
  2691. }
  2692. }
  2693. // 新增登记、套餐、开票到款信息
  2694. for proId, _ := range productIds {
  2695. rowRegister.ProductIds += strconv.Itoa(proId)+","
  2696. }
  2697. rowRegister.ProductIds = strings.Trim(rowRegister.ProductIds, ",")
  2698. newId, e := fms.CreateImportContractRegister(rowRegister, rowServices, rowInvoiceList, rowServiceAmount)
  2699. if e != nil {
  2700. resp.FailData(fmt.Sprintf("第%d行导入失败", i+1), "新增导入登记失败, Err: "+e.Error(), c)
  2701. return
  2702. }
  2703. // 自动分配套餐金额
  2704. go fmsService.CalculatePaymentServiceAmount(newId)
  2705. newIds = append(newIds, newId)
  2706. }
  2707. }
  2708. }
  2709. resp.Ok("操作成功", c)
  2710. }
  2711. // CurrencyList
  2712. // @Title 货币单位列表
  2713. // @Description 货币单位列表
  2714. // @Success 200 {object} fms.CurrencyUnitItem
  2715. // @router /contract/register/currency_list [get]
  2716. func (rg *RegisterController) CurrencyList(c *gin.Context) {
  2717. list, e := fmsService.GetTodayCurrencyRateList()
  2718. if e != nil {
  2719. resp.FailData("获取失败", "获取今日货币汇率列表失败, Err: "+e.Error(), c)
  2720. return
  2721. }
  2722. resp.OkData("获取成功", list, c)
  2723. }
  2724. // CheckContractName
  2725. // @Title 货币单位列表
  2726. // @Description 货币单位列表
  2727. // @Success 200 {object} fms.CheckContractNameResp
  2728. // @router /contract/register/check_contract_code [get]
  2729. func (rg *RegisterController) CheckContractName(c *gin.Context) {
  2730. var req fms.CheckContractNameReq
  2731. if e := c.BindQuery(&req); e != nil {
  2732. err, ok := e.(validator.ValidationErrors)
  2733. if !ok {
  2734. resp.FailData("参数解析失败", "Err:"+e.Error(), c)
  2735. return
  2736. }
  2737. resp.FailData("参数解析失败", err.Translate(global.Trans), c)
  2738. return
  2739. }
  2740. existCond :=""
  2741. existPars := make([]interface{}, 0)
  2742. if req.CompanyName != "" {
  2743. // 是否存在相同的合同名称的登记
  2744. existCond = ` company_name = ?`
  2745. existPars = append(existPars, req.CompanyName)
  2746. }
  2747. if req.StartDate != "" && req.EndDate != "" {
  2748. // 日期校验
  2749. startDate, e := time.ParseInLocation(utils.FormatDate, req.StartDate, time.Local)
  2750. if e != nil {
  2751. resp.FailMsg("合同开始日期格式有误", "合同开始日期格式有误, Err: "+e.Error(), c)
  2752. return
  2753. }
  2754. endDate, e := time.ParseInLocation(utils.FormatDate, req.EndDate, time.Local)
  2755. if e != nil {
  2756. resp.FailMsg("合同结束日期格式有误", "合同结束日期格式有误, Err: "+e.Error(), c)
  2757. return
  2758. }
  2759. if existCond != "" {
  2760. existCond += ` or (start_date =? and end_date=?)`
  2761. }else{
  2762. existCond = ` start_date = ? and end_date=?`
  2763. }
  2764. existPars = append(existPars, startDate, endDate)
  2765. }
  2766. if existCond == "" {
  2767. resp.Fail("请输入合同名称或者合同有效期", c)
  2768. return
  2769. }
  2770. // 是否存在相同合同名称的登记
  2771. ob := new(fms.ContractRegister)
  2772. data := fms.CheckContractNameResp{
  2773. Exist: 0,
  2774. }
  2775. _, e := ob.FetchByCondition(existCond, existPars)
  2776. if e != nil {
  2777. if e == utils.ErrNoRow {
  2778. resp.OkData("查询成功", data, c)
  2779. return
  2780. }
  2781. resp.FailMsg("查询失败", "查询相同登记号失败, Err: "+e.Error(), c)
  2782. return
  2783. }
  2784. data.Exist = 1
  2785. resp.OkData("查询成功", data, c)
  2786. return
  2787. }