register.go 98 KB

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