register.go 128 KB

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