register.go 123 KB

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