statistic_report.go 236 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431441451461471481491501511521531541551561571581591601611621631641651661671681691701711721731741751761771781791801811821831841851861871881891901911921931941951961971981992002012022032042052062072082092102112122132142152162172182192202212222232242252262272282292302312322332342352362372382392402412422432442452462472482492502512522532542552562572582592602612622632642652662672682692702712722732742752762772782792802812822832842852862872882892902912922932942952962972982993003013023033043053063073083093103113123133143153163173183193203213223233243253263273283293303313323333343353363373383393403413423433443453463473483493503513523533543553563573583593603613623633643653663673683693703713723733743753763773783793803813823833843853863873883893903913923933943953963973983994004014024034044054064074084094104114124134144154164174184194204214224234244254264274284294304314324334344354364374384394404414424434444454464474484494504514524534544554564574584594604614624634644654664674684694704714724734744754764774784794804814824834844854864874884894904914924934944954964974984995005015025035045055065075085095105115125135145155165175185195205215225235245255265275285295305315325335345355365375385395405415425435445455465475485495505515525535545555565575585595605615625635645655665675685695705715725735745755765775785795805815825835845855865875885895905915925935945955965975985996006016026036046056066076086096106116126136146156166176186196206216226236246256266276286296306316326336346356366376386396406416426436446456466476486496506516526536546556566576586596606616626636646656666676686696706716726736746756766776786796806816826836846856866876886896906916926936946956966976986997007017027037047057067077087097107117127137147157167177187197207217227237247257267277287297307317327337347357367377387397407417427437447457467477487497507517527537547557567577587597607617627637647657667677687697707717727737747757767777787797807817827837847857867877887897907917927937947957967977987998008018028038048058068078088098108118128138148158168178188198208218228238248258268278288298308318328338348358368378388398408418428438448458468478488498508518528538548558568578588598608618628638648658668678688698708718728738748758768778788798808818828838848858868878888898908918928938948958968978988999009019029039049059069079089099109119129139149159169179189199209219229239249259269279289299309319329339349359369379389399409419429439449459469479489499509519529539549559569579589599609619629639649659669679689699709719729739749759769779789799809819829839849859869879889899909919929939949959969979989991000100110021003100410051006100710081009101010111012101310141015101610171018101910201021102210231024102510261027102810291030103110321033103410351036103710381039104010411042104310441045104610471048104910501051105210531054105510561057105810591060106110621063106410651066106710681069107010711072107310741075107610771078107910801081108210831084108510861087108810891090109110921093109410951096109710981099110011011102110311041105110611071108110911101111111211131114111511161117111811191120112111221123112411251126112711281129113011311132113311341135113611371138113911401141114211431144114511461147114811491150115111521153115411551156115711581159116011611162116311641165116611671168116911701171117211731174117511761177117811791180118111821183118411851186118711881189119011911192119311941195119611971198119912001201120212031204120512061207120812091210121112121213121412151216121712181219122012211222122312241225122612271228122912301231123212331234123512361237123812391240124112421243124412451246124712481249125012511252125312541255125612571258125912601261126212631264126512661267126812691270127112721273127412751276127712781279128012811282128312841285128612871288128912901291129212931294129512961297129812991300130113021303130413051306130713081309131013111312131313141315131613171318131913201321132213231324132513261327132813291330133113321333133413351336133713381339134013411342134313441345134613471348134913501351135213531354135513561357135813591360136113621363136413651366136713681369137013711372137313741375137613771378137913801381138213831384138513861387138813891390139113921393139413951396139713981399140014011402140314041405140614071408140914101411141214131414141514161417141814191420142114221423142414251426142714281429143014311432143314341435143614371438143914401441144214431444144514461447144814491450145114521453145414551456145714581459146014611462146314641465146614671468146914701471147214731474147514761477147814791480148114821483148414851486148714881489149014911492149314941495149614971498149915001501150215031504150515061507150815091510151115121513151415151516151715181519152015211522152315241525152615271528152915301531153215331534153515361537153815391540154115421543154415451546154715481549155015511552155315541555155615571558155915601561156215631564156515661567156815691570157115721573157415751576157715781579158015811582158315841585158615871588158915901591159215931594159515961597159815991600160116021603160416051606160716081609161016111612161316141615161616171618161916201621162216231624162516261627162816291630163116321633163416351636163716381639164016411642164316441645164616471648164916501651165216531654165516561657165816591660166116621663166416651666166716681669167016711672167316741675167616771678167916801681168216831684168516861687168816891690169116921693169416951696169716981699170017011702170317041705170617071708170917101711171217131714171517161717171817191720172117221723172417251726172717281729173017311732173317341735173617371738173917401741174217431744174517461747174817491750175117521753175417551756175717581759176017611762176317641765176617671768176917701771177217731774177517761777177817791780178117821783178417851786178717881789179017911792179317941795179617971798179918001801180218031804180518061807180818091810181118121813181418151816181718181819182018211822182318241825182618271828182918301831183218331834183518361837183818391840184118421843184418451846184718481849185018511852185318541855185618571858185918601861186218631864186518661867186818691870187118721873187418751876187718781879188018811882188318841885188618871888188918901891189218931894189518961897189818991900190119021903190419051906190719081909191019111912191319141915191619171918191919201921192219231924192519261927192819291930193119321933193419351936193719381939194019411942194319441945194619471948194919501951195219531954195519561957195819591960196119621963196419651966196719681969197019711972197319741975197619771978197919801981198219831984198519861987198819891990199119921993199419951996199719981999200020012002200320042005200620072008200920102011201220132014201520162017201820192020202120222023202420252026202720282029203020312032203320342035203620372038203920402041204220432044204520462047204820492050205120522053205420552056205720582059206020612062206320642065206620672068206920702071207220732074207520762077207820792080208120822083208420852086208720882089209020912092209320942095209620972098209921002101210221032104210521062107210821092110211121122113211421152116211721182119212021212122212321242125212621272128212921302131213221332134213521362137213821392140214121422143214421452146214721482149215021512152215321542155215621572158215921602161216221632164216521662167216821692170217121722173217421752176217721782179218021812182218321842185218621872188218921902191219221932194219521962197219821992200220122022203220422052206220722082209221022112212221322142215221622172218221922202221222222232224222522262227222822292230223122322233223422352236223722382239224022412242224322442245224622472248224922502251225222532254225522562257225822592260226122622263226422652266226722682269227022712272227322742275227622772278227922802281228222832284228522862287228822892290229122922293229422952296229722982299230023012302230323042305230623072308230923102311231223132314231523162317231823192320232123222323232423252326232723282329233023312332233323342335233623372338233923402341234223432344234523462347234823492350235123522353235423552356235723582359236023612362236323642365236623672368236923702371237223732374237523762377237823792380238123822383238423852386238723882389239023912392239323942395239623972398239924002401240224032404240524062407240824092410241124122413241424152416241724182419242024212422242324242425242624272428242924302431243224332434243524362437243824392440244124422443244424452446244724482449245024512452245324542455245624572458245924602461246224632464246524662467246824692470247124722473247424752476247724782479248024812482248324842485248624872488248924902491249224932494249524962497249824992500250125022503250425052506250725082509251025112512251325142515251625172518251925202521252225232524252525262527252825292530253125322533253425352536253725382539254025412542254325442545254625472548254925502551255225532554255525562557255825592560256125622563256425652566256725682569257025712572257325742575257625772578257925802581258225832584258525862587258825892590259125922593259425952596259725982599260026012602260326042605260626072608260926102611261226132614261526162617261826192620262126222623262426252626262726282629263026312632263326342635263626372638263926402641264226432644264526462647264826492650265126522653265426552656265726582659266026612662266326642665266626672668266926702671267226732674267526762677267826792680268126822683268426852686268726882689269026912692269326942695269626972698269927002701270227032704270527062707270827092710271127122713271427152716271727182719272027212722272327242725272627272728272927302731273227332734273527362737273827392740274127422743274427452746274727482749275027512752275327542755275627572758275927602761276227632764276527662767276827692770277127722773277427752776277727782779278027812782278327842785278627872788278927902791279227932794279527962797279827992800280128022803280428052806280728082809281028112812281328142815281628172818281928202821282228232824282528262827282828292830283128322833283428352836283728382839284028412842284328442845284628472848284928502851285228532854285528562857285828592860286128622863286428652866286728682869287028712872287328742875287628772878287928802881288228832884288528862887288828892890289128922893289428952896289728982899290029012902290329042905290629072908290929102911291229132914291529162917291829192920292129222923292429252926292729282929293029312932293329342935293629372938293929402941294229432944294529462947294829492950295129522953295429552956295729582959296029612962296329642965296629672968296929702971297229732974297529762977297829792980298129822983298429852986298729882989299029912992299329942995299629972998299930003001300230033004300530063007300830093010301130123013301430153016301730183019302030213022302330243025302630273028302930303031303230333034303530363037303830393040304130423043304430453046304730483049305030513052305330543055305630573058305930603061306230633064306530663067306830693070307130723073307430753076307730783079308030813082308330843085308630873088308930903091309230933094309530963097309830993100310131023103310431053106310731083109311031113112311331143115311631173118311931203121312231233124312531263127312831293130313131323133313431353136313731383139314031413142314331443145314631473148314931503151315231533154315531563157315831593160316131623163316431653166316731683169317031713172317331743175317631773178317931803181318231833184318531863187318831893190319131923193319431953196319731983199320032013202320332043205320632073208320932103211321232133214321532163217321832193220322132223223322432253226322732283229323032313232323332343235323632373238323932403241324232433244324532463247324832493250325132523253325432553256325732583259326032613262326332643265326632673268326932703271327232733274327532763277327832793280328132823283328432853286328732883289329032913292329332943295329632973298329933003301330233033304330533063307330833093310331133123313331433153316331733183319332033213322332333243325332633273328332933303331333233333334333533363337333833393340334133423343334433453346334733483349335033513352335333543355335633573358335933603361336233633364336533663367336833693370337133723373337433753376337733783379338033813382338333843385338633873388338933903391339233933394339533963397339833993400340134023403340434053406340734083409341034113412341334143415341634173418341934203421342234233424342534263427342834293430343134323433343434353436343734383439344034413442344334443445344634473448344934503451345234533454345534563457345834593460346134623463346434653466346734683469347034713472347334743475347634773478347934803481348234833484348534863487348834893490349134923493349434953496349734983499350035013502350335043505350635073508350935103511351235133514351535163517351835193520352135223523352435253526352735283529353035313532353335343535353635373538353935403541354235433544354535463547354835493550355135523553355435553556355735583559356035613562356335643565356635673568356935703571357235733574357535763577357835793580358135823583358435853586358735883589359035913592359335943595359635973598359936003601360236033604360536063607360836093610361136123613361436153616361736183619362036213622362336243625362636273628362936303631363236333634363536363637363836393640364136423643364436453646364736483649365036513652365336543655365636573658365936603661366236633664366536663667366836693670367136723673367436753676367736783679368036813682368336843685368636873688368936903691369236933694369536963697369836993700370137023703370437053706370737083709371037113712371337143715371637173718371937203721372237233724372537263727372837293730373137323733373437353736373737383739374037413742374337443745374637473748374937503751375237533754375537563757375837593760376137623763376437653766376737683769377037713772377337743775377637773778377937803781378237833784378537863787378837893790379137923793379437953796379737983799380038013802380338043805380638073808380938103811381238133814381538163817381838193820382138223823382438253826382738283829383038313832383338343835383638373838383938403841384238433844384538463847384838493850385138523853385438553856385738583859386038613862386338643865386638673868386938703871387238733874387538763877387838793880388138823883388438853886388738883889389038913892389338943895389638973898389939003901390239033904390539063907390839093910391139123913391439153916391739183919392039213922392339243925392639273928392939303931393239333934393539363937393839393940394139423943394439453946394739483949395039513952395339543955395639573958395939603961396239633964396539663967396839693970397139723973397439753976397739783979398039813982398339843985398639873988398939903991399239933994399539963997399839994000400140024003400440054006400740084009401040114012401340144015401640174018401940204021402240234024402540264027402840294030403140324033403440354036403740384039404040414042404340444045404640474048404940504051405240534054405540564057405840594060406140624063406440654066406740684069407040714072407340744075407640774078407940804081408240834084408540864087408840894090409140924093409440954096409740984099410041014102410341044105410641074108410941104111411241134114411541164117411841194120412141224123412441254126412741284129413041314132413341344135413641374138413941404141414241434144414541464147414841494150415141524153415441554156415741584159416041614162416341644165416641674168416941704171417241734174417541764177417841794180418141824183418441854186418741884189419041914192419341944195419641974198419942004201420242034204420542064207420842094210421142124213421442154216421742184219422042214222422342244225422642274228422942304231423242334234423542364237423842394240424142424243424442454246424742484249425042514252425342544255425642574258425942604261426242634264426542664267426842694270427142724273427442754276427742784279428042814282428342844285428642874288428942904291429242934294429542964297429842994300430143024303430443054306430743084309431043114312431343144315431643174318431943204321432243234324432543264327432843294330433143324333433443354336433743384339434043414342434343444345434643474348434943504351435243534354435543564357435843594360436143624363436443654366436743684369437043714372437343744375437643774378437943804381438243834384438543864387438843894390439143924393439443954396439743984399440044014402440344044405440644074408440944104411441244134414441544164417441844194420442144224423442444254426442744284429443044314432443344344435443644374438443944404441444244434444444544464447444844494450445144524453445444554456445744584459446044614462446344644465446644674468446944704471447244734474447544764477447844794480448144824483448444854486448744884489449044914492449344944495449644974498449945004501450245034504450545064507450845094510451145124513451445154516451745184519452045214522452345244525452645274528452945304531453245334534453545364537453845394540454145424543454445454546454745484549455045514552455345544555455645574558455945604561456245634564456545664567456845694570457145724573457445754576457745784579458045814582458345844585458645874588458945904591459245934594459545964597459845994600460146024603460446054606460746084609461046114612461346144615461646174618461946204621462246234624462546264627462846294630463146324633463446354636463746384639464046414642464346444645464646474648464946504651465246534654465546564657465846594660466146624663466446654666466746684669467046714672467346744675467646774678467946804681468246834684468546864687468846894690469146924693469446954696469746984699470047014702470347044705470647074708470947104711471247134714471547164717471847194720472147224723472447254726472747284729473047314732473347344735473647374738473947404741474247434744474547464747474847494750475147524753475447554756475747584759476047614762476347644765476647674768476947704771477247734774477547764777477847794780478147824783478447854786478747884789479047914792479347944795479647974798479948004801480248034804480548064807480848094810481148124813481448154816481748184819482048214822482348244825482648274828482948304831483248334834483548364837483848394840484148424843484448454846484748484849485048514852485348544855485648574858485948604861486248634864486548664867486848694870487148724873487448754876487748784879488048814882488348844885488648874888488948904891489248934894489548964897489848994900490149024903490449054906490749084909491049114912491349144915491649174918491949204921492249234924492549264927492849294930493149324933493449354936493749384939494049414942494349444945494649474948494949504951495249534954495549564957495849594960496149624963496449654966496749684969497049714972497349744975497649774978497949804981498249834984498549864987498849894990499149924993499449954996499749984999500050015002500350045005500650075008500950105011501250135014501550165017501850195020502150225023502450255026502750285029503050315032503350345035503650375038503950405041504250435044504550465047504850495050505150525053505450555056505750585059506050615062506350645065506650675068506950705071507250735074507550765077507850795080508150825083508450855086508750885089509050915092509350945095509650975098509951005101510251035104510551065107510851095110511151125113511451155116511751185119512051215122512351245125512651275128512951305131513251335134513551365137513851395140514151425143514451455146514751485149515051515152515351545155515651575158515951605161516251635164516551665167516851695170517151725173517451755176517751785179518051815182518351845185518651875188518951905191519251935194519551965197519851995200520152025203520452055206520752085209521052115212521352145215521652175218521952205221522252235224522552265227522852295230523152325233523452355236523752385239524052415242524352445245524652475248524952505251525252535254525552565257525852595260526152625263526452655266526752685269527052715272527352745275527652775278527952805281528252835284528552865287528852895290529152925293529452955296529752985299530053015302530353045305530653075308530953105311531253135314531553165317531853195320532153225323532453255326532753285329533053315332533353345335533653375338533953405341534253435344534553465347534853495350535153525353535453555356535753585359536053615362536353645365536653675368536953705371537253735374537553765377537853795380538153825383538453855386538753885389539053915392539353945395539653975398539954005401540254035404540554065407540854095410541154125413541454155416541754185419542054215422542354245425542654275428542954305431543254335434543554365437543854395440544154425443544454455446544754485449545054515452545354545455545654575458545954605461546254635464546554665467546854695470547154725473547454755476547754785479548054815482548354845485548654875488548954905491549254935494549554965497549854995500550155025503550455055506550755085509551055115512551355145515551655175518551955205521552255235524552555265527552855295530553155325533553455355536553755385539554055415542554355445545554655475548554955505551555255535554555555565557555855595560556155625563556455655566556755685569557055715572557355745575557655775578557955805581558255835584558555865587558855895590559155925593559455955596559755985599560056015602560356045605560656075608560956105611561256135614561556165617561856195620562156225623562456255626562756285629563056315632563356345635563656375638563956405641564256435644564556465647564856495650565156525653565456555656565756585659566056615662566356645665566656675668566956705671567256735674567556765677567856795680568156825683568456855686568756885689569056915692569356945695569656975698569957005701570257035704570557065707570857095710571157125713571457155716571757185719572057215722572357245725572657275728572957305731573257335734573557365737573857395740574157425743574457455746574757485749575057515752575357545755575657575758575957605761576257635764576557665767576857695770577157725773577457755776577757785779578057815782578357845785578657875788578957905791579257935794579557965797579857995800580158025803580458055806580758085809581058115812581358145815581658175818581958205821582258235824582558265827582858295830583158325833583458355836583758385839584058415842584358445845584658475848584958505851585258535854585558565857585858595860586158625863586458655866586758685869587058715872587358745875587658775878587958805881588258835884588558865887588858895890589158925893589458955896589758985899590059015902590359045905590659075908590959105911591259135914591559165917591859195920592159225923592459255926592759285929593059315932593359345935593659375938593959405941594259435944594559465947594859495950595159525953595459555956595759585959596059615962596359645965596659675968596959705971597259735974597559765977597859795980598159825983598459855986598759885989599059915992599359945995599659975998599960006001600260036004600560066007600860096010601160126013601460156016601760186019602060216022602360246025602660276028602960306031603260336034603560366037603860396040604160426043604460456046604760486049605060516052605360546055605660576058605960606061606260636064606560666067606860696070607160726073607460756076607760786079608060816082608360846085608660876088608960906091609260936094609560966097609860996100610161026103610461056106610761086109611061116112611361146115611661176118611961206121612261236124612561266127612861296130613161326133613461356136613761386139614061416142614361446145614661476148614961506151615261536154615561566157615861596160616161626163616461656166616761686169617061716172617361746175617661776178617961806181618261836184618561866187618861896190619161926193619461956196619761986199620062016202620362046205620662076208620962106211621262136214621562166217621862196220622162226223622462256226622762286229623062316232623362346235623662376238623962406241624262436244624562466247624862496250625162526253625462556256625762586259626062616262626362646265626662676268626962706271627262736274627562766277627862796280628162826283628462856286628762886289629062916292629362946295629662976298629963006301630263036304630563066307630863096310631163126313631463156316631763186319632063216322632363246325632663276328632963306331633263336334633563366337633863396340634163426343634463456346634763486349635063516352635363546355635663576358635963606361636263636364636563666367636863696370637163726373637463756376637763786379638063816382638363846385638663876388638963906391639263936394639563966397639863996400640164026403640464056406640764086409641064116412641364146415641664176418641964206421642264236424642564266427642864296430643164326433643464356436643764386439644064416442644364446445644664476448644964506451645264536454645564566457645864596460646164626463646464656466646764686469647064716472647364746475647664776478647964806481648264836484648564866487648864896490649164926493649464956496649764986499650065016502650365046505650665076508650965106511651265136514651565166517651865196520652165226523652465256526652765286529653065316532653365346535653665376538653965406541654265436544654565466547654865496550655165526553655465556556655765586559656065616562656365646565656665676568656965706571657265736574657565766577657865796580658165826583658465856586658765886589659065916592659365946595659665976598659966006601660266036604660566066607660866096610661166126613661466156616661766186619662066216622662366246625662666276628662966306631663266336634663566366637663866396640664166426643664466456646664766486649665066516652665366546655665666576658665966606661666266636664666566666667666866696670667166726673667466756676667766786679668066816682668366846685668666876688668966906691669266936694669566966697669866996700670167026703670467056706670767086709671067116712671367146715671667176718671967206721672267236724672567266727672867296730673167326733673467356736673767386739674067416742674367446745674667476748674967506751675267536754675567566757675867596760676167626763676467656766676767686769677067716772677367746775677667776778677967806781678267836784678567866787678867896790679167926793679467956796679767986799680068016802680368046805680668076808680968106811681268136814681568166817681868196820682168226823682468256826682768286829683068316832683368346835683668376838683968406841684268436844684568466847684868496850685168526853685468556856685768586859686068616862686368646865686668676868686968706871687268736874687568766877687868796880688168826883688468856886688768886889689068916892689368946895689668976898689969006901690269036904690569066907690869096910691169126913691469156916691769186919692069216922692369246925692669276928692969306931693269336934693569366937693869396940694169426943694469456946694769486949695069516952695369546955695669576958695969606961696269636964696569666967696869696970697169726973697469756976697769786979698069816982698369846985698669876988698969906991699269936994699569966997699869997000700170027003700470057006700770087009701070117012701370147015701670177018701970207021702270237024702570267027702870297030703170327033703470357036703770387039704070417042704370447045704670477048704970507051705270537054705570567057705870597060706170627063706470657066706770687069707070717072707370747075707670777078707970807081708270837084708570867087708870897090709170927093709470957096709770987099710071017102710371047105710671077108710971107111711271137114711571167117711871197120712171227123712471257126712771287129713071317132713371347135713671377138713971407141714271437144714571467147714871497150715171527153715471557156715771587159716071617162716371647165716671677168716971707171717271737174717571767177717871797180718171827183718471857186718771887189719071917192719371947195719671977198719972007201720272037204720572067207720872097210721172127213721472157216721772187219722072217222722372247225722672277228722972307231
  1. package controllers
  2. import (
  3. "encoding/json"
  4. "errors"
  5. "fmt"
  6. "github.com/rdlucklib/rdluck_tools/paging"
  7. "github.com/shopspring/decimal"
  8. "github.com/tealeg/xlsx"
  9. "hongze/hz_crm_api/models"
  10. "hongze/hz_crm_api/models/company"
  11. "hongze/hz_crm_api/models/fms"
  12. "hongze/hz_crm_api/models/response"
  13. "hongze/hz_crm_api/models/roadshow"
  14. statisticModels "hongze/hz_crm_api/models/statistic_report"
  15. "hongze/hz_crm_api/models/system"
  16. "hongze/hz_crm_api/services"
  17. "hongze/hz_crm_api/services/alarm_msg"
  18. contractService "hongze/hz_crm_api/services/contract"
  19. cygxService "hongze/hz_crm_api/services/cygx"
  20. fmsService "hongze/hz_crm_api/services/fms"
  21. "hongze/hz_crm_api/services/statistic_report"
  22. "hongze/hz_crm_api/utils"
  23. "os"
  24. "path/filepath"
  25. "strconv"
  26. "strings"
  27. "sync"
  28. "time"
  29. )
  30. // StatisticReportController 统计报告基类
  31. type StatisticReportController struct {
  32. BaseAuthController
  33. }
  34. // StatisticReportCommonController 统计报告
  35. type StatisticReportCommonController struct {
  36. BaseCommonController
  37. }
  38. // getQueryParams 获取基础查询信息
  39. func getQueryParams(condition string, pars []interface{}, sysUser *system.Admin, tableAlias string) (newCondition string, newPars []interface{}) {
  40. if sysUser.RoleTypeCode == utils.ROLE_TYPE_CODE_FICC_ADMIN {
  41. condition += " AND " + tableAlias + "product_id=?"
  42. pars = append(pars, 1)
  43. } else if sysUser.RoleTypeCode == utils.ROLE_TYPE_CODE_RAI_ADMIN {
  44. condition += " AND " + tableAlias + "product_id=?"
  45. pars = append(pars, 2)
  46. } else if sysUser.RoleTypeCode == utils.ROLE_TYPE_CODE_ADMIN || sysUser.RoleTypeCode == utils.ROLE_TYPE_CODE_FINANCE {
  47. //超级管理员账户,不做条件限制
  48. } else {
  49. //如果不是研究员,那么去找对应的 部门、小组、销售
  50. if sysUser.Authority == 0 {
  51. //普通用户
  52. condition += " AND " + tableAlias + "seller_id=?"
  53. pars = append(pars, sysUser.AdminId)
  54. } else if sysUser.Authority == 1 {
  55. //部门主管
  56. condition += " AND " + tableAlias + "department_id=?"
  57. pars = append(pars, sysUser.DepartmentId)
  58. } else if sysUser.Authority == 2 && sysUser.RoleTypeCode == utils.ROLE_TYPE_CODE_RAI_GROUP {
  59. //权益小组负责人
  60. condition += " AND " + tableAlias + "group_id=?"
  61. pars = append(pars, sysUser.GroupId)
  62. } else if sysUser.Authority == 2 && sysUser.RoleTypeCode == utils.ROLE_TYPE_CODE_FICC_GROUP {
  63. //ficc销售主管
  64. pid, err := company.GetParentIdFromGroup(sysUser.GroupId)
  65. if err != nil {
  66. fmt.Println(err.Error())
  67. return
  68. }
  69. var ids []*string
  70. if pid != nil && *pid != 0 {
  71. ids, err = company.GetGroupIdsByParentId(*pid)
  72. if err != nil {
  73. fmt.Println(err.Error())
  74. }
  75. } else {
  76. ids, err = company.GetGroupIdsByParentId(sysUser.GroupId)
  77. if err != nil {
  78. fmt.Println(err.Error())
  79. }
  80. }
  81. var idSlice []string
  82. var sid string
  83. for _, id := range ids {
  84. idSlice = append(idSlice, *id)
  85. }
  86. //加入父级groupId
  87. if *pid > 0 {
  88. idSlice = append(idSlice, strconv.Itoa(*pid))
  89. } else {
  90. idSlice = append(idSlice, strconv.Itoa(sysUser.GroupId))
  91. }
  92. sid = strings.Join(idSlice, ",")
  93. condition += " AND " + tableAlias + `group_id IN (` + sid + `) `
  94. fmt.Println("condition:", condition)
  95. //pars = append(pars, sysUser.GroupId)
  96. } else if sysUser.Authority == 4 {
  97. //ficc小组负责人
  98. condition += " AND " + tableAlias + "group_id=?"
  99. pars = append(pars, sysUser.GroupId)
  100. } else {
  101. //不知道什么类型的用户(后面新增的位置类型客户)
  102. condition += " AND " + tableAlias + "seller_id=?"
  103. pars = append(pars, sysUser.AdminId)
  104. }
  105. }
  106. newCondition = condition
  107. newPars = pars
  108. return
  109. }
  110. // getQueryParams 获取基础查询信息(最开始关联的销售信息)
  111. func getQueryParamsInit(condition string, pars []interface{}, sysUser *system.Admin, tableAlias string) (newCondition string, newPars []interface{}) {
  112. if sysUser.RoleTypeCode == utils.ROLE_TYPE_CODE_FICC_ADMIN {
  113. condition += " AND " + tableAlias + "product_id=?"
  114. pars = append(pars, 1)
  115. } else if sysUser.RoleTypeCode == utils.ROLE_TYPE_CODE_RAI_ADMIN {
  116. condition += " AND " + tableAlias + "product_id=?"
  117. pars = append(pars, 2)
  118. } else if sysUser.RoleTypeCode == utils.ROLE_TYPE_CODE_ADMIN || sysUser.RoleTypeCode == utils.ROLE_TYPE_CODE_FINANCE {
  119. //超级管理员账户,不做条件限制
  120. } else {
  121. //如果不是研究员,那么去找对应的 部门、小组、销售
  122. if sysUser.Authority == 0 {
  123. //普通用户
  124. condition += " AND " + tableAlias + "seller_id_init=?"
  125. pars = append(pars, sysUser.AdminId)
  126. } else if sysUser.Authority == 1 {
  127. //部门主管
  128. condition += " AND " + tableAlias + "department_id=?"
  129. pars = append(pars, sysUser.DepartmentId)
  130. } else if sysUser.Authority == 2 && sysUser.RoleTypeCode == utils.ROLE_TYPE_CODE_RAI_GROUP {
  131. //权益小组负责人
  132. condition += " AND " + tableAlias + "group_id=?"
  133. pars = append(pars, sysUser.GroupId)
  134. } else if sysUser.Authority == 2 && sysUser.RoleTypeCode == utils.ROLE_TYPE_CODE_FICC_GROUP {
  135. //ficc销售主管
  136. pid, err := company.GetParentIdFromGroup(sysUser.GroupId)
  137. if err != nil {
  138. fmt.Println(err.Error())
  139. return
  140. }
  141. var ids []*string
  142. if pid != nil && *pid != 0 {
  143. ids, err = company.GetGroupIdsByParentId(*pid)
  144. if err != nil {
  145. fmt.Println(err.Error())
  146. }
  147. } else {
  148. ids, err = company.GetGroupIdsByParentId(sysUser.GroupId)
  149. if err != nil {
  150. fmt.Println(err.Error())
  151. }
  152. }
  153. var idSlice []string
  154. var sid string
  155. for _, id := range ids {
  156. idSlice = append(idSlice, *id)
  157. }
  158. //加入父级groupId
  159. if *pid > 0 {
  160. idSlice = append(idSlice, strconv.Itoa(*pid))
  161. } else {
  162. idSlice = append(idSlice, strconv.Itoa(sysUser.GroupId))
  163. }
  164. sid = strings.Join(idSlice, ",")
  165. condition += " AND " + tableAlias + `group_id IN (` + sid + `) `
  166. fmt.Println("condition:", condition)
  167. //pars = append(pars, sysUser.GroupId)
  168. } else if sysUser.Authority == 4 {
  169. //ficc小组负责人
  170. condition += " AND " + tableAlias + "group_id=?"
  171. pars = append(pars, sysUser.GroupId)
  172. } else {
  173. //不知道什么类型的用户(后面新增的位置类型客户)
  174. condition += " AND " + tableAlias + "seller_id_init=?"
  175. pars = append(pars, sysUser.AdminId)
  176. }
  177. }
  178. newCondition = condition
  179. newPars = pars
  180. return
  181. }
  182. // Home
  183. // @Title 获取首页工作台数据
  184. // @Description 获取首页工作台数据接口
  185. // @Success 200 {object} response.WorktopResp
  186. // @router /home [get]
  187. func (this *StatisticReportController) Home() {
  188. br := new(models.BaseResponse).Init()
  189. defer func() {
  190. this.Data["json"] = br
  191. this.ServeJSON()
  192. }()
  193. sysUser := this.SysUser
  194. if sysUser == nil {
  195. br.Msg = "请登录"
  196. br.ErrMsg = "请登录,SysUser Is Empty"
  197. br.Ret = 408
  198. return
  199. }
  200. todayStr := utils.GetToday("20060102")
  201. //近6个月客户增量数据
  202. var incrementalCompanyChartList response.IncrementalCompanyChartResp
  203. ch := make(chan response.IncrementalCompanyChartResp, 1)
  204. go getIncrementalCompanyList(sysUser, ch)
  205. //未来6个月即将到期
  206. var willExpireList response.WillExpireChartResp
  207. ch2 := make(chan response.WillExpireChartResp, 1)
  208. go getWillExpireList(sysUser, ch2)
  209. //近6个月收入统计
  210. var incomeList response.IncomeChartResp
  211. ch3 := make(chan response.IncomeChartResp, 1)
  212. go getIncomeList(sysUser, ch3)
  213. var formalCompanyCount, trialCompanyTotal, newCompanyTotal, renewalCompanyTotal, notRenewalCompanyTotal int
  214. today := utils.GetToday(utils.FormatDate)
  215. //正式客户数
  216. {
  217. key := "admin:home:formalCompanyCount:" + todayStr + ":" + strconv.Itoa(sysUser.AdminId)
  218. redisCount, redisErr := utils.Rc.RedisInt(key)
  219. if redisErr != nil {
  220. var condition string
  221. var pars []interface{}
  222. //根据当前角色来获取查询条件
  223. condition, pars = getQueryParams(condition, pars, sysUser, "b.")
  224. condition += ` AND b.status = "正式" `
  225. tmpFormalCompanyCount, err := models.GetCurrCompanyCount(condition, pars)
  226. if err != nil && err.Error() != utils.ErrNoRow() {
  227. br.Msg = "获取正式客户总数失败"
  228. br.ErrMsg = "获取正式客户总数失败,Err:" + err.Error()
  229. return
  230. }
  231. redisCount = tmpFormalCompanyCount
  232. _ = utils.Rc.Put(key, redisCount, time.Minute*30)
  233. }
  234. formalCompanyCount = redisCount
  235. }
  236. //试用客户数
  237. {
  238. key := "admin:home:trialCompanyTotal:" + todayStr + ":" + strconv.Itoa(sysUser.AdminId)
  239. redisCount, redisErr := utils.Rc.RedisInt(key)
  240. if redisErr != nil {
  241. var condition string
  242. var pars []interface{}
  243. //根据当前角色来获取查询条件
  244. //condition, pars = getQueryParams(condition, pars, sysUser, "c.")
  245. //condition += " AND a.create_time <= ?"
  246. //pars = append(pars, time.Now())
  247. //
  248. //condition += ` AND a.operation in ("add","receive")`
  249. //tmpTrialCompanyTotal, err := models.GetIncrementalCompanyCountByOperationRecord(condition, pars)
  250. condition, pars = getQueryParams(condition, pars, sysUser, "b.")
  251. condition += ` AND b.status = "试用" `
  252. tmpTrialCompanyTotal, err := models.GetCurrCompanyCount(condition, pars)
  253. if err != nil && err.Error() != utils.ErrNoRow() {
  254. br.Msg = "获取试用客户总数失败"
  255. br.ErrMsg = "获取试用客户总数失败,Err:" + err.Error()
  256. return
  257. }
  258. redisCount = tmpTrialCompanyTotal
  259. _ = utils.Rc.Put(key, redisCount, time.Minute*30)
  260. }
  261. trialCompanyTotal = redisCount
  262. }
  263. //新签客户数
  264. {
  265. key := "admin:home:newCompanyTotal:" + todayStr + ":" + strconv.Itoa(sysUser.AdminId)
  266. redisCount, redisErr := utils.Rc.RedisInt(key)
  267. if redisErr != nil {
  268. var condition string
  269. var pars []interface{}
  270. //根据当前角色来获取查询条件
  271. condition, pars = getQueryParams(condition, pars, sysUser, "c.")
  272. //condition += ` AND c.status ="正式" `
  273. condition += ` AND a.start_date <= ? AND a.end_date >= ? `
  274. pars = append(pars, today, today)
  275. condition += ` AND a.contract_type = ? `
  276. pars = append(pars, "新签合同")
  277. total, err := models.GetIncrementalNewCompanyCount(condition, pars)
  278. if err != nil && err.Error() != utils.ErrNoRow() {
  279. br.Msg = "获取新签客户失败"
  280. br.ErrMsg = "获取新签客户失败,Err:" + err.Error()
  281. return
  282. }
  283. redisCount = total
  284. _ = utils.Rc.Put(key, redisCount, time.Minute*30)
  285. }
  286. newCompanyTotal = redisCount
  287. }
  288. //续约客户数
  289. {
  290. key := "admin:home:renewalCompanyTotal:" + todayStr + ":" + strconv.Itoa(sysUser.AdminId)
  291. redisCount, redisErr := utils.Rc.RedisInt(key)
  292. if redisErr != nil {
  293. var condition string
  294. var pars []interface{}
  295. //根据当前角色来获取查询条件
  296. condition, pars = getQueryParams(condition, pars, sysUser, "c.")
  297. //condition += ` AND c.status="正式" `
  298. condition += ` AND a.start_date <= ? AND a.end_date >= ? `
  299. pars = append(pars, today, today)
  300. condition += ` AND a.contract_type = ? `
  301. pars = append(pars, "续约合同")
  302. total, err := models.GetIncrementalNewCompanyCount(condition, pars)
  303. if err != nil && err.Error() != utils.ErrNoRow() {
  304. br.Msg = "获取续约客户失败"
  305. br.ErrMsg = "获取续约客户失败,Err:" + err.Error()
  306. return
  307. }
  308. redisCount = total
  309. _ = utils.Rc.Put(key, redisCount, time.Minute*30)
  310. }
  311. renewalCompanyTotal = redisCount
  312. }
  313. //未续约客户数
  314. //{
  315. // key := "admin:home:notRenewalCompanyTotal:" + todayStr + ":" + strconv.Itoa(sysUser.AdminId)
  316. // redisCount, redisErr := utils.Rc.RedisInt(key)
  317. // if redisErr != nil {
  318. // var condition string
  319. // var pars []interface{}
  320. //
  321. // //根据当前角色来获取查询条件
  322. // condition, pars = getQueryParams(condition, pars, sysUser, "c.")
  323. // condition += ` AND c.status not in ("永续","正式") `
  324. // total, err := models.GetIncrementalNewCompanyCount(condition, pars)
  325. // if err != nil && err.Error() != utils.ErrNoRow() {
  326. // br.Msg = "获取未续约客户失败"
  327. // br.ErrMsg = "获取未续约客户失败,Err:" + err.Error()
  328. // return
  329. // }
  330. // redisCount = total
  331. // _ = utils.Rc.Put(key, redisCount, time.Minute*30)
  332. // }
  333. // notRenewalCompanyTotal = redisCount
  334. //}
  335. //未续约客户数
  336. {
  337. key := "admin:home:notRenewalCompanyTotal:" + todayStr + ":" + strconv.Itoa(sysUser.AdminId)
  338. redisCount, redisErr := utils.Rc.RedisInt(key)
  339. if redisErr != nil {
  340. var condition string
  341. var pars []interface{}
  342. //根据当前角色来获取查询条件
  343. condition, pars = getQueryParams(condition, pars, sysUser, "c.")
  344. condition += ` AND c.status not in ("永续","正式") AND a.create_time <= ? `
  345. pars = append(pars, time.Now().Format(utils.FormatDateTime))
  346. condition += ` AND a.operation = 'try_out' `
  347. total, err := models.GetIncrementalCompanyCountByOperationRecord(condition, pars)
  348. if err != nil && err.Error() != utils.ErrNoRow() {
  349. br.Msg = "获取未续约客户失败"
  350. br.ErrMsg = "获取未续约客户失败,Err:" + err.Error()
  351. return
  352. }
  353. redisCount = total
  354. _ = utils.Rc.Put(key, redisCount, time.Minute*30)
  355. }
  356. notRenewalCompanyTotal = redisCount
  357. }
  358. //合同数据
  359. contractChartData := response.ContractChartResp{}
  360. {
  361. key := "admin:home:contractChartData:" + todayStr + ":" + strconv.Itoa(sysUser.AdminId)
  362. redisContractChartData, redisErr := utils.Rc.RedisString(key)
  363. if redisErr != nil {
  364. var condition string
  365. var pars []interface{}
  366. //根据当前角色来获取查询条件
  367. condition, pars = getQueryParams(condition, pars, sysUser, "c.")
  368. condition += ` AND a.end_date >= ? `
  369. pars = append(pars, today)
  370. //condition += ` AND c.status = "正式" `
  371. tmpContractCompanyCount, tmpContractTotal, tmpMoney, err := models.GetContractStatListCount(condition, pars)
  372. if err != nil && err.Error() != utils.ErrNoRow() {
  373. if err != nil && err.Error() != utils.ErrNoRow() {
  374. br.Msg = "获取未续约客户失败"
  375. br.ErrMsg = "获取未续约客户失败,Err:" + err.Error()
  376. return
  377. }
  378. return
  379. }
  380. //数据赋值
  381. contractChartData.Title = "当前有效合同存量"
  382. contractChartData.FormalCompanyCount = tmpContractCompanyCount
  383. contractChartData.ContractTotal = tmpContractTotal
  384. contractChartData.MoneyTotal = tmpMoney
  385. //入缓存
  386. redisJsonData, err := json.Marshal(contractChartData)
  387. if err == nil {
  388. _ = utils.Rc.Put(key, string(redisJsonData), time.Minute*30)
  389. }
  390. } else {
  391. err := json.Unmarshal([]byte(redisContractChartData), &contractChartData)
  392. if err != nil {
  393. fmt.Println("合同数据,json转换失败:", err)
  394. }
  395. }
  396. }
  397. for v := range ch {
  398. incrementalCompanyChartList = v
  399. close(ch)
  400. }
  401. for v := range ch2 {
  402. willExpireList = v
  403. close(ch2)
  404. }
  405. for v := range ch3 {
  406. incomeList = v
  407. close(ch3)
  408. }
  409. resp := response.WorktopResp{
  410. FormalCompanyCount: formalCompanyCount,
  411. TrialCompanyTotal: trialCompanyTotal,
  412. NewCompanyTotal: newCompanyTotal,
  413. RenewalCompanyTotal: renewalCompanyTotal,
  414. NotRenewalCompanyTotal: notRenewalCompanyTotal,
  415. IncrementalCompanyChartList: incrementalCompanyChartList,
  416. WillExpireChartList: willExpireList,
  417. IncomeChartList: incomeList,
  418. ContractData: contractChartData,
  419. }
  420. br.Ret = 200
  421. br.Success = true
  422. br.Msg = "获取成功"
  423. br.Data = resp
  424. }
  425. // 查询从2021/01开始的,每个月的客户增量数据
  426. func getIncrementalCompanyList(sysUser *system.Admin, ch chan response.IncrementalCompanyChartResp) (incrementalCompanyChart response.IncrementalCompanyChartResp, err error) {
  427. defer func() {
  428. if err != nil {
  429. go alarm_msg.SendAlarmMsg("查询近6个月的客户增量数据异常,Err:"+err.Error(), 3)
  430. //go utils.SendEmail(utils.APPNAME+"查询近6个月的客户增量数据异常:"+time.Now().Format("2006-01-02 15:04:05"), err.Error(), utils.EmailSendToUsers)
  431. }
  432. ch <- incrementalCompanyChart
  433. }()
  434. todayStr := utils.GetToday("20060102")
  435. key := "admin:home:incrementalCompanyList:" + todayStr + ":" + strconv.Itoa(sysUser.AdminId)
  436. redisJsonData, redisErr := utils.Rc.RedisString(key)
  437. if redisErr != nil {
  438. var condition string
  439. var pars []interface{}
  440. //根据当前角色来获取查询条件
  441. condition, pars = getQueryParams(condition, pars, sysUser, "c.")
  442. var dateSlice []string
  443. var newCompanySlice, renewalCompanySlice []int
  444. //var notRenewalCompanySlice []int
  445. yearNum := time.Now().Year() - 2021
  446. monthNum := time.Now().Month() - 1
  447. numMonth := yearNum*12 + int(monthNum) //距离2021-01存在多少个月
  448. for i := numMonth; i >= 0; i-- {
  449. timeNow, _ := time.Parse("2006-01", time.Now().Format("2006-01"))
  450. dateSlice = append(dateSlice, timeNow.AddDate(0, -i, 0).Format("06/01"))
  451. //开始日期
  452. startDate := timeNow.AddDate(0, -i, 0).Format("2006-01")
  453. startDate = fmt.Sprint(startDate, "-01")
  454. //结束日期
  455. endDateTime := timeNow.AddDate(0, -i+1, 0)
  456. endDate := endDateTime.Format("2006-01")
  457. //因为就算是当月的后续事件还没到,也要计入数据统计,所以不做限制到当天处理
  458. //if endDateTime.After(time.Now()) {
  459. // endDate = time.Now().AddDate(0, 0, 1).Format(utils.FormatDate)
  460. //} else {
  461. // endDate = fmt.Sprint(endDate, "-01")
  462. //}
  463. endDate = fmt.Sprint(endDate, "-01")
  464. //新签客户数
  465. {
  466. condition1 := condition
  467. pars1 := pars
  468. condition1 += ` AND a.start_date >= ? AND a.start_date < ? `
  469. pars1 = append(pars1, startDate, endDate)
  470. condition1 += ` AND a.contract_type = ? `
  471. pars1 = append(pars1, "新签合同")
  472. total, countErr := models.GetIncrementalNewCompanyCount(condition1, pars1)
  473. if countErr != nil && countErr.Error() != utils.ErrNoRow() {
  474. err = countErr
  475. return
  476. }
  477. newCompanySlice = append(newCompanySlice, total)
  478. }
  479. //续约客户数
  480. {
  481. //2022-02-07 13:26:48注释掉,更改成以下的逻辑,续约客户定义修改:续约合同的起始日期包含在所选时间段内且不包含在新签合同存续期内的客户
  482. //condition1 := condition
  483. //pars1 := pars
  484. //condition1 += ` AND a.start_date >= ? AND a.start_date < ? `
  485. //pars1 = append(pars1, startDate, endDate)
  486. //condition1 += ` AND a.contract_type = ? `
  487. //pars1 = append(pars1, "续约合同")
  488. //total, countErr := models.GetIncrementalNewCompanyCount(condition1, pars1)
  489. //if countErr != nil && countErr.Error() != utils.ErrNoRow() {
  490. // err = countErr
  491. // return
  492. //}
  493. //renewalCompanySlice = append(renewalCompanySlice, total)
  494. //2022-02-07 13:26:48;更改成以下的逻辑,续约客户定义修改:续约合同的起始日期包含在所选时间段内且不包含在新签合同存续期内的客户
  495. condition1 := condition
  496. pars1 := pars
  497. condition1 += ` AND a.start_date >= ? AND a.start_date < ? `
  498. pars1 = append(pars1, startDate, endDate)
  499. condition1 += ` AND a.contract_type = ? `
  500. pars1 = append(pars1, "续约合同")
  501. //额外条件(续约合同的起始日期包含在所选时间段内且不包含在新签合同存续期内的客户)
  502. pars1 = append(pars1, endDate)
  503. total, countErr := models.GetIncrementalNewCompanyCountV2(condition1, pars1)
  504. if err != nil && err.Error() != utils.ErrNoRow() {
  505. err = countErr
  506. return
  507. }
  508. renewalCompanySlice = append(renewalCompanySlice, total)
  509. }
  510. //未续约客户数
  511. //{
  512. // condition1 := condition
  513. // pars1 := pars
  514. //
  515. // condition1 += ` AND a.create_time >= ? AND a.create_time < ? `
  516. // pars1 = append(pars1, fmt.Sprint(startDate, " 00:00:00"), fmt.Sprint(endDate, " 00:00:00"))
  517. // condition1 += ` AND a.operation = ? `
  518. // pars1 = append(pars1, "try_out")
  519. // total, countErr := models.GetIncrementalCompanyCountByOperationRecord(condition1, pars1)
  520. // if countErr != nil && countErr.Error() != utils.ErrNoRow() {
  521. // err = countErr
  522. // return
  523. // }
  524. // notRenewalCompanySlice = append(notRenewalCompanySlice, total)
  525. //}
  526. }
  527. incrementalCompanyChart.Title = "客户增量图"
  528. incrementalCompanyChart.Date = dateSlice
  529. incrementalCompanyChart.NewCompanyTotal = newCompanySlice
  530. incrementalCompanyChart.RenewalCompanyTotal = renewalCompanySlice
  531. //incrementalCompanyChart.NotRenewalCompanyTotal = notRenewalCompanySlice
  532. redisJsonData, err := json.Marshal(incrementalCompanyChart)
  533. if err == nil {
  534. _ = utils.Rc.Put(key, string(redisJsonData), time.Minute*30)
  535. }
  536. } else {
  537. err = json.Unmarshal([]byte(redisJsonData), &incrementalCompanyChart)
  538. if err != nil {
  539. fmt.Println("近6个月客户增量图,json转换失败")
  540. }
  541. }
  542. return
  543. }
  544. // 获取未来近6个月的即将到期客户
  545. func getWillExpireList(sysUser *system.Admin, ch chan response.WillExpireChartResp) (willExpireChart response.WillExpireChartResp, err error) {
  546. defer func() {
  547. if err != nil {
  548. go alarm_msg.SendAlarmMsg("获取未来近6个月的即将到期客户数据异常,Err:"+err.Error(), 3)
  549. //go utils.SendEmail(utils.APPNAME+"获取未来近6个月的即将到期客户数据异常:"+time.Now().Format("2006-01-02 15:04:05"), err.Error(), utils.EmailSendToUsers)
  550. }
  551. ch <- willExpireChart
  552. }()
  553. todayStr := utils.GetToday("20060102")
  554. key := "admin:home:willExpireList:" + todayStr + ":" + strconv.Itoa(sysUser.AdminId)
  555. redisJsonData, redisErr := utils.Rc.RedisString(key)
  556. if redisErr != nil {
  557. var condition string
  558. var pars []interface{}
  559. //根据当前角色来获取查询条件
  560. condition, pars = getQueryParams(condition, pars, sysUser, "a.")
  561. var dateSlice []string
  562. var companySlice []int
  563. for i := 0; i < 6; i++ {
  564. //timeNow, _ := time.Parse("2006-01", time.Now().Format("2006-01"))
  565. //startDate := timeNow.Format(utils.FormatDate)
  566. startDate := utils.GetToday(utils.FormatDate)
  567. //endDate := timeNow.AddDate(0, i+1, 0).Format(utils.FormatDate)
  568. endDate := time.Now().AddDate(0, i+1, 0).Format(utils.FormatDate)
  569. dateSlice = append(dateSlice, fmt.Sprint("未来", i+1, "个月"))
  570. condition1 := condition
  571. pars1 := pars
  572. condition1 += ` AND a.contract_end_date >= ? AND a.contract_end_date <= ? `
  573. pars1 = append(pars1, startDate, endDate)
  574. total, countErr := models.GetWillExpireCompanyListCountV2(condition1, pars1)
  575. if countErr != nil && countErr.Error() != utils.ErrNoRow() {
  576. err = countErr
  577. return
  578. }
  579. companySlice = append(companySlice, total)
  580. }
  581. willExpireChart.Title = "即将到期客户数"
  582. willExpireChart.Date = dateSlice
  583. willExpireChart.CompanyTotal = companySlice
  584. redisJsonData, err := json.Marshal(willExpireChart)
  585. if err == nil {
  586. _ = utils.Rc.Put(key, string(redisJsonData), time.Minute*30)
  587. }
  588. } else {
  589. err = json.Unmarshal([]byte(redisJsonData), &willExpireChart)
  590. if err != nil {
  591. fmt.Println("未来近6个月的即将到期客户,json转换失败")
  592. }
  593. }
  594. return
  595. }
  596. // 获取近12个月的收入统计数据
  597. func getIncomeList(sysUser *system.Admin, ch chan response.IncomeChartResp) (incomeChart response.IncomeChartResp, err error) {
  598. defer func() {
  599. if err != nil {
  600. go alarm_msg.SendAlarmMsg("获取近12个月的收入统计数据异常,Err:"+err.Error(), 3)
  601. //go utils.SendEmail(utils.APPNAME+"获取近12个月的收入统计数据异常:"+time.Now().Format("2006-01-02 15:04:05"), err.Error(), utils.EmailSendToUsers)
  602. }
  603. ch <- incomeChart
  604. }()
  605. todayStr := utils.GetToday("20060102")
  606. key := "admin:home:incomeList:" + todayStr + ":" + strconv.Itoa(sysUser.AdminId)
  607. redisJsonData, redisErr := utils.Rc.RedisString(key)
  608. if redisErr != nil {
  609. var condition string
  610. var pars []interface{}
  611. //根据当前角色来获取查询条件
  612. condition, pars = getQueryParams(condition, pars, sysUser, "c.")
  613. var dateSlice []string
  614. var contractTotalSlice []int
  615. var moneySlice []float64
  616. yearNum := time.Now().Year() - 2021
  617. monthNum := time.Now().Month() - 1
  618. numMonth := yearNum*12 + int(monthNum) //距离2021-01存在多少个月
  619. for i := numMonth; i >= 0; i-- {
  620. timeNow, _ := time.Parse("2006-01", time.Now().Format("2006-01"))
  621. dateSlice = append(dateSlice, timeNow.AddDate(0, -i, 0).Format("06/01"))
  622. //开始日期
  623. startDate := timeNow.AddDate(0, -i, 0).Format("2006-01")
  624. startDate = fmt.Sprint(startDate, "-01")
  625. //结束日期
  626. endDateTime := timeNow.AddDate(0, -i+1, 0)
  627. endDate := endDateTime.Format("2006-01")
  628. //因为就算是当月的后续事件还没到,也要计入数据统计,所以不做限制到当天处理
  629. //if endDateTime.After(time.Now()) {
  630. // endDate = time.Now().AddDate(0, 0, 1).Format(utils.FormatDate)
  631. //} else {
  632. // endDate = fmt.Sprint(endDate, "-01")
  633. //}
  634. endDate = fmt.Sprint(endDate, "-01")
  635. condition1 := condition
  636. pars1 := pars
  637. condition1 += ` AND a.start_date >= ? AND a.start_date < ? `
  638. pars1 = append(pars1, startDate, endDate)
  639. total, money, countErr := models.GetIncomeListCount(condition1, pars1)
  640. if countErr != nil && countErr.Error() != utils.ErrNoRow() {
  641. err = countErr
  642. return
  643. }
  644. contractTotalSlice = append(contractTotalSlice, total)
  645. moneySlice = append(moneySlice, money)
  646. }
  647. incomeChart.Title = "收入统计图"
  648. incomeChart.Date = dateSlice
  649. incomeChart.ContractTotal = contractTotalSlice
  650. incomeChart.MoneyTotal = moneySlice
  651. redisJsonData, err := json.Marshal(incomeChart)
  652. if err == nil {
  653. _ = utils.Rc.Put(key, string(redisJsonData), time.Minute*30)
  654. }
  655. } else {
  656. err = json.Unmarshal([]byte(redisJsonData), &incomeChart)
  657. if err != nil {
  658. fmt.Println("近6个月的收入统计数据,json转换失败")
  659. }
  660. }
  661. return
  662. }
  663. // WillExpireList
  664. // @Title 获取即将过期的客户列表
  665. // @Description 获取即将过期的客户列表接口
  666. // @Param PageSize query int true "每页数据条数"
  667. // @Param CurrentIndex query int true "当前页页码,从1开始"
  668. // @Param Keyword query string true "客户名称"
  669. // @Param StartDate query string true "开始日期"
  670. // @Param EndDate query string true "结束日期"
  671. // @Param CompanyType query string true "客户类型:传空字符串或者不传为全部,'ficc','权益'"
  672. // @Param AdminId query string true "销售id,多个用英文逗号隔开,空字符串为全部"
  673. // @Param RegionType query string false "所属区域:传空字符串或者不传为全部,'国内','海外'"
  674. // @Param IsExport query bool false "是否导出excel,默认是false"
  675. // @Success 200 {object} response.WillExpireCompanyListResp
  676. // @router /will_expire_list [get]
  677. func (this *StatisticReportController) WillExpireList() {
  678. br := new(models.BaseResponse).Init()
  679. defer func() {
  680. this.Data["json"] = br
  681. this.ServeJSON()
  682. }()
  683. sysUser := this.SysUser
  684. if sysUser == nil {
  685. br.Msg = "请登录"
  686. br.ErrMsg = "请登录,SysUser Is Empty"
  687. br.Ret = 408
  688. return
  689. }
  690. pageSize, _ := this.GetInt("PageSize")
  691. currentIndex, _ := this.GetInt("CurrentIndex")
  692. //是否导出报表
  693. isExport, _ := this.GetBool("IsExport")
  694. if isExport {
  695. pageSize = 10000
  696. currentIndex = 1
  697. }
  698. startDate := this.GetString("StartDate")
  699. endDate := this.GetString("EndDate")
  700. adminId := this.GetString("AdminId")
  701. regionType := this.GetString("RegionType")
  702. companyType := this.GetString("CompanyType")
  703. keyword := this.GetString("Keyword")
  704. if startDate == "" {
  705. startDate = time.Now().Format(utils.FormatDate)
  706. //br.Msg = "获取失败,开始日期未传"
  707. //br.ErrMsg = "获取失败,开始日期未传"
  708. //return
  709. }
  710. if endDate == "" {
  711. endDate = time.Now().AddDate(100, 0, 0).Format(utils.FormatDate)
  712. //br.Msg = "获取失败,结束日期未传"
  713. //br.ErrMsg = "获取失败,结束日期未传"
  714. //return
  715. }
  716. var startSize int
  717. if pageSize <= 0 {
  718. pageSize = utils.PageSize20
  719. }
  720. if currentIndex <= 0 {
  721. currentIndex = 1
  722. }
  723. startSize = utils.StartIndex(currentIndex, pageSize)
  724. var condition string
  725. var pars []interface{}
  726. //today := utils.GetToday(utils.FormatDate)
  727. condition += ` AND a.contract_end_date >= ? AND a.contract_end_date <= ? `
  728. pars = append(pars, startDate, endDate)
  729. if adminId != "" {
  730. condition += ` AND a.seller_id in (` + adminId + `) `
  731. //pars = append(pars, adminId)
  732. } else {
  733. //根据当前角色来获取查询条件
  734. condition, pars = getQueryParams(condition, pars, sysUser, "a.")
  735. }
  736. if regionType != "" {
  737. condition += ` AND b.region_type = ? `
  738. pars = append(pars, regionType)
  739. }
  740. //关键字搜索
  741. if keyword != "" {
  742. condition += ` and b.company_name like "%` + keyword + `%" `
  743. }
  744. switch companyType {
  745. case "ficc":
  746. condition += ` AND a.product_id = ? `
  747. pars = append(pars, 1)
  748. case "权益":
  749. condition += ` AND a.product_id = ? `
  750. pars = append(pars, 2)
  751. case "":
  752. default:
  753. br.Msg = "获取失败,客户类型异常"
  754. br.ErrMsg = "获取失败,客户类型异常"
  755. return
  756. }
  757. totalCompany, err := models.GetWillExpireCompanyListCountV2(condition, pars)
  758. if err != nil && err.Error() != utils.ErrNoRow() {
  759. br.Msg = "获取失败"
  760. br.ErrMsg = "获取失败,Err:" + err.Error()
  761. return
  762. }
  763. totalContract, err := models.GetWillExpireContactListCountV2(condition, pars)
  764. if err != nil && err.Error() != utils.ErrNoRow() {
  765. br.Msg = "获取失败"
  766. br.ErrMsg = "获取失败,Err:" + err.Error()
  767. return
  768. }
  769. list, err := models.GetWillExpireCompanyListV2(condition, pars, startSize, pageSize)
  770. if err != nil {
  771. br.Msg = "获取失败"
  772. br.ErrMsg = "获取失败,Err:" + err.Error()
  773. return
  774. }
  775. listLen := len(list)
  776. permissionListMap := make(map[string][]*company.CompanyReportPermissionAndName)
  777. if listLen > 0 {
  778. companyIdSlice := make([]string, 0)
  779. for _, v := range list {
  780. companyIdSlice = append(companyIdSlice, strconv.Itoa(v.CompanyId))
  781. }
  782. companyIds := strings.Join(companyIdSlice, ",")
  783. permissionList, permissionErr := company.GetCompanyReportPermissionListByCompanyIds(companyIds)
  784. if permissionErr != nil {
  785. br.Msg = "获取权限失败"
  786. br.ErrMsg = "获取权限失败,Err:" + permissionErr.Error()
  787. return
  788. }
  789. for _, permission := range permissionList {
  790. key := fmt.Sprint(permission.CompanyId, "_", permission.ProductId)
  791. permissionListMap[key] = append(permissionListMap[key], permission)
  792. }
  793. }
  794. for i := 0; i < listLen; i++ {
  795. item := list[i]
  796. //剩余可用天数
  797. endDateTime, _ := time.Parse(utils.FormatDate, item.EndDate)
  798. endDateTime = endDateTime.AddDate(0, 0, 1)
  799. sub := endDateTime.Sub(time.Now())
  800. if sub < 0 {
  801. sub = 0
  802. }
  803. expireDay := fmt.Sprintf("%v", int(sub.Hours()/24))
  804. list[i].ExpireDay = expireDay
  805. key := fmt.Sprint(item.CompanyId, "_", item.ProductId)
  806. if permissionList, ok := permissionListMap[key]; ok {
  807. for _, permission := range permissionList {
  808. if item.ProductId == permission.ProductId {
  809. list[i].PermissionList = append(list[i].PermissionList, permission)
  810. }
  811. }
  812. //list[i].PermissionList = permissionList
  813. }
  814. }
  815. page := paging.GetPaging(currentIndex, pageSize, totalContract)
  816. resp := response.WillExpireCompanyListResp{
  817. Paging: page,
  818. List: list,
  819. TotalCompany: totalCompany,
  820. }
  821. //导出excel
  822. if isExport {
  823. WillExpireListExport(this, resp, br)
  824. return
  825. }
  826. br.Ret = 200
  827. br.Success = true
  828. br.Msg = "获取成功"
  829. br.Data = resp
  830. }
  831. // WillExpireListExport 即将过期的客户报表导出
  832. func WillExpireListExport(this *StatisticReportController, resp response.WillExpireCompanyListResp, br *models.BaseResponse) {
  833. dir, err := os.Executable()
  834. exPath := filepath.Dir(dir)
  835. downLoadnFilePath := exPath + "/" + time.Now().Format(utils.FormatDateTimeUnSpace) + ".xlsx"
  836. xlsxFile := xlsx.NewFile()
  837. if err != nil {
  838. br.Msg = "生成文件失败"
  839. br.ErrMsg = "生成文件失败"
  840. return
  841. }
  842. style := xlsx.NewStyle()
  843. alignment := xlsx.Alignment{
  844. Horizontal: "center",
  845. Vertical: "center",
  846. WrapText: true,
  847. }
  848. style.Alignment = alignment
  849. style.ApplyAlignment = true
  850. sheel, err := xlsxFile.AddSheet("即将到期客户数据")
  851. if err != nil {
  852. br.Msg = "新增Sheet失败"
  853. br.ErrMsg = "新增Sheet失败,Err:" + err.Error()
  854. return
  855. }
  856. sheel.SetColWidth(0, 0, 30)
  857. sheel.SetColWidth(1, 1, 15)
  858. sheel.SetColWidth(2, 2, 15)
  859. sheel.SetColWidth(3, 3, 18)
  860. //统计数据
  861. statisticRow := sheel.AddRow()
  862. cell1 := statisticRow.AddCell()
  863. cell1.SetStyle(style)
  864. cell1.SetValue(fmt.Sprint("即将到期客户数:", resp.TotalCompany))
  865. //表头
  866. titleRow := sheel.AddRow()
  867. cellName := titleRow.AddCell()
  868. cellName.SetStyle(style)
  869. cellName.SetValue("客户名称")
  870. cellProName := titleRow.AddCell()
  871. cellProName.SetStyle(style)
  872. cellProName.SetValue("客户类型")
  873. cellSellerName := titleRow.AddCell()
  874. cellSellerName.SetStyle(style)
  875. cellSellerName.SetValue("所属销售")
  876. cellTime := titleRow.AddCell()
  877. cellTime.SetStyle(style)
  878. cellTime.SetValue("服务期限")
  879. cellDay := titleRow.AddCell()
  880. cellDay.SetStyle(style)
  881. cellDay.SetValue("剩余天数")
  882. for _, v := range resp.List {
  883. dataRow := sheel.AddRow()
  884. dataRow.SetHeight(20)
  885. cellDataName := dataRow.AddCell()
  886. cellDataName.SetStyle(style)
  887. cellDataName.SetValue(v.CompanyName)
  888. cellDataProName := dataRow.AddCell()
  889. cellDataProName.SetStyle(style)
  890. cellDataProName.SetValue(v.ProductName)
  891. cellDataSellerName := dataRow.AddCell()
  892. cellDataSellerName.SetStyle(style)
  893. cellDataSellerName.SetValue(v.SellerName)
  894. cellDataTime := dataRow.AddCell()
  895. cellDataTime.SetStyle(style)
  896. cellDataTime.SetValue(fmt.Sprint(v.StartDate, " ~ ", v.EndDate))
  897. cellDay := dataRow.AddCell()
  898. cellDay.SetStyle(style)
  899. cellDay.SetValue(v.ExpireDay)
  900. }
  901. err = xlsxFile.Save(downLoadnFilePath)
  902. if err != nil {
  903. br.Msg = "保存文件失败"
  904. br.ErrMsg = "保存文件失败"
  905. return
  906. }
  907. randStr := time.Now().Format(utils.FormatDateTimeUnSpace)
  908. downloadFileName := "即将到期客户数据_" + randStr + ".xlsx"
  909. this.Ctx.Output.Download(downLoadnFilePath, downloadFileName)
  910. defer func() {
  911. os.Remove(downLoadnFilePath)
  912. }()
  913. br.Ret = 200
  914. br.Success = true
  915. br.Msg = "导出成功"
  916. }
  917. func (this *StatisticReportController) WillExpireListOld() {
  918. br := new(models.BaseResponse).Init()
  919. defer func() {
  920. this.Data["json"] = br
  921. this.ServeJSON()
  922. }()
  923. sysUser := this.SysUser
  924. if sysUser == nil {
  925. br.Msg = "请登录"
  926. br.ErrMsg = "请登录,SysUser Is Empty"
  927. br.Ret = 408
  928. return
  929. }
  930. pageSize, _ := this.GetInt("PageSize")
  931. currentIndex, _ := this.GetInt("CurrentIndex")
  932. startDate := this.GetString("StartDate")
  933. endDate := this.GetString("EndDate")
  934. adminId := this.GetString("AdminId")
  935. regionType := this.GetString("RegionType")
  936. companyType := this.GetString("CompanyType")
  937. if startDate == "" {
  938. br.Msg = "获取失败,开始日期未传"
  939. br.ErrMsg = "获取失败,开始日期未传"
  940. return
  941. }
  942. if endDate == "" {
  943. br.Msg = "获取失败,结束日期未传"
  944. br.ErrMsg = "获取失败,结束日期未传"
  945. return
  946. }
  947. var startSize int
  948. if pageSize <= 0 {
  949. pageSize = utils.PageSize20
  950. }
  951. if currentIndex <= 0 {
  952. currentIndex = 1
  953. }
  954. startSize = utils.StartIndex(currentIndex, pageSize)
  955. var condition string
  956. var pars []interface{}
  957. //today := utils.GetToday(utils.FormatDate)
  958. condition += ` AND a.end_date >= ? AND a.end_date <= ? `
  959. pars = append(pars, startDate, endDate)
  960. if adminId != "" {
  961. condition += ` AND c.seller_id in (` + adminId + `) `
  962. //pars = append(pars, adminId)
  963. } else {
  964. //根据当前角色来获取查询条件
  965. condition, pars = getQueryParams(condition, pars, sysUser, "c.")
  966. }
  967. if regionType != "" {
  968. condition += ` AND b.region_type = ? `
  969. pars = append(pars, regionType)
  970. }
  971. switch companyType {
  972. case "ficc":
  973. condition += ` AND a.product_id = ? `
  974. pars = append(pars, 1)
  975. case "权益":
  976. condition += ` AND a.product_id = ? `
  977. pars = append(pars, 2)
  978. case "":
  979. default:
  980. br.Msg = "获取失败,客户类型异常"
  981. br.ErrMsg = "获取失败,客户类型异常"
  982. return
  983. }
  984. totalCompany, err := models.GetWillExpireCompanyListCount(condition, pars)
  985. if err != nil && err.Error() != utils.ErrNoRow() {
  986. br.Msg = "获取失败"
  987. br.ErrMsg = "获取失败,Err:" + err.Error()
  988. return
  989. }
  990. totalContract, err := models.GetWillExpireContactListCount(condition, pars)
  991. if err != nil && err.Error() != utils.ErrNoRow() {
  992. br.Msg = "获取失败"
  993. br.ErrMsg = "获取失败,Err:" + err.Error()
  994. return
  995. }
  996. list, err := models.GetWillExpireCompanyList(condition, pars, startSize, pageSize)
  997. if err != nil {
  998. br.Msg = "获取失败"
  999. br.ErrMsg = "获取失败,Err:" + err.Error()
  1000. return
  1001. }
  1002. listLen := len(list)
  1003. permissionListMap := make(map[string][]*company.CompanyReportPermissionAndName)
  1004. if listLen > 0 {
  1005. companyIdSlice := make([]string, 0)
  1006. for _, v := range list {
  1007. companyIdSlice = append(companyIdSlice, strconv.Itoa(v.CompanyId))
  1008. }
  1009. companyIds := strings.Join(companyIdSlice, ",")
  1010. permissionList, permissionErr := company.GetCompanyReportPermissionListByCompanyIds(companyIds)
  1011. if permissionErr != nil {
  1012. br.Msg = "获取权限失败"
  1013. br.ErrMsg = "获取权限失败,Err:" + permissionErr.Error()
  1014. return
  1015. }
  1016. for _, permission := range permissionList {
  1017. key := fmt.Sprint(permission.CompanyId, "_", permission.ProductId)
  1018. permissionListMap[key] = append(permissionListMap[key], permission)
  1019. }
  1020. }
  1021. for i := 0; i < listLen; i++ {
  1022. item := list[i]
  1023. //剩余可用天数
  1024. endDateTime, _ := time.Parse(utils.FormatDate, item.EndDate)
  1025. endDateTime = endDateTime.AddDate(0, 0, 1)
  1026. sub := endDateTime.Sub(time.Now())
  1027. if sub < 0 {
  1028. sub = 0
  1029. }
  1030. expireDay := fmt.Sprintf("%v", int(sub.Hours()/24))
  1031. list[i].ExpireDay = expireDay
  1032. key := fmt.Sprint(item.CompanyId, "_", item.ProductId)
  1033. if permissionList, ok := permissionListMap[key]; ok {
  1034. for _, permission := range permissionList {
  1035. if item.ProductId == permission.ProductId {
  1036. list[i].PermissionList = append(list[i].PermissionList, permission)
  1037. }
  1038. }
  1039. //list[i].PermissionList = permissionList
  1040. }
  1041. }
  1042. page := paging.GetPaging(currentIndex, pageSize, totalContract)
  1043. resp := response.WillExpireCompanyListResp{
  1044. Paging: page,
  1045. List: list,
  1046. TotalCompany: totalCompany,
  1047. }
  1048. br.Ret = 200
  1049. br.Success = true
  1050. br.Msg = "获取成功"
  1051. br.Data = resp
  1052. }
  1053. // ContractList
  1054. // @Title 获取合同数据报表
  1055. // @Description 获取合同数据报表接口
  1056. // @Param PageSize query int true "每页数据条数"
  1057. // @Param CurrentIndex query int true "当前页页码,从1开始"
  1058. // @Param Keyword query string true "客户名称"
  1059. // @Param EndDate query string true "结束日期"
  1060. // @Param CompanyType query string false "客户类型:传空字符串或者不传为全部,'ficc','权益'"
  1061. // @Param AdminId query string false "销售id,多个用英文逗号隔开,空字符串为全部"
  1062. // @Param RegionType query string false "所属区域:传空字符串或者不传为全部,'国内','海外'"
  1063. // @Param DataType query string false "报表类型,枚举值:`普通数据`,`类型数据`;传空字符串或者不传为:普通数据"
  1064. // @Param SourceType query string false "合同类型,枚举值:`系统合同`,`上传附件`;传空字符串或者不传为全部合同"
  1065. // @Param IsExport query bool false "是否导出excel,默认是false"
  1066. // @Success 200 {object} models.ContractStatListResp
  1067. // @router /contract_list [get]
  1068. func (this *StatisticReportController) ContractList() {
  1069. br := new(models.BaseResponse).Init()
  1070. defer func() {
  1071. this.Data["json"] = br
  1072. this.ServeJSON()
  1073. }()
  1074. sysUser := this.SysUser
  1075. if sysUser == nil {
  1076. br.Msg = "请登录"
  1077. br.ErrMsg = "请登录,SysUser Is Empty"
  1078. br.Ret = 408
  1079. return
  1080. }
  1081. pageSize, _ := this.GetInt("PageSize")
  1082. currentIndex, _ := this.GetInt("CurrentIndex")
  1083. //是否导出报表
  1084. isExport, _ := this.GetBool("IsExport")
  1085. if isExport {
  1086. pageSize = 10000
  1087. currentIndex = 1
  1088. }
  1089. endDate := this.GetString("EndDate")
  1090. adminId := this.GetString("AdminId")
  1091. regionType := this.GetString("RegionType")
  1092. companyType := this.GetString("CompanyType")
  1093. keyword := this.GetString("Keyword")
  1094. dataType := this.GetString("DataType") //数据报表类型
  1095. sourceType := this.GetString("SourceType") //合同来源
  1096. if endDate == "" {
  1097. br.Msg = "获取失败,结束日期未传"
  1098. br.ErrMsg = "获取失败,结束日期未传"
  1099. return
  1100. }
  1101. var startSize int
  1102. if pageSize <= 0 {
  1103. pageSize = utils.PageSize20
  1104. }
  1105. if currentIndex <= 0 {
  1106. currentIndex = 1
  1107. }
  1108. startSize = utils.StartIndex(currentIndex, pageSize)
  1109. var condition string
  1110. var pars []interface{}
  1111. //上传附件
  1112. var sourceFileCondition string
  1113. var sourceFilePars []interface{}
  1114. //系统合同
  1115. var sourceSystemCondition string
  1116. var sourceSystemPars []interface{}
  1117. condition += ` AND a.start_date <= ? AND a.end_date >= ? `
  1118. pars = append(pars, endDate, endDate)
  1119. sourceFileCondition += ` AND a.create_time <= ? `
  1120. sourceFilePars = append(sourceFilePars, endDate)
  1121. sourceSystemCondition += ` AND a.check_back_file_time <= "` + endDate + ` 23:59:59"`
  1122. //sourceSystemPars = append(sourceSystemPars, endDate)
  1123. //condition += ` AND c.status = "正式" `
  1124. if adminId != "" {
  1125. condition += ` AND c.seller_id in (` + adminId + `) `
  1126. sourceFileCondition += ` AND c.seller_id in (` + adminId + `) `
  1127. sourceSystemCondition += ` AND a.seller_id in (` + adminId + `) `
  1128. //pars = append(pars, adminId)
  1129. } else {
  1130. //根据当前角色来获取查询条件
  1131. condition, pars = getQueryParams(condition, pars, sysUser, "c.")
  1132. sourceFileCondition, sourceFilePars = getQueryParams(sourceFileCondition, sourceFilePars, sysUser, "c.")
  1133. //合同
  1134. if sysUser.RoleTypeCode == utils.ROLE_TYPE_CODE_FICC_ADMIN {
  1135. sourceSystemCondition += ` AND a.product_id=? `
  1136. sourceSystemPars = append(sourceSystemPars, 1)
  1137. } else if sysUser.RoleTypeCode == utils.ROLE_TYPE_CODE_RAI_ADMIN {
  1138. sourceSystemCondition += ` AND a.product_id=? `
  1139. sourceSystemPars = append(sourceSystemPars, 2)
  1140. } else if sysUser.RoleTypeCode == utils.ROLE_TYPE_CODE_ADMIN || sysUser.RoleTypeCode == utils.ROLE_TYPE_CODE_FINANCE {
  1141. //超级管理员账户,不做条件限制
  1142. } else {
  1143. //如果不是研究员,那么去找对应的 部门、小组、销售
  1144. if sysUser.Authority == 0 {
  1145. //普通用户
  1146. sourceSystemCondition += ` AND a.seller_id=? `
  1147. sourceSystemPars = append(sourceSystemPars, sysUser.AdminId)
  1148. } else if sysUser.Authority == 1 {
  1149. //部门主管
  1150. sourceSystemCondition += ` AND b.department_id=? `
  1151. sourceSystemPars = append(sourceSystemPars, sysUser.DepartmentId)
  1152. } else if sysUser.Authority == 2 {
  1153. //小组负责人
  1154. sourceSystemCondition += ` AND b.group_id=? `
  1155. sourceSystemPars = append(sourceSystemPars, sysUser.GroupId)
  1156. } else {
  1157. //不知道什么类型的用户(后面新增的位置类型客户)
  1158. sourceSystemCondition += ` AND a.seller_id=? `
  1159. sourceSystemPars = append(sourceSystemPars, sysUser.AdminId)
  1160. }
  1161. }
  1162. }
  1163. if regionType != "" {
  1164. condition += ` AND b.region_type = ? `
  1165. pars = append(pars, regionType)
  1166. }
  1167. //关键字搜索
  1168. if keyword != "" {
  1169. condition += ` and b.company_name like "%` + keyword + `%" `
  1170. }
  1171. switch companyType {
  1172. case "ficc":
  1173. condition += ` AND a.product_id = ? `
  1174. pars = append(pars, 1)
  1175. case "权益":
  1176. condition += ` AND a.product_id = ? `
  1177. pars = append(pars, 2)
  1178. case "":
  1179. default:
  1180. br.Msg = "获取失败,客户类型异常"
  1181. br.ErrMsg = "获取失败,客户类型异常"
  1182. return
  1183. }
  1184. dataTotal := 0 //页面数据总数
  1185. total, totalContract, money, err := models.GetContractStatListCount(condition, pars)
  1186. if err != nil && err.Error() != utils.ErrNoRow() {
  1187. br.Msg = "获取失败"
  1188. br.ErrMsg = "获取失败,Err:" + err.Error()
  1189. return
  1190. }
  1191. //上传附件
  1192. totalFileContract, err := models.GetContractStatListCountBySource("上传附件", sourceFileCondition, sourceSystemCondition, sourceFilePars, sourceSystemPars)
  1193. if err != nil && err.Error() != utils.ErrNoRow() {
  1194. br.Msg = "获取失败"
  1195. br.ErrMsg = "获取失败,Err:" + err.Error()
  1196. return
  1197. }
  1198. //系统合同
  1199. totalSystemContract, err := models.GetContractStatListCountBySource("系统合同", sourceFileCondition, sourceSystemCondition, sourceFilePars, sourceSystemPars)
  1200. if err != nil && err.Error() != utils.ErrNoRow() {
  1201. br.Msg = "获取失败"
  1202. br.ErrMsg = "获取失败,Err:" + err.Error()
  1203. return
  1204. }
  1205. list := make([]*models.ContractStatList, 0)
  1206. if dataType == "类型数据" {
  1207. if sourceType != "" {
  1208. condition += ` AND a.source=? `
  1209. pars = append(pars, sourceType)
  1210. }
  1211. //列表数据
  1212. tmpList, err := models.GetContractStatListBySource(sourceType, sourceFileCondition, sourceSystemCondition, sourceFilePars, sourceSystemPars, startSize, pageSize)
  1213. if err != nil {
  1214. br.Msg = "获取失败"
  1215. br.ErrMsg = "获取失败,Err:" + err.Error()
  1216. return
  1217. }
  1218. for _, v := range tmpList {
  1219. if v.ProductId == 1 {
  1220. v.ProductName = "ficc"
  1221. } else {
  1222. v.ProductName = "权益"
  1223. }
  1224. }
  1225. list = tmpList
  1226. } else {
  1227. //列表数据
  1228. tmpList, err := models.GetContractStatList(condition, pars, startSize, pageSize)
  1229. if err != nil {
  1230. br.Msg = "获取失败"
  1231. br.ErrMsg = "获取失败,Err:" + err.Error()
  1232. return
  1233. }
  1234. list = tmpList
  1235. }
  1236. //listLen := len(list)
  1237. //for i := 0; i < listLen; i++ {
  1238. // item := list[i]
  1239. //}
  1240. if dataType == "类型数据" {
  1241. switch sourceType {
  1242. case "上传附件":
  1243. dataTotal = totalFileContract
  1244. case "系统合同":
  1245. dataTotal = totalSystemContract
  1246. default:
  1247. dataTotal = totalFileContract + totalSystemContract
  1248. }
  1249. } else {
  1250. dataTotal = total
  1251. }
  1252. page := paging.GetPaging(currentIndex, pageSize, dataTotal)
  1253. resp := response.ContractStatListResp{
  1254. Paging: page,
  1255. List: list,
  1256. TotalMoney: money,
  1257. TotalCompany: total,
  1258. TotalFileContract: totalFileContract,
  1259. TotalSystemContract: totalSystemContract,
  1260. TotalContract: totalContract,
  1261. }
  1262. //导出excel
  1263. if isExport {
  1264. ContractListExport(this, resp, br)
  1265. return
  1266. }
  1267. br.Ret = 200
  1268. br.Success = true
  1269. br.Msg = "获取成功"
  1270. br.Data = resp
  1271. }
  1272. // ContractListExport 合同数据报表导出
  1273. func ContractListExport(this *StatisticReportController, resp response.ContractStatListResp, br *models.BaseResponse) {
  1274. dataType := this.GetString("DataType") //数据报表类型
  1275. dir, err := os.Executable()
  1276. exPath := filepath.Dir(dir)
  1277. downLoadnFilePath := exPath + "/" + time.Now().Format(utils.FormatDateTimeUnSpace) + ".xlsx"
  1278. xlsxFile := xlsx.NewFile()
  1279. if err != nil {
  1280. br.Msg = "生成文件失败"
  1281. br.ErrMsg = "生成文件失败"
  1282. return
  1283. }
  1284. style := xlsx.NewStyle()
  1285. alignment := xlsx.Alignment{
  1286. Horizontal: "center",
  1287. Vertical: "center",
  1288. WrapText: true,
  1289. }
  1290. style.Alignment = alignment
  1291. style.ApplyAlignment = true
  1292. sheel, err := xlsxFile.AddSheet("合同数据报表")
  1293. if err != nil {
  1294. br.Msg = "新增Sheet失败"
  1295. br.ErrMsg = "新增Sheet失败,Err:" + err.Error()
  1296. return
  1297. }
  1298. sheel.SetColWidth(0, 0, 30)
  1299. sheel.SetColWidth(1, 1, 15)
  1300. sheel.SetColWidth(2, 2, 15)
  1301. sheel.SetColWidth(3, 5, 18)
  1302. //统计数据
  1303. statisticRow := sheel.AddRow()
  1304. cell1 := statisticRow.AddCell()
  1305. cell1.SetStyle(style)
  1306. cell1.SetValue(fmt.Sprint("有效合同数:", resp.TotalContract))
  1307. cell2 := statisticRow.AddCell()
  1308. cell2.SetStyle(style)
  1309. cell2.SetValue(fmt.Sprint("有效合同总金额:", resp.TotalMoney))
  1310. cell3 := statisticRow.AddCell()
  1311. cell3.SetStyle(style)
  1312. cell3.SetValue(fmt.Sprint("正式客户数:", resp.TotalCompany))
  1313. cell4 := statisticRow.AddCell()
  1314. cell4.SetStyle(style)
  1315. cell4.SetValue(fmt.Sprint("总上传附件合同数:", resp.TotalFileContract))
  1316. cell5 := statisticRow.AddCell()
  1317. cell5.SetStyle(style)
  1318. cell5.SetValue(fmt.Sprint("总系统生成合同数:", resp.TotalSystemContract))
  1319. //表头
  1320. titleRow := sheel.AddRow()
  1321. cellName := titleRow.AddCell()
  1322. cellName.SetStyle(style)
  1323. cellName.SetValue("客户名称")
  1324. cellProName := titleRow.AddCell()
  1325. cellProName.SetStyle(style)
  1326. cellProName.SetValue("客户类型")
  1327. cellSellerName := titleRow.AddCell()
  1328. cellSellerName.SetStyle(style)
  1329. cellSellerName.SetValue("所属销售")
  1330. if dataType == "类型数据" {
  1331. cellContractNum := titleRow.AddCell()
  1332. cellContractNum.SetStyle(style)
  1333. cellContractNum.SetValue("生成方式")
  1334. cellContractPrice := titleRow.AddCell()
  1335. cellContractPrice.SetStyle(style)
  1336. cellContractPrice.SetValue("合同提交时间")
  1337. } else {
  1338. cellContractNum := titleRow.AddCell()
  1339. cellContractNum.SetStyle(style)
  1340. cellContractNum.SetValue("有效合同数")
  1341. cellContractPrice := titleRow.AddCell()
  1342. cellContractPrice.SetStyle(style)
  1343. cellContractPrice.SetValue("有效合同总金额")
  1344. }
  1345. for _, v := range resp.List {
  1346. dataRow := sheel.AddRow()
  1347. dataRow.SetHeight(20)
  1348. cellDataName := dataRow.AddCell()
  1349. cellDataName.SetStyle(style)
  1350. cellDataName.SetValue(v.CompanyName)
  1351. cellDataProName := dataRow.AddCell()
  1352. cellDataProName.SetStyle(style)
  1353. cellDataProName.SetValue(v.ProductName)
  1354. cellDataSellerName := dataRow.AddCell()
  1355. cellDataSellerName.SetStyle(style)
  1356. cellDataSellerName.SetValue(v.SellerName)
  1357. if dataType == "类型数据" {
  1358. cellDataTime := dataRow.AddCell()
  1359. cellDataTime.SetStyle(style)
  1360. cellDataTime.SetValue(v.Source)
  1361. cellDay := dataRow.AddCell()
  1362. cellDay.SetStyle(style)
  1363. cellDay.SetValue(v.CreateTime)
  1364. } else {
  1365. cellDataTime := dataRow.AddCell()
  1366. cellDataTime.SetStyle(style)
  1367. cellDataTime.SetValue(v.Count)
  1368. cellDay := dataRow.AddCell()
  1369. cellDay.SetStyle(style)
  1370. cellDay.SetValue(v.SumMoney)
  1371. }
  1372. }
  1373. err = xlsxFile.Save(downLoadnFilePath)
  1374. if err != nil {
  1375. br.Msg = "保存文件失败"
  1376. br.ErrMsg = "保存文件失败"
  1377. return
  1378. }
  1379. randStr := time.Now().Format(utils.FormatDateTimeUnSpace)
  1380. downloadFileName := "合同数据报表_" + randStr + ".xlsx"
  1381. this.Ctx.Output.Download(downLoadnFilePath, downloadFileName)
  1382. defer func() {
  1383. os.Remove(downLoadnFilePath)
  1384. }()
  1385. br.Ret = 200
  1386. br.Success = true
  1387. br.Msg = "导出成功"
  1388. }
  1389. // CompanyContractList
  1390. // @Title 获取企业客户的合同数据报表
  1391. // @Description 获取企业客户的合同数据报表接口
  1392. // @Param PageSize query int true "每页数据条数"
  1393. // @Param CurrentIndex query int true "当前页页码,从1开始"
  1394. // @Param EndDate query string true "结束日期"
  1395. // @Param CompanyId query int true "企业客户id"
  1396. // @Success 200 {object} response.CompanyContractStatListResp
  1397. // @router /company_contract_list [get]
  1398. func (this *StatisticReportController) CompanyContractList() {
  1399. br := new(models.BaseResponse).Init()
  1400. defer func() {
  1401. this.Data["json"] = br
  1402. this.ServeJSON()
  1403. }()
  1404. endDate := this.GetString("EndDate")
  1405. companyId := this.GetString("CompanyId")
  1406. //companyType := this.GetString("CompanyType")
  1407. if endDate == "" {
  1408. br.Msg = "获取失败,结束日期未传"
  1409. br.ErrMsg = "获取失败,结束日期未传"
  1410. return
  1411. }
  1412. sysUser := this.SysUser
  1413. var condition string
  1414. var pars []interface{}
  1415. condition += ` AND a.start_date <= ? AND a.end_date >= ? `
  1416. pars = append(pars, endDate, endDate)
  1417. if companyId == "" {
  1418. br.Msg = "获取失败,客户id未传"
  1419. br.ErrMsg = "获取失败,客户id未传"
  1420. return
  1421. }
  1422. condition += ` AND a.company_id = ? `
  1423. pars = append(pars, companyId)
  1424. //根据当前角色来获取查询条件
  1425. if strings.Contains(sysUser.RoleTypeCode, "ficc") {
  1426. condition += ` AND a.product_id = ? `
  1427. pars = append(pars, 1)
  1428. } else if strings.Contains(sysUser.RoleTypeCode, "rai") {
  1429. condition += ` AND a.product_id = ? `
  1430. pars = append(pars, 2)
  1431. }
  1432. //switch companyType {
  1433. //case "ficc":
  1434. // condition += ` AND a.product_id = ? `
  1435. // pars = append(pars, 1)
  1436. //case "权益":
  1437. // condition += ` AND a.product_id = ? `
  1438. // pars = append(pars, 2)
  1439. //case "":
  1440. //default:
  1441. // br.Msg = "获取失败,客户类型异常"
  1442. // br.ErrMsg = "获取失败,客户类型异常"
  1443. // return
  1444. //}
  1445. list, err := models.GetCompanyContractStatList(condition, pars)
  1446. if err != nil {
  1447. br.Msg = "获取失败"
  1448. br.ErrMsg = "获取失败,Err:" + err.Error()
  1449. return
  1450. }
  1451. listLen := len(list)
  1452. permissionListMap := make(map[int][]*company.CompanyContractPermissionName)
  1453. if listLen > 0 {
  1454. companyContractIdSlice := make([]string, 0)
  1455. for _, v := range list {
  1456. companyContractIdSlice = append(companyContractIdSlice, strconv.Itoa(v.CompanyContractId))
  1457. }
  1458. companyContractIds := strings.Join(companyContractIdSlice, ",")
  1459. permissionList, permissionErr := company.GetCompanyContractPermissionListByContractIds(companyContractIds)
  1460. if permissionErr != nil {
  1461. br.Msg = "获取权限失败"
  1462. br.ErrMsg = "获取权限失败,Err:" + permissionErr.Error()
  1463. return
  1464. }
  1465. // CRM8.8-权益权限主客观合并
  1466. permissionList = contractService.EquityMergeSubjectAndObjectPermission(permissionList)
  1467. //列表数据处理
  1468. for i := 0; i < listLen; i++ {
  1469. item := list[i]
  1470. //权限拼接
  1471. companyContractPermissionList := make([]models.CompanyContractPermission, 0)
  1472. companyContractPermissionMap := make(map[string][]*company.CompanyContractPermissionName)
  1473. for _, permission := range permissionList {
  1474. if permission.IsUpgrade == 1 {
  1475. permission.ChartPermissionName += "(升级)"
  1476. }
  1477. if permission.CompanyContractId == item.CompanyContractId {
  1478. companyContractPermissionMap[permission.ClassifyName] = append(companyContractPermissionMap[permission.ClassifyName], permission)
  1479. }
  1480. permissionListMap[permission.CompanyContractId] = append(permissionListMap[permission.CompanyContractId], permission)
  1481. }
  1482. for classifyName, permissionList := range companyContractPermissionMap {
  1483. companyContractPermission := models.CompanyContractPermission{
  1484. ClassifyName: classifyName,
  1485. PermissionList: permissionList,
  1486. }
  1487. companyContractPermissionList = append(companyContractPermissionList, companyContractPermission)
  1488. }
  1489. list[i].PermissionList = companyContractPermissionList
  1490. }
  1491. }
  1492. resp := response.CompanyContractStatListResp{
  1493. List: list,
  1494. }
  1495. br.Ret = 200
  1496. br.Success = true
  1497. br.Msg = "获取成功"
  1498. br.Data = resp
  1499. }
  1500. // ContractDetailList
  1501. // @Title 获取合同详情
  1502. // @Description 获取企业客户的合同数据报表接口
  1503. // @Param CompanyContractId query int true "客户合同id,进行过客户申请的"
  1504. // @Param ContractId query int true "系统合同id"
  1505. // @Success 200 {object} response.CompanyContractStatListResp
  1506. // @router /contract_detail_list [get]
  1507. func (this *StatisticReportController) ContractDetailList() {
  1508. br := new(models.BaseResponse).Init()
  1509. defer func() {
  1510. this.Data["json"] = br
  1511. this.ServeJSON()
  1512. }()
  1513. list := make([]*models.CompanyContractStatList, 0)
  1514. item := models.CompanyContractStatList{}
  1515. companyContractId, _ := this.GetInt("CompanyContractId")
  1516. contractId, _ := this.GetInt("ContractId")
  1517. companyContractPermissionList := make([]models.CompanyContractPermission, 0)
  1518. if companyContractId > 0 {
  1519. contractInfo, err := company.GetCompanyContractDetailByCompanyContractId(companyContractId)
  1520. if err != nil {
  1521. br.Msg = "获取合同失败"
  1522. br.ErrMsg = "获取合同失败,Err:" + err.Error()
  1523. return
  1524. }
  1525. permissionListMap := make(map[int][]*company.CompanyContractPermissionName)
  1526. permissionList, err := company.GetCompanyContractPermissionListByContractId(contractInfo.CompanyContractId)
  1527. if err != nil {
  1528. br.Msg = "获取权限失败"
  1529. br.ErrMsg = "获取权限失败,Err:" + err.Error()
  1530. return
  1531. }
  1532. companyContractPermissionMap := make(map[string][]*company.CompanyContractPermissionName)
  1533. for _, permission := range permissionList {
  1534. //权限拼接
  1535. if permission.IsUpgrade == 1 {
  1536. permission.PermissionName += "(升级)"
  1537. }
  1538. companyContractPermissionMap[permission.ClassifyName] = append(companyContractPermissionMap[permission.ClassifyName], permission)
  1539. permissionListMap[permission.CompanyContractId] = append(permissionListMap[permission.CompanyContractId], permission)
  1540. }
  1541. for classifyName, permissionList := range companyContractPermissionMap {
  1542. companyContractPermission := models.CompanyContractPermission{
  1543. ClassifyName: classifyName,
  1544. PermissionList: permissionList,
  1545. }
  1546. companyContractPermissionList = append(companyContractPermissionList, companyContractPermission)
  1547. }
  1548. item = models.CompanyContractStatList{
  1549. CompanyContractId: contractInfo.CompanyContractId,
  1550. ContractType: contractInfo.ContractType,
  1551. ProductId: contractInfo.ProductId,
  1552. ProductName: contractInfo.ProductName,
  1553. CompanyId: contractInfo.CompanyId,
  1554. ContractCode: contractInfo.ContractCode,
  1555. StartDate: contractInfo.StartDate,
  1556. EndDate: contractInfo.EndDate,
  1557. Money: contractInfo.Money,
  1558. PayMethod: contractInfo.PayMethod,
  1559. PayChannel: contractInfo.PayChannel,
  1560. PermissionList: companyContractPermissionList,
  1561. }
  1562. list = append(list, &item)
  1563. } else if contractId > 0 {
  1564. contractInfo, err := contractService.GetContractDetail(contractId)
  1565. if err != nil {
  1566. br.Msg = "获取权限失败"
  1567. br.ErrMsg = "获取权限失败,Err:" + err.Error()
  1568. return
  1569. }
  1570. productName := "ficc"
  1571. if contractInfo.ProductId == 2 {
  1572. productName = `权益`
  1573. }
  1574. //合同中包含的产品权限
  1575. permissionLookList, _ := contractService.GetPermissionByContractService(contractInfo.ProductId, contractInfo.Service)
  1576. //权限处理
  1577. for _, v := range permissionLookList {
  1578. permissionList := make([]*company.CompanyContractPermissionName, 0)
  1579. checkIdMap := make(map[int]int)
  1580. for _, checkId := range v.CheckList {
  1581. checkIdMap[checkId] = checkId
  1582. }
  1583. for _, permission := range v.Items {
  1584. if _, ok := checkIdMap[permission.ChartPermissionId]; ok {
  1585. tmpCompanyContractPermissionName := &company.CompanyContractPermissionName{
  1586. ChartPermissionId: permission.ChartPermissionId,
  1587. ChartPermissionName: permission.PermissionName,
  1588. ClassifyName: permission.ClassifyName,
  1589. StartDate: permission.StartDate,
  1590. EndDate: permission.EndDate,
  1591. //CreateTime :permission.ChartPermissionId,
  1592. //ModifyTime :permission.ChartPermissionId,
  1593. }
  1594. permissionList = append(permissionList, tmpCompanyContractPermissionName)
  1595. }
  1596. }
  1597. if len(permissionList) > 0 {
  1598. companyContractPermission := models.CompanyContractPermission{
  1599. ClassifyName: v.ClassifyName,
  1600. PermissionList: permissionList,
  1601. }
  1602. companyContractPermissionList = append(companyContractPermissionList, companyContractPermission)
  1603. }
  1604. }
  1605. item = models.CompanyContractStatList{
  1606. //CompanyContractId :contractInfo.CompanyContractId,
  1607. ContractType: contractInfo.ContractType,
  1608. ProductId: contractInfo.ProductId,
  1609. ProductName: productName,
  1610. ContractCode: contractInfo.ContractCode,
  1611. StartDate: contractInfo.StartDate.Format(utils.FormatDate),
  1612. EndDate: contractInfo.EndDate.Format(utils.FormatDate),
  1613. Money: contractInfo.Price,
  1614. PayMethod: contractInfo.PayRemark,
  1615. PayChannel: contractInfo.PayChannel,
  1616. PermissionList: companyContractPermissionList,
  1617. }
  1618. list = append(list, &item)
  1619. }
  1620. resp := response.CompanyContractStatListResp{
  1621. List: list,
  1622. }
  1623. br.Ret = 200
  1624. br.Success = true
  1625. br.Msg = "获取成功"
  1626. br.Data = resp
  1627. }
  1628. // IncomeList
  1629. // @Title 获取收入统计列表
  1630. // @Description 获取收入统计列表接口
  1631. // @Param PageSize query int true "每页数据条数"
  1632. // @Param CurrentIndex query int true "当前页页码,从1开始"
  1633. // @Param Keyword query string true "客户名称"
  1634. // @Param StartDate query string true "开始月份"
  1635. // @Param EndDate query string true "结束月份"
  1636. // @Param CompanyType query string true "客户类型:传空字符串或者不传为全部,'ficc','权益'"
  1637. // @Param AdminId query string true "销售id,多个用英文逗号隔开,空字符串为全部"
  1638. // @Param RegionType query string false "所属区域:传空字符串或者不传为全部,'国内','海外'"
  1639. // @Param IsExport query bool false "是否导出excel,默认是false"
  1640. // @Success 200 {object} response.IncomeListResp
  1641. // @router /income_list [get]
  1642. func (this *StatisticReportController) IncomeList() {
  1643. br := new(models.BaseResponse).Init()
  1644. defer func() {
  1645. this.Data["json"] = br
  1646. this.ServeJSON()
  1647. }()
  1648. sysUser := this.SysUser
  1649. if sysUser == nil {
  1650. br.Msg = "请登录"
  1651. br.ErrMsg = "请登录,SysUser Is Empty"
  1652. br.Ret = 408
  1653. return
  1654. }
  1655. pageSize, _ := this.GetInt("PageSize")
  1656. currentIndex, _ := this.GetInt("CurrentIndex")
  1657. startDate := this.GetString("StartDate")
  1658. endDate := this.GetString("EndDate")
  1659. adminId := this.GetString("AdminId")
  1660. regionType := this.GetString("RegionType")
  1661. companyType := this.GetString("CompanyType")
  1662. keyword := this.GetString("Keyword")
  1663. //if startDate == "" || endDate == "" {
  1664. // br.Msg = "获取失败,开始日期或结束日期未传"
  1665. // br.ErrMsg = "获取失败,开始日期或结束日期未传"
  1666. // return
  1667. //}
  1668. if startDate == "" {
  1669. startDate = "2015-01"
  1670. }
  1671. if endDate == "" {
  1672. endDate = time.Now().AddDate(100, 0, 0).Format("2006-01")
  1673. }
  1674. var startSize int
  1675. if pageSize <= 0 {
  1676. pageSize = utils.PageSize20
  1677. }
  1678. if currentIndex <= 0 {
  1679. currentIndex = 1
  1680. }
  1681. startSize = utils.StartIndex(currentIndex, pageSize)
  1682. //是否导出报表
  1683. isExport, _ := this.GetBool("IsExport")
  1684. if isExport {
  1685. pageSize = 10000
  1686. currentIndex = 1
  1687. }
  1688. var condition string
  1689. var pars []interface{}
  1690. //开始时间
  1691. startDayTimes, startDayErr := time.Parse("2006-01", startDate)
  1692. if startDayErr != nil {
  1693. br.Msg = "获取失败,开始日期格式异常"
  1694. br.ErrMsg = "获取失败,开始日期格式异常" + startDayErr.Error()
  1695. return
  1696. }
  1697. startDay := startDayTimes.Format(utils.FormatDate)
  1698. //结束时间
  1699. endDayTimes, endDayErr := time.Parse("2006-01", endDate)
  1700. if endDayErr != nil {
  1701. br.Msg = "获取失败,结束日期格式异常"
  1702. br.ErrMsg = "获取失败,结束日期格式异常" + endDayErr.Error()
  1703. return
  1704. }
  1705. //本月最后一天
  1706. endDayTimes = endDayTimes.AddDate(0, 1, -1)
  1707. endDay := endDayTimes.Format(utils.FormatDate)
  1708. //条件
  1709. condition += ` AND a.start_date >= ? AND a.start_date <= ?`
  1710. pars = append(pars, startDay, endDay)
  1711. if adminId != "" {
  1712. condition += ` AND c.seller_id in (` + adminId + `) `
  1713. //pars = append(pars, adminId)
  1714. } else {
  1715. //根据当前角色来获取查询条件
  1716. condition, pars = getQueryParams(condition, pars, sysUser, "c.")
  1717. }
  1718. if regionType != "" {
  1719. condition += ` AND b.region_type = ? `
  1720. pars = append(pars, regionType)
  1721. }
  1722. //关键字搜索
  1723. if keyword != "" {
  1724. condition += ` and b.company_name like "%` + keyword + `%" `
  1725. }
  1726. switch companyType {
  1727. case "ficc":
  1728. condition += ` AND a.product_id = ? `
  1729. pars = append(pars, 1)
  1730. case "权益":
  1731. condition += ` AND a.product_id = ? `
  1732. pars = append(pars, 2)
  1733. case "":
  1734. default:
  1735. br.Msg = "获取失败,客户类型异常"
  1736. br.ErrMsg = "获取失败,客户类型异常"
  1737. return
  1738. }
  1739. total, money, err := models.GetIncomeListCount(condition, pars)
  1740. if err != nil && err.Error() != utils.ErrNoRow() {
  1741. br.Msg = "获取失败"
  1742. br.ErrMsg = "获取失败,Err:" + err.Error()
  1743. return
  1744. }
  1745. list, err := models.GetIncomeList(condition, pars, startSize, pageSize)
  1746. if err != nil {
  1747. br.Msg = "获取失败"
  1748. br.ErrMsg = "获取失败,Err:" + err.Error()
  1749. return
  1750. }
  1751. listLen := len(list)
  1752. if listLen > 0 {
  1753. permissionListMap := make(map[int][]*company.CompanyContractPermissionName)
  1754. companyContractIdSlice := make([]string, 0)
  1755. for _, v := range list {
  1756. companyContractIdSlice = append(companyContractIdSlice, strconv.Itoa(v.CompanyContractId))
  1757. }
  1758. companyContractIds := strings.Join(companyContractIdSlice, ",")
  1759. //49, 50,28
  1760. permissionList, permissionErr := company.GetCompanyContractPermissionListByContractIds(companyContractIds)
  1761. if permissionErr != nil {
  1762. br.Msg = "获取权限失败"
  1763. br.ErrMsg = "获取权限失败,Err:" + permissionErr.Error()
  1764. return
  1765. }
  1766. // CRM8.8-权益主客观权限合并
  1767. permissionList = contractService.EquityMergeSubjectAndObjectPermission(permissionList)
  1768. for i := 0; i < listLen; i++ {
  1769. item := list[i]
  1770. //剩余可用天数
  1771. endDateTime, _ := time.Parse(utils.FormatDate, item.EndDate)
  1772. endDateTime = endDateTime.AddDate(0, 0, 1)
  1773. sub := endDateTime.Sub(time.Now())
  1774. if sub < 0 {
  1775. sub = 0
  1776. }
  1777. expireDay := fmt.Sprintf("%v", int(sub.Hours()/24))
  1778. list[i].ExpireDay = expireDay
  1779. //权限拼接
  1780. companyContractPermissionList := make([]models.CompanyContractPermission, 0)
  1781. companyContractPermissionMap := make(map[string][]*company.CompanyContractPermissionName)
  1782. for _, permission := range permissionList {
  1783. if permission.CompanyContractId == item.CompanyContractId {
  1784. if permission.IsUpgrade == 1 {
  1785. permission.ChartPermissionName += "(升级)"
  1786. }
  1787. companyContractPermissionMap[permission.ClassifyName] = append(companyContractPermissionMap[permission.ClassifyName], permission)
  1788. }
  1789. permissionListMap[permission.CompanyContractId] = append(permissionListMap[permission.CompanyContractId], permission)
  1790. }
  1791. for classifyName, permissionList := range companyContractPermissionMap {
  1792. companyContractPermission := models.CompanyContractPermission{
  1793. ClassifyName: classifyName,
  1794. PermissionList: permissionList,
  1795. }
  1796. companyContractPermissionList = append(companyContractPermissionList, companyContractPermission)
  1797. }
  1798. list[i].PermissionList = companyContractPermissionList
  1799. }
  1800. }
  1801. page := paging.GetPaging(currentIndex, pageSize, total)
  1802. resp := response.IncomeListResp{
  1803. Paging: page,
  1804. List: list,
  1805. Total: total,
  1806. Money: money,
  1807. }
  1808. //导出excel
  1809. if isExport {
  1810. IncomeListExport(this, resp, br)
  1811. return
  1812. }
  1813. br.Ret = 200
  1814. br.Success = true
  1815. br.Msg = "获取成功"
  1816. br.Data = resp
  1817. }
  1818. // IncomeListExport 收入统计报表导出
  1819. func IncomeListExport(this *StatisticReportController, resp response.IncomeListResp, br *models.BaseResponse) {
  1820. dir, err := os.Executable()
  1821. exPath := filepath.Dir(dir)
  1822. downLoadnFilePath := exPath + "/" + time.Now().Format(utils.FormatDateTimeUnSpace) + ".xlsx"
  1823. xlsxFile := xlsx.NewFile()
  1824. if err != nil {
  1825. br.Msg = "生成文件失败"
  1826. br.ErrMsg = "生成文件失败"
  1827. return
  1828. }
  1829. style := xlsx.NewStyle()
  1830. alignment := xlsx.Alignment{
  1831. Horizontal: "center",
  1832. Vertical: "center",
  1833. WrapText: true,
  1834. }
  1835. style.Alignment = alignment
  1836. style.ApplyAlignment = true
  1837. sheel, err := xlsxFile.AddSheet("收入统计报表")
  1838. if err != nil {
  1839. br.Msg = "新增Sheet失败"
  1840. br.ErrMsg = "新增Sheet失败,Err:" + err.Error()
  1841. return
  1842. }
  1843. sheel.SetColWidth(0, 0, 30)
  1844. sheel.SetColWidth(1, 1, 15)
  1845. sheel.SetColWidth(2, 2, 15)
  1846. sheel.SetColWidth(3, 3, 18)
  1847. //统计数据
  1848. statisticRow := sheel.AddRow()
  1849. cell1 := statisticRow.AddCell()
  1850. cell1.SetStyle(style)
  1851. cell1.SetValue(fmt.Sprint("签约合同数:", resp.Total))
  1852. cell2 := statisticRow.AddCell()
  1853. cell2.SetStyle(style)
  1854. cell2.SetValue(fmt.Sprint("签约合同总金额:", resp.Money))
  1855. //表头
  1856. titleRow := sheel.AddRow()
  1857. cellContractNo := titleRow.AddCell()
  1858. cellContractNo.SetStyle(style)
  1859. cellContractNo.SetValue("合同编号")
  1860. cellName := titleRow.AddCell()
  1861. cellName.SetStyle(style)
  1862. cellName.SetValue("客户名称")
  1863. cellProName := titleRow.AddCell()
  1864. cellProName.SetStyle(style)
  1865. cellProName.SetValue("客户类型")
  1866. cellSellerName := titleRow.AddCell()
  1867. cellSellerName.SetStyle(style)
  1868. cellSellerName.SetValue("所属销售")
  1869. cellContractPrice := titleRow.AddCell()
  1870. cellContractPrice.SetStyle(style)
  1871. cellContractPrice.SetValue("合同金额")
  1872. cellContractPayMethod := titleRow.AddCell()
  1873. cellContractPayMethod.SetStyle(style)
  1874. cellContractPayMethod.SetValue("付款方式")
  1875. cellContractPayChannel := titleRow.AddCell()
  1876. cellContractPayChannel.SetStyle(style)
  1877. cellContractPayChannel.SetValue("付款渠道")
  1878. cellContractDate := titleRow.AddCell()
  1879. cellContractDate.SetStyle(style)
  1880. cellContractDate.SetValue("服务期限")
  1881. for _, v := range resp.List {
  1882. dataRow := sheel.AddRow()
  1883. dataRow.SetHeight(20)
  1884. cellDataContractNo := dataRow.AddCell()
  1885. cellDataContractNo.SetStyle(style)
  1886. cellDataContractNo.SetValue(v.ContractCode)
  1887. cellDataName := dataRow.AddCell()
  1888. cellDataName.SetStyle(style)
  1889. cellDataName.SetValue(v.CompanyName)
  1890. cellDataProName := dataRow.AddCell()
  1891. cellDataProName.SetStyle(style)
  1892. cellDataProName.SetValue(v.ProductName)
  1893. cellDataSellerName := dataRow.AddCell()
  1894. cellDataSellerName.SetStyle(style)
  1895. cellDataSellerName.SetValue(v.SellerName)
  1896. cellDataPrice := dataRow.AddCell()
  1897. cellDataPrice.SetStyle(style)
  1898. cellDataPrice.SetValue(v.Money)
  1899. cellDataPayMethod := dataRow.AddCell()
  1900. cellDataPayMethod.SetStyle(style)
  1901. cellDataPayMethod.SetValue(v.PayMethod)
  1902. cellDataPayChannel := dataRow.AddCell()
  1903. cellDataPayChannel.SetStyle(style)
  1904. cellDataPayChannel.SetValue(v.PayChannel)
  1905. cellDay := dataRow.AddCell()
  1906. cellDay.SetStyle(style)
  1907. cellDay.SetValue(fmt.Sprint(v.StartDate, " ~ ", v.EndDate))
  1908. }
  1909. err = xlsxFile.Save(downLoadnFilePath)
  1910. if err != nil {
  1911. br.Msg = "保存文件失败"
  1912. br.ErrMsg = "保存文件失败"
  1913. return
  1914. }
  1915. randStr := time.Now().Format(utils.FormatDateTimeUnSpace)
  1916. downloadFileName := "收入统计报表_" + randStr + ".xlsx"
  1917. this.Ctx.Output.Download(downLoadnFilePath, downloadFileName)
  1918. defer func() {
  1919. os.Remove(downLoadnFilePath)
  1920. }()
  1921. br.Ret = 200
  1922. br.Success = true
  1923. br.Msg = "导出成功"
  1924. }
  1925. // StackCompanyList
  1926. // @Title 获取存量客户数据列表
  1927. // @Description 获取存量客户数据列表接口
  1928. // @Param PageSize query int true "每页数据条数"
  1929. // @Param CurrentIndex query int true "当前页页码,从1开始"
  1930. // @Param Keyword query string true "客户名称"
  1931. // @Param CompanyType query string true "客户类型:传空字符串或者不传为全部,'ficc','权益'"
  1932. // @Param AdminId query string true "销售id,多个用英文逗号隔开,空字符串为全部"
  1933. // @Param RegionType query string false "所属区域:传空字符串或者不传为全部,'国内','海外'"
  1934. // @Param Date query string false "日期"
  1935. // @Param DataType query string false "报表类型,枚举值:`新签客户`,`续约客户`,`未续约客户`"
  1936. // @Param TryOutType query string false " '试用', '非试用' 非试用即为冻结/流失"
  1937. // @Param IsExport query bool false "是否导出excel,默认是false"
  1938. // @Param IsConfirm query int false "是否确认续约: -1-默认全部; 0-待确认; 1-已确认"
  1939. // @Param CompanyAscribeId query int false "归因ID"
  1940. // @Success 200 {object} response.StackCompanyListResp
  1941. // @router /stack_company_list [get]
  1942. func (this *StatisticReportController) StackCompanyList() {
  1943. br := new(models.BaseResponse).Init()
  1944. defer func() {
  1945. this.Data["json"] = br
  1946. this.ServeJSON()
  1947. }()
  1948. sysUser := this.SysUser
  1949. if sysUser == nil {
  1950. br.Msg = "请登录"
  1951. br.ErrMsg = "请登录,SysUser Is Empty"
  1952. br.Ret = 408
  1953. return
  1954. }
  1955. pageSize, _ := this.GetInt("PageSize")
  1956. currentIndex, _ := this.GetInt("CurrentIndex")
  1957. //是否导出报表
  1958. isExport, _ := this.GetBool("IsExport")
  1959. if isExport {
  1960. pageSize = 10000
  1961. currentIndex = 1
  1962. }
  1963. adminId := this.GetString("AdminId")
  1964. regionType := this.GetString("RegionType")
  1965. companyType := this.GetString("CompanyType")
  1966. dataType := this.GetString("DataType")
  1967. tryOutType := this.GetString("TryOutType")
  1968. keyword := this.GetString("Keyword")
  1969. date := this.GetString("Date")
  1970. isConfirm, _ := this.GetInt("IsConfirm", -1) // CRM 13.9
  1971. companyAscribeId, _ := this.GetInt("CompanyAscribeId", -1) // CRM 13.9
  1972. if date == "" {
  1973. br.Msg = "获取失败,请选择日期"
  1974. br.ErrMsg = "获取失败,请选择日期"
  1975. return
  1976. }
  1977. //获取筛选时间的时间戳
  1978. formatTime, err := time.Parse(utils.FormatDate, date)
  1979. if err != nil {
  1980. br.Msg = "获取失败,日期格式异常"
  1981. br.ErrMsg = "获取失败,日期格式异常"
  1982. return
  1983. }
  1984. dateTime := formatTime.Unix()
  1985. //获取今天零点的时间戳
  1986. todayStr := time.Now().Format(utils.FormatDate)
  1987. todayTime, _ := time.Parse(utils.FormatDate, todayStr)
  1988. todayTimeNumber := todayTime.Unix()
  1989. var resp response.StackCompanyListResp
  1990. //历史统计数据
  1991. if dateTime < todayTimeNumber {
  1992. tmpResp, err := getHistoryStackCompanyList(sysUser, currentIndex, pageSize, isConfirm, companyAscribeId, adminId, regionType, companyType, dataType, tryOutType, date, keyword)
  1993. if err != nil {
  1994. br.Msg = "获取失败"
  1995. br.ErrMsg = "获取失败,Err:" + err.Error()
  1996. return
  1997. }
  1998. resp = tmpResp
  1999. } else {
  2000. //获取实时统计数据(今天数据)
  2001. tmpResp, err := getTodayStackCompanyListV2(sysUser, currentIndex, pageSize, isConfirm, companyAscribeId, adminId, regionType, companyType, dataType, tryOutType, keyword)
  2002. if err != nil {
  2003. br.Msg = "获取失败"
  2004. br.ErrMsg = "获取失败,Err:" + err.Error()
  2005. return
  2006. }
  2007. resp = tmpResp
  2008. }
  2009. //导出excel
  2010. if isExport {
  2011. StackCompanyListExport(this, dataType, resp, br)
  2012. return
  2013. }
  2014. br.Ret = 200
  2015. br.Success = true
  2016. br.Msg = "获取成功"
  2017. br.Data = resp
  2018. }
  2019. // StackCompanyListExport 获取存量客户数据报表导出
  2020. func StackCompanyListExport(this *StatisticReportController, dataType string, resp response.StackCompanyListResp, br *models.BaseResponse) {
  2021. dir, err := os.Executable()
  2022. exPath := filepath.Dir(dir)
  2023. downLoadnFilePath := exPath + "/" + time.Now().Format(utils.FormatDateTimeUnSpace) + ".xlsx"
  2024. xlsxFile := xlsx.NewFile()
  2025. if err != nil {
  2026. br.Msg = "生成文件失败"
  2027. br.ErrMsg = "生成文件失败"
  2028. return
  2029. }
  2030. style := xlsx.NewStyle()
  2031. alignment := xlsx.Alignment{
  2032. Horizontal: "center",
  2033. Vertical: "center",
  2034. WrapText: true,
  2035. }
  2036. style.Alignment = alignment
  2037. style.ApplyAlignment = true
  2038. sheel, err := xlsxFile.AddSheet("存量客户数据")
  2039. if err != nil {
  2040. br.Msg = "新增Sheet失败"
  2041. br.ErrMsg = "新增Sheet失败,Err:" + err.Error()
  2042. return
  2043. }
  2044. sheel.SetColWidth(0, 0, 30)
  2045. sheel.SetColWidth(1, 1, 15)
  2046. sheel.SetColWidth(2, 2, 15)
  2047. sheel.SetColWidth(3, 3, 18)
  2048. //统计数据
  2049. statisticRow := sheel.AddRow()
  2050. cell1 := statisticRow.AddCell()
  2051. cell1.SetStyle(style)
  2052. cell1.SetValue(fmt.Sprint("新签客户数:", resp.NewCompanyTotal))
  2053. cell2 := statisticRow.AddCell()
  2054. cell2.SetStyle(style)
  2055. cell2.SetValue(fmt.Sprint("续约客户数:", resp.RenewalCompanyTotal))
  2056. cell3 := statisticRow.AddCell()
  2057. cell3.SetStyle(style)
  2058. cell3.SetValue(fmt.Sprint("未续约客户数:", resp.NotRenewalCompanyTotal))
  2059. //表头
  2060. titleRow := sheel.AddRow()
  2061. cellName := titleRow.AddCell()
  2062. cellName.SetStyle(style)
  2063. cellName.SetValue("客户名称")
  2064. cellProName := titleRow.AddCell()
  2065. cellProName.SetStyle(style)
  2066. cellProName.SetValue("客户类型")
  2067. cellSellerName := titleRow.AddCell()
  2068. cellSellerName.SetStyle(style)
  2069. cellSellerName.SetValue("所属销售")
  2070. switch dataType {
  2071. case "未续约客户":
  2072. cellTime := titleRow.AddCell()
  2073. cellTime.SetStyle(style)
  2074. cellTime.SetValue("最近合同到期时间")
  2075. cellRemark := titleRow.AddCell()
  2076. cellRemark.SetStyle(style)
  2077. cellRemark.SetValue("未续约说明")
  2078. cellDay := titleRow.AddCell()
  2079. cellDay.SetStyle(style)
  2080. cellDay.SetValue("超出过期天数")
  2081. cellAscribeContent := titleRow.AddCell()
  2082. cellAscribeContent.SetStyle(style)
  2083. cellAscribeContent.SetValue("不续约归因")
  2084. cellContent := titleRow.AddCell()
  2085. cellContent.SetStyle(style)
  2086. cellContent.SetValue("详细原因")
  2087. default:
  2088. cellTime := titleRow.AddCell()
  2089. cellTime.SetStyle(style)
  2090. cellTime.SetValue("服务期限")
  2091. cellDay := titleRow.AddCell()
  2092. cellDay.SetStyle(style)
  2093. cellDay.SetValue("剩余天数")
  2094. }
  2095. for _, v := range resp.List {
  2096. dataRow := sheel.AddRow()
  2097. dataRow.SetHeight(20)
  2098. cellDataName := dataRow.AddCell()
  2099. cellDataName.SetStyle(style)
  2100. cellDataName.SetValue(v.CompanyName)
  2101. cellDataProName := dataRow.AddCell()
  2102. cellDataProName.SetStyle(style)
  2103. cellDataProName.SetValue(v.ProductName)
  2104. cellDataSellerName := dataRow.AddCell()
  2105. cellDataSellerName.SetStyle(style)
  2106. cellDataSellerName.SetValue(v.SellerName)
  2107. cellDataTime := dataRow.AddCell()
  2108. cellDataTime.SetStyle(style)
  2109. switch dataType {
  2110. case "新签客户":
  2111. cellDataTime.SetValue(fmt.Sprint(v.StartDate, " ~ ", v.EndDate))
  2112. case "续约客户":
  2113. cellDataTime.SetValue(fmt.Sprint(v.StartDate, " ~ ", v.EndDate))
  2114. case "未续约客户":
  2115. cellDataTime.SetValue(v.EndDate)
  2116. //未续约说明
  2117. cellDataRemark := dataRow.AddCell()
  2118. cellDataRemark.SetStyle(style)
  2119. cellDataRemark.SetValue(v.RenewalReason)
  2120. }
  2121. cellDay := dataRow.AddCell()
  2122. cellDay.SetStyle(style)
  2123. cellDay.SetValue(v.ExpireDay)
  2124. switch dataType {
  2125. case "未续约客户":
  2126. cellAscribeContent := dataRow.AddCell()
  2127. cellAscribeContent.SetStyle(style)
  2128. cellAscribeContent.SetValue(v.AscribeContent)
  2129. cellContent := dataRow.AddCell()
  2130. cellContent.SetStyle(style)
  2131. cellContent.SetValue(v.Content)
  2132. }
  2133. }
  2134. err = xlsxFile.Save(downLoadnFilePath)
  2135. if err != nil {
  2136. br.Msg = "保存文件失败"
  2137. br.ErrMsg = "保存文件失败"
  2138. return
  2139. }
  2140. randStr := time.Now().Format(utils.FormatDateTimeUnSpace)
  2141. downloadFileName := "存量客户数据_" + randStr + ".xlsx"
  2142. this.Ctx.Output.Download(downLoadnFilePath, downloadFileName)
  2143. defer func() {
  2144. os.Remove(downLoadnFilePath)
  2145. }()
  2146. br.Ret = 200
  2147. br.Success = true
  2148. br.Msg = "导出成功"
  2149. }
  2150. // StackCompanyListExportRai 获取存量客户数据报表导出
  2151. func StackCompanyListExportRai(this *StatisticReportController, dataType string, resp response.StackCompanyListResp, br *models.BaseResponse) {
  2152. dir, err := os.Executable()
  2153. exPath := filepath.Dir(dir)
  2154. downLoadnFilePath := exPath + "/" + time.Now().Format(utils.FormatDateTimeUnSpace) + ".xlsx"
  2155. xlsxFile := xlsx.NewFile()
  2156. if err != nil {
  2157. br.Msg = "生成文件失败"
  2158. br.ErrMsg = "生成文件失败"
  2159. return
  2160. }
  2161. style := xlsx.NewStyle()
  2162. alignment := xlsx.Alignment{
  2163. Horizontal: "center",
  2164. Vertical: "center",
  2165. WrapText: true,
  2166. }
  2167. style.Alignment = alignment
  2168. style.ApplyAlignment = true
  2169. sheel, err := xlsxFile.AddSheet("存量客户数据")
  2170. if err != nil {
  2171. br.Msg = "新增Sheet失败"
  2172. br.ErrMsg = "新增Sheet失败,Err:" + err.Error()
  2173. return
  2174. }
  2175. sheel.SetColWidth(0, 0, 30)
  2176. sheel.SetColWidth(1, 1, 15)
  2177. sheel.SetColWidth(2, 2, 15)
  2178. sheel.SetColWidth(3, 3, 18)
  2179. //统计数据
  2180. statisticRow := sheel.AddRow()
  2181. cell1 := statisticRow.AddCell()
  2182. cell1.SetStyle(style)
  2183. cell1.SetValue(fmt.Sprint("新签客户数:", resp.NewCompanyTotal))
  2184. cell2 := statisticRow.AddCell()
  2185. cell2.SetStyle(style)
  2186. cell2.SetValue(fmt.Sprint("续约客户数:", resp.RenewalCompanyTotal))
  2187. cell3 := statisticRow.AddCell()
  2188. cell3.SetStyle(style)
  2189. cell3.SetValue(fmt.Sprint("未续约客户数:", resp.NotRenewalCompanyTotal))
  2190. //表头
  2191. titleRow := sheel.AddRow()
  2192. cellName := titleRow.AddCell()
  2193. cellName.SetStyle(style)
  2194. cellName.SetValue("客户名称")
  2195. cellProName := titleRow.AddCell()
  2196. cellProName.SetStyle(style)
  2197. cellProName.SetValue("客户类型")
  2198. cellSellerName := titleRow.AddCell()
  2199. cellSellerName.SetStyle(style)
  2200. cellSellerName.SetValue("所属销售")
  2201. switch dataType {
  2202. case "未续约客户":
  2203. cellTime := titleRow.AddCell()
  2204. cellTime.SetStyle(style)
  2205. cellTime.SetValue("最近合同到期时间")
  2206. cellRemark := titleRow.AddCell()
  2207. cellRemark.SetStyle(style)
  2208. cellRemark.SetValue("未续约说明")
  2209. cellDay := titleRow.AddCell()
  2210. cellDay.SetStyle(style)
  2211. cellDay.SetValue("超出过期天数")
  2212. cellAscribeContent := titleRow.AddCell()
  2213. cellAscribeContent.SetStyle(style)
  2214. cellAscribeContent.SetValue("不续约归因")
  2215. cellContent := titleRow.AddCell()
  2216. cellContent.SetStyle(style)
  2217. cellContent.SetValue("详细原因")
  2218. default:
  2219. cellShareSeller := titleRow.AddCell()
  2220. cellShareSeller.SetStyle(style)
  2221. cellShareSeller.SetValue("服务销售")
  2222. cellTime := titleRow.AddCell()
  2223. cellTime.SetStyle(style)
  2224. cellTime.SetValue("合同期限")
  2225. cellMoney := titleRow.AddCell()
  2226. cellMoney.SetStyle(style)
  2227. cellMoney.SetValue("合同金额")
  2228. cellPermissionName := titleRow.AddCell()
  2229. cellPermissionName.SetStyle(style)
  2230. cellPermissionName.SetValue("签约套餐")
  2231. }
  2232. for _, v := range resp.List {
  2233. dataRow := sheel.AddRow()
  2234. dataRow.SetHeight(20)
  2235. cellDataName := dataRow.AddCell()
  2236. cellDataName.SetStyle(style)
  2237. cellDataName.SetValue(v.CompanyName)
  2238. cellDataProName := dataRow.AddCell()
  2239. cellDataProName.SetStyle(style)
  2240. cellDataProName.SetValue(v.ProductName)
  2241. cellDataSellerName := dataRow.AddCell()
  2242. cellDataSellerName.SetStyle(style)
  2243. cellDataSellerName.SetValue(v.SellerName)
  2244. if dataType != "未续约客户" {
  2245. cellDataShareSeller := dataRow.AddCell()
  2246. cellDataShareSeller.SetStyle(style)
  2247. cellDataShareSeller.SetValue(v.ShareSeller)
  2248. }
  2249. cellDataTime := dataRow.AddCell()
  2250. cellDataTime.SetStyle(style)
  2251. switch dataType {
  2252. case "新签客户":
  2253. cellDataTime.SetValue(fmt.Sprint(v.StartDate, " ~ ", v.EndDate))
  2254. case "续约客户":
  2255. cellDataTime.SetValue(fmt.Sprint(v.StartDate, " ~ ", v.EndDate))
  2256. case "未续约客户":
  2257. cellDataTime.SetValue(v.EndDate)
  2258. //未续约说明
  2259. cellDataRemark := dataRow.AddCell()
  2260. cellDataRemark.SetStyle(style)
  2261. cellDataRemark.SetValue(v.RenewalReason)
  2262. cellDay := dataRow.AddCell()
  2263. cellDay.SetStyle(style)
  2264. cellDay.SetValue(v.ExpireDay)
  2265. }
  2266. if dataType == "新签客户" || dataType == "续约客户" {
  2267. cellMoney := dataRow.AddCell()
  2268. cellMoney.SetStyle(style)
  2269. cellMoney.SetValue(v.Money)
  2270. cellPermissionName := dataRow.AddCell()
  2271. cellPermissionName.SetStyle(style)
  2272. cellPermissionName.SetValue(v.PermissionName)
  2273. }
  2274. switch dataType {
  2275. case "未续约客户":
  2276. cellAscribeContent := dataRow.AddCell()
  2277. cellAscribeContent.SetStyle(style)
  2278. cellAscribeContent.SetValue(v.AscribeContent)
  2279. cellContent := dataRow.AddCell()
  2280. cellContent.SetStyle(style)
  2281. cellContent.SetValue(v.Content)
  2282. }
  2283. }
  2284. err = xlsxFile.Save(downLoadnFilePath)
  2285. if err != nil {
  2286. br.Msg = "保存文件失败"
  2287. br.ErrMsg = "保存文件失败"
  2288. return
  2289. }
  2290. randStr := time.Now().Format(utils.FormatDateTimeUnSpace)
  2291. downloadFileName := "存量客户数据_" + randStr + ".xlsx"
  2292. this.Ctx.Output.Download(downLoadnFilePath, downloadFileName)
  2293. defer func() {
  2294. os.Remove(downLoadnFilePath)
  2295. }()
  2296. br.Ret = 200
  2297. br.Success = true
  2298. br.Msg = "导出成功"
  2299. }
  2300. // 获取历史的数据
  2301. func getHistoryStackCompanyList(sysUser *system.Admin, currentIndex, pageSize, isConfirm, companyAscribeId int, adminId, regionType, companyType, dataType, tryOutType, date, keyword string) (returnData response.StackCompanyListResp, err error) {
  2302. if date == "" {
  2303. err = errors.New("请选择日期")
  2304. return
  2305. }
  2306. var startSize int
  2307. if pageSize <= 0 {
  2308. pageSize = utils.PageSize20
  2309. }
  2310. if currentIndex <= 0 {
  2311. currentIndex = 1
  2312. }
  2313. startSize = utils.StartIndex(currentIndex, pageSize)
  2314. var condition string
  2315. var pars []interface{}
  2316. //条件
  2317. condition += ` AND date = ? `
  2318. pars = append(pars, date)
  2319. var conditionAscribRai string // 处理权益未续约客户检索列表SQL查询条件
  2320. var parsAscribeRai []interface{}
  2321. //是否确认续约 CRM 13.9
  2322. if isConfirm != -1 {
  2323. var conditionConfirm string
  2324. var parsConfirm []interface{}
  2325. companyConfirmList, e := company.GetCompanyNoRenewedAscribeList(conditionConfirm, parsConfirm, 0, 0)
  2326. if e != nil && e.Error() != utils.ErrNoRow() {
  2327. err = errors.New("GetCompanyNoRenewedAscribeList" + e.Error())
  2328. return
  2329. }
  2330. var companyIds []int
  2331. if len(companyConfirmList) == 0 {
  2332. companyIds = append(companyIds, 0) // 给一个不存在的ID
  2333. } else {
  2334. for _, v := range companyConfirmList {
  2335. companyIds = append(companyIds, v.CompanyId)
  2336. }
  2337. }
  2338. if isConfirm == 0 {
  2339. conditionAscribRai += ` AND c.company_id NOT IN (` + utils.GetOrmInReplace(len(companyIds)) + `)` // 待确认
  2340. } else {
  2341. conditionAscribRai += ` AND c.company_id IN (` + utils.GetOrmInReplace(len(companyIds)) + `)` // 已确认
  2342. }
  2343. parsAscribeRai = append(parsAscribeRai, companyIds)
  2344. }
  2345. //归因ID CRM 13.9
  2346. if companyAscribeId > 0 {
  2347. var conditionAscribe string
  2348. var parsAscribe []interface{}
  2349. conditionAscribe = " AND company_ascribe_id = ? "
  2350. parsAscribe = append(parsAscribe, companyAscribeId)
  2351. companyNoRenewedAscribeList, e := company.GetCompanyNoRenewedAscribeList(conditionAscribe, parsAscribe, 0, 0)
  2352. if e != nil && e.Error() != utils.ErrNoRow() {
  2353. err = errors.New("GetCompanyNoRenewedAscribeList" + e.Error())
  2354. return
  2355. }
  2356. var companyIds []int
  2357. if len(companyNoRenewedAscribeList) == 0 {
  2358. companyIds = append(companyIds, 0) // 给一个不存在的ID
  2359. } else {
  2360. for _, v := range companyNoRenewedAscribeList {
  2361. companyIds = append(companyIds, v.CompanyId)
  2362. }
  2363. }
  2364. conditionAscribRai += ` AND c.company_id IN (` + utils.GetOrmInReplace(len(companyIds)) + `)`
  2365. parsAscribeRai = append(parsAscribeRai, companyIds)
  2366. }
  2367. if adminId != "" {
  2368. condition += ` AND a.seller_id in (` + adminId + `) `
  2369. //pars = append(pars, adminId)
  2370. } else {
  2371. //根据当前角色来获取查询条件
  2372. condition, pars = getQueryParams(condition, pars, sysUser, "a.")
  2373. }
  2374. if regionType != "" {
  2375. condition += ` AND region_type = ? `
  2376. pars = append(pars, regionType)
  2377. }
  2378. switch companyType {
  2379. case "ficc":
  2380. condition += ` AND a.product_id = ? `
  2381. pars = append(pars, 1)
  2382. case "权益":
  2383. condition += ` AND a.product_id = ? `
  2384. pars = append(pars, 2)
  2385. case "":
  2386. default:
  2387. err = errors.New("客户类型异常")
  2388. return
  2389. }
  2390. //关键字搜索
  2391. if keyword != "" {
  2392. condition += ` and c.company_name like "%` + keyword + `%" `
  2393. }
  2394. var dataTotal, newCompanyTotal, renewalCompanyTotal, notRenewalCompanyTotal int
  2395. var notRenewalTryOut, notRenewalNotTryOut int
  2396. //新签客户数
  2397. {
  2398. condition1 := condition
  2399. pars1 := pars
  2400. condition1 += ` AND a.type = ? `
  2401. pars1 = append(pars, "新签客户")
  2402. total, countErr := models.GetStackCompanyCount(condition1, pars1)
  2403. if countErr != nil && countErr.Error() != utils.ErrNoRow() {
  2404. err = countErr
  2405. return
  2406. }
  2407. newCompanyTotal = total
  2408. if dataType == "新签客户" {
  2409. //列表页数据总和
  2410. total, countErr := models.GetStackCompanyProductCount(condition1, pars1)
  2411. if countErr != nil && countErr.Error() != utils.ErrNoRow() {
  2412. err = countErr
  2413. return
  2414. }
  2415. dataTotal = total
  2416. }
  2417. }
  2418. //续约客户数
  2419. {
  2420. condition1 := condition
  2421. pars1 := pars
  2422. condition1 += ` AND a.type = ? `
  2423. pars1 = append(pars, "续约客户")
  2424. total, countErr := models.GetStackCompanyCount(condition1, pars1)
  2425. if countErr != nil && countErr.Error() != utils.ErrNoRow() {
  2426. err = countErr
  2427. return
  2428. }
  2429. renewalCompanyTotal = total
  2430. if dataType == "续约客户" {
  2431. //列表页数据总和
  2432. total, countErr := models.GetStackCompanyProductCount(condition1, pars1)
  2433. if countErr != nil && countErr.Error() != utils.ErrNoRow() {
  2434. err = countErr
  2435. return
  2436. }
  2437. dataTotal = total
  2438. }
  2439. }
  2440. //未续约客户数
  2441. {
  2442. condition1 := condition
  2443. pars1 := pars
  2444. condition1 += ` AND a.type = ? `
  2445. pars1 = append(pars, "未续约客户")
  2446. total, countErr := models.GetStackCompanyCount(condition1, pars1)
  2447. if countErr != nil && countErr.Error() != utils.ErrNoRow() {
  2448. err = countErr
  2449. return
  2450. }
  2451. notRenewalCompanyTotal = total
  2452. condition1 += conditionAscribRai
  2453. pars1 = append(pars1, parsAscribeRai)
  2454. if dataType == "未续约客户" {
  2455. //列表页数据总和
  2456. //统计数据
  2457. for _, v := range []string{"试用", "非试用"} {
  2458. totalCondition1 := condition1
  2459. totalPars1 := pars1
  2460. var tmpTotal int
  2461. if v == "试用" {
  2462. totalCondition1 += ` AND b.status = "试用" `
  2463. tmpTotal, err = models.GetNotRenewalStackCompanyProductCount(totalCondition1, totalPars1)
  2464. if err != nil {
  2465. return
  2466. }
  2467. notRenewalTryOut = tmpTotal
  2468. } else if v == "非试用" {
  2469. totalCondition1 += ` AND b.status IN ("冻结","流失") `
  2470. tmpTotal, err = models.GetNotRenewalStackCompanyProductCount(totalCondition1, totalPars1)
  2471. if err != nil && err.Error() != utils.ErrNoRow() {
  2472. return
  2473. }
  2474. notRenewalNotTryOut = tmpTotal
  2475. }
  2476. }
  2477. //列表数据数量
  2478. if tryOutType == "试用" {
  2479. condition1 += ` AND b.status = "试用" `
  2480. total = notRenewalTryOut
  2481. } else if tryOutType == "非试用" {
  2482. condition1 += ` AND b.status IN ("冻结","流失") `
  2483. total = notRenewalNotTryOut
  2484. }
  2485. total, countErr := models.GetNotRenewalStackCompanyProductCount(condition1, pars1)
  2486. if countErr != nil && countErr.Error() != utils.ErrNoRow() {
  2487. err = countErr
  2488. return
  2489. }
  2490. dataTotal = total
  2491. }
  2492. }
  2493. //报表类型,新签客户`,`续约客户`,`未续约客户`
  2494. condition += ` AND a.type = ? `
  2495. pars = append(pars, dataType)
  2496. orderBy := ``
  2497. if dataType == "新签客户" || dataType == "续约客户" {
  2498. orderBy = `start_date desc`
  2499. }
  2500. if tryOutType == "试用" {
  2501. condition += ` AND b.status = "试用" `
  2502. } else if tryOutType == "非试用" {
  2503. condition += ` AND b.status IN ("冻结","流失") `
  2504. }
  2505. list, countErr := models.GetStackCompanyList(condition, orderBy, pars, startSize, pageSize)
  2506. if countErr != nil {
  2507. err = countErr
  2508. return
  2509. }
  2510. listLen := len(list)
  2511. //moreListMap := make(map[int][]*models.StackCompanyStatisticList)
  2512. if dataType == "续约客户" {
  2513. var ids []string
  2514. var ascribecompanyIds []int
  2515. oldCompanyMap := make(map[int]*models.IncrementalList)
  2516. oldMoneyMap := make(map[int]float64)
  2517. countMap := make(map[int]int)
  2518. for _, item := range list {
  2519. ids = append(ids, strconv.Itoa(item.CompanyId))
  2520. ascribecompanyIds = append(ascribecompanyIds, item.CompanyId)
  2521. }
  2522. //归因标签
  2523. mapGetCompanyAscribeContent, mapContent := services.GetCompanyAscribeContentMap(ascribecompanyIds)
  2524. mapNoRenewedNote := services.GetCompanyNoRenewedNoteMap(ascribecompanyIds)
  2525. if len(ids) > 0 {
  2526. idStr := strings.Join(ids, ",")
  2527. lists, contractErr := models.GetLastContractMoney(idStr)
  2528. if contractErr != nil {
  2529. err = contractErr
  2530. return
  2531. }
  2532. for _, item := range lists {
  2533. _, countOk := countMap[item.CompanyId]
  2534. _, ok := oldCompanyMap[item.CompanyId]
  2535. if !ok {
  2536. oldCompanyMap[item.CompanyId] = item
  2537. oldMoneyMap[item.CompanyId] = item.Money
  2538. } else if !countOk {
  2539. countMap[item.CompanyId] = 1
  2540. oldCompanyMap[item.CompanyId] = item
  2541. }
  2542. }
  2543. //给list赋值
  2544. for _, item := range list {
  2545. if item.ProductName == "权益" {
  2546. oldMoney, _ := oldMoneyMap[item.CompanyId]
  2547. lastContract, _ := oldCompanyMap[item.CompanyId]
  2548. if oldMoney > lastContract.Money {
  2549. item.PackageDifference = "增加套餐"
  2550. } else if oldMoney < lastContract.Money {
  2551. item.PackageDifference = "减少套餐"
  2552. } else {
  2553. item.PackageDifference = "维持套餐"
  2554. }
  2555. }
  2556. item.AscribeContent = mapGetCompanyAscribeContent[fmt.Sprint("CID_", item.CompanyId, "PID_", item.ProductId)]
  2557. item.Content = mapContent[fmt.Sprint("CID_", item.CompanyId, "PID_", item.ProductId)]
  2558. item.IsShowNoRenewedNote = mapNoRenewedNote[fmt.Sprint("CID_", item.CompanyId, "PID_", item.ProductId)]
  2559. }
  2560. }
  2561. }
  2562. //获取其他产品数据
  2563. //if listLen > 0 {
  2564. // companyIdSlice := make([]string, 0)
  2565. // statisticIdSlice := make([]string, 0)
  2566. // for _, v := range list {
  2567. // if v.Count > 1 {
  2568. // companyIdSlice = append(companyIdSlice, strconv.Itoa(v.CompanyId))
  2569. // statisticIdSlice = append(statisticIdSlice, strconv.Itoa(v.StatisticId))
  2570. // }
  2571. // }
  2572. // if len(companyIdSlice) > 0 {
  2573. // companyIds := strings.Join(companyIdSlice, ",")
  2574. // statisticIds := strings.Join(statisticIdSlice, ",")
  2575. // stackCompanyList2, list2Err := models.GetStackCompanyListByCompanyIds(companyIds, statisticIds, condition, pars)
  2576. // //companyType
  2577. // if list2Err != nil {
  2578. // err = errors.New("获取其他产品失败,Err:" + list2Err.Error())
  2579. // return
  2580. // }
  2581. //
  2582. // for _, stackCompany := range stackCompanyList2 {
  2583. // moreListMap[stackCompany.CompanyId] = append(moreListMap[stackCompany.CompanyId], stackCompany)
  2584. // }
  2585. // }
  2586. //}
  2587. for i := 0; i < listLen; i++ {
  2588. item := list[i]
  2589. //剩余可用天数
  2590. endDateTime, _ := time.Parse(utils.FormatDate, item.EndDate)
  2591. endDateTime = endDateTime.AddDate(0, 0, 1)
  2592. sub := endDateTime.Sub(time.Now())
  2593. //if sub < 0 {
  2594. // sub = 0
  2595. //}
  2596. expireDay := fmt.Sprintf("%v", int(sub.Hours()/24))
  2597. list[i].ExpireDay = expireDay
  2598. //其他产品数据处理
  2599. //if otherCompanyProductList, ok := moreListMap[item.CompanyId]; ok {
  2600. // for _, otherCompanyProduct := range otherCompanyProductList {
  2601. // list[i].ProductName += "/" + otherCompanyProduct.ProductName
  2602. // list[i].SellerName += "/" + otherCompanyProduct.SellerName
  2603. // list[i].StartDate += "/" + otherCompanyProduct.StartDate
  2604. // list[i].EndDate += "/" + otherCompanyProduct.EndDate
  2605. //
  2606. // endDateTime, _ := time.Parse(utils.FormatDate, otherCompanyProduct.EndDate)
  2607. // endDateTime = endDateTime.AddDate(0, 0, 1)
  2608. // sub := endDateTime.Sub(time.Now())
  2609. // //if sub < 0 {
  2610. // // sub = 0
  2611. // //}
  2612. // tmpExpireDay := fmt.Sprintf("%v", int(sub.Hours()/24))
  2613. // list[i].ExpireDay += "/" + tmpExpireDay
  2614. // }
  2615. //}
  2616. }
  2617. page := paging.GetPaging(currentIndex, pageSize, dataTotal)
  2618. resp := response.StackCompanyListResp{
  2619. Paging: page,
  2620. List: list,
  2621. NewCompanyTotal: newCompanyTotal,
  2622. RenewalCompanyTotal: renewalCompanyTotal,
  2623. NotRenewalCompanyTotal: notRenewalCompanyTotal,
  2624. NotRenewalTryOut: notRenewalTryOut,
  2625. NotRenewalNotTryOut: notRenewalNotTryOut,
  2626. }
  2627. return resp, err
  2628. }
  2629. // 获取今日的数据
  2630. func getTodayStackCompanyList(sysUser *system.Admin, currentIndex, pageSize int, adminId, regionType, companyType, dataType string) (returnData response.StackCompanyListResp, err error) {
  2631. var startSize int
  2632. if pageSize <= 0 {
  2633. pageSize = utils.PageSize20
  2634. }
  2635. if currentIndex <= 0 {
  2636. currentIndex = 1
  2637. }
  2638. startSize = utils.StartIndex(currentIndex, pageSize)
  2639. var condition, listCondition string
  2640. var pars, listPars []interface{}
  2641. today := utils.GetToday(utils.FormatDate)
  2642. //条件
  2643. if adminId != "" {
  2644. condition += ` AND c.seller_id in (` + adminId + `) `
  2645. //pars = append(pars, adminId)
  2646. } else {
  2647. //根据当前角色来获取查询条件
  2648. condition, pars = getQueryParams(condition, pars, sysUser, "c.")
  2649. }
  2650. if regionType != "" {
  2651. condition += ` AND b.region_type = ? `
  2652. pars = append(pars, regionType)
  2653. }
  2654. switch companyType {
  2655. case "ficc":
  2656. condition += ` AND a.product_id = ? `
  2657. pars = append(pars, 1)
  2658. case "权益":
  2659. condition += ` AND a.product_id = ? `
  2660. pars = append(pars, 2)
  2661. case "":
  2662. default:
  2663. err = errors.New("客户类型异常")
  2664. return
  2665. }
  2666. var dataTotal, newCompanyTotal, renewalCompanyTotal, notRenewalCompanyTotal int
  2667. //新签客户数
  2668. {
  2669. condition1 := condition
  2670. pars1 := pars
  2671. condition1 += ` AND c.status = "正式" AND a.start_date <= ? AND a.end_date >= ? `
  2672. pars1 = append(pars1, today, today)
  2673. condition1 += ` AND a.contract_type = ? `
  2674. pars1 = append(pars1, "新签合同")
  2675. total, countErr := models.GetIncrementalNewCompanyCount(condition1, pars1)
  2676. if countErr != nil && countErr.Error() != utils.ErrNoRow() {
  2677. err = countErr
  2678. return
  2679. }
  2680. newCompanyTotal = total
  2681. if dataType == "新签客户" {
  2682. //页表页数据总和
  2683. total, countErr := models.GetTodayStackCompanyProductCount(condition1, pars1)
  2684. if countErr != nil && countErr.Error() != utils.ErrNoRow() {
  2685. err = countErr
  2686. return
  2687. }
  2688. dataTotal = total
  2689. listCondition = condition1
  2690. listPars = pars1
  2691. }
  2692. }
  2693. //续约客户数
  2694. {
  2695. condition1 := condition
  2696. pars1 := pars
  2697. condition1 += ` AND c.status = "正式" `
  2698. condition1 += " AND a.end_date >= ?"
  2699. pars1 = append(pars1, today)
  2700. condition1 += ` AND a.contract_type = ? `
  2701. pars1 = append(pars1, "续约合同")
  2702. total, countErr := models.GetIncrementalNewCompanyCount(condition1, pars1)
  2703. if countErr != nil && countErr.Error() != utils.ErrNoRow() {
  2704. err = countErr
  2705. return
  2706. }
  2707. renewalCompanyTotal = total
  2708. if dataType == "续约客户" {
  2709. //页表页数据总和
  2710. total, countErr := models.GetTodayStackCompanyProductCount(condition1, pars1)
  2711. if countErr != nil && countErr.Error() != utils.ErrNoRow() {
  2712. err = countErr
  2713. return
  2714. }
  2715. dataTotal = total
  2716. listCondition = condition1
  2717. listPars = pars1
  2718. }
  2719. }
  2720. //未续约客户数
  2721. {
  2722. condition1 := condition
  2723. pars1 := pars
  2724. condition1 += ` AND c.status not in ("永续","正式") `
  2725. //condition1 += " AND a.end_date < ?"
  2726. //pars1 = append(pars1, today)
  2727. total, countErr := models.GetIncrementalNewCompanyCount(condition1, pars1)
  2728. if countErr != nil && countErr.Error() != utils.ErrNoRow() {
  2729. err = countErr
  2730. return
  2731. }
  2732. notRenewalCompanyTotal = total
  2733. if dataType == "未续约客户" {
  2734. //页表页数据总和
  2735. total, countErr := models.GetTodayStackCompanyProductCount(condition1, pars1)
  2736. if countErr != nil && countErr.Error() != utils.ErrNoRow() {
  2737. err = countErr
  2738. return
  2739. }
  2740. dataTotal = total
  2741. listCondition = condition1
  2742. listPars = pars1
  2743. }
  2744. }
  2745. list, countErr := models.GetTodayStackCompanyList(listCondition, listPars, startSize, pageSize)
  2746. if countErr != nil {
  2747. err = countErr
  2748. return
  2749. }
  2750. listLen := len(list)
  2751. //moreListMap := make(map[int][]*models.IncrementalList)
  2752. //获取其他产品数据
  2753. //if listLen > 0 {
  2754. // companyIdSlice := make([]string, 0)
  2755. // companyContractIdSlice := make([]string, 0)
  2756. // for _, v := range list {
  2757. // if v.Count > 1 {
  2758. // companyIdSlice = append(companyIdSlice, strconv.Itoa(v.CompanyId))
  2759. // companyContractIdSlice = append(companyContractIdSlice, strconv.Itoa(v.CompanyContractId))
  2760. // }
  2761. // }
  2762. //if len(companyIdSlice) > 0 {
  2763. // companyIds := strings.Join(companyIdSlice, ",")
  2764. // companyContractIds := strings.Join(companyContractIdSlice, ",")
  2765. // incrementalList2, list2Err := models.GetOtherIncrementalNewCompanyList(companyIds, companyContractIds, listCondition, listPars)
  2766. // //companyType
  2767. // if list2Err != nil {
  2768. // err = errors.New("获取其他产品失败,Err:" + list2Err.Error())
  2769. // return
  2770. // }
  2771. //
  2772. // for _, incremental := range incrementalList2 {
  2773. // moreListMap[incremental.CompanyId] = append(moreListMap[incremental.CompanyId], incremental)
  2774. // }
  2775. //}
  2776. //}
  2777. for i := 0; i < listLen; i++ {
  2778. item := list[i]
  2779. //剩余可用天数
  2780. expireDay := "0"
  2781. endDateTime, _ := time.Parse(utils.FormatDate, item.EndDate)
  2782. endDateTime = endDateTime.AddDate(0, 0, 1)
  2783. var sub time.Duration
  2784. if dataType != "未续约客户" {
  2785. sub = endDateTime.Sub(time.Now())
  2786. //if sub < 0 {
  2787. // sub = 0
  2788. //}
  2789. } else {
  2790. sub = time.Now().Sub(endDateTime)
  2791. }
  2792. expireDay = fmt.Sprintf("%v", int(sub.Hours()/24))
  2793. list[i].ExpireDay = expireDay
  2794. //其他产品数据拼接
  2795. //if otherCompanyProductList, ok := moreListMap[item.CompanyId]; ok {
  2796. // for _, otherCompanyProduct := range otherCompanyProductList {
  2797. // list[i].ProductName += "/" + otherCompanyProduct.ProductName
  2798. // list[i].SellerName += "/" + otherCompanyProduct.SellerName
  2799. // list[i].StartDate += "/" + otherCompanyProduct.StartDate
  2800. // list[i].EndDate += "/" + otherCompanyProduct.EndDate
  2801. //
  2802. // tmpExpireDay := "0"
  2803. // endDateTime, _ := time.Parse(utils.FormatDate, otherCompanyProduct.EndDate)
  2804. // endDateTime = endDateTime.AddDate(0, 0, 1)
  2805. // var sub time.Duration
  2806. // if dataType != "未续约客户" {
  2807. // sub = endDateTime.Sub(time.Now())
  2808. // //if sub < 0 {
  2809. // // sub = 0
  2810. // //}
  2811. // } else {
  2812. // sub = time.Now().Sub(endDateTime)
  2813. // }
  2814. // tmpExpireDay = fmt.Sprintf("%v", int(sub.Hours()/24))
  2815. //
  2816. // list[i].ExpireDay += "/" + tmpExpireDay
  2817. // }
  2818. //}
  2819. }
  2820. var stackCompanyStatisticList []*models.StackCompanyStatisticList
  2821. for _, v := range list {
  2822. stackCompanyStatistic := models.StackCompanyStatisticList{
  2823. Type: dataType,
  2824. CompanyId: v.CompanyId,
  2825. CompanyName: v.CompanyName,
  2826. ProductId: v.ProductId,
  2827. ProductName: v.ProductName,
  2828. ContractNum: v.Count,
  2829. SellerId: v.SellerId,
  2830. SellerName: v.SellerName,
  2831. Date: today,
  2832. StartDate: v.StartDate,
  2833. EndDate: v.EndDate,
  2834. RegionType: v.RegionType,
  2835. //CreateTime :v.CreateTime,
  2836. CreateTimeStr: v.CreateTime,
  2837. ExpireDay: v.ExpireDay,
  2838. }
  2839. stackCompanyStatisticList = append(stackCompanyStatisticList, &stackCompanyStatistic)
  2840. }
  2841. page := paging.GetPaging(currentIndex, pageSize, dataTotal)
  2842. resp := response.StackCompanyListResp{
  2843. Paging: page,
  2844. List: stackCompanyStatisticList,
  2845. NewCompanyTotal: newCompanyTotal,
  2846. RenewalCompanyTotal: renewalCompanyTotal,
  2847. NotRenewalCompanyTotal: notRenewalCompanyTotal,
  2848. }
  2849. return resp, err
  2850. }
  2851. func getTodayStackCompanyListV2(sysUser *system.Admin, currentIndex, pageSize, isConfirm, companyAscribeId int, adminId, regionType, companyType, dataType, tryOutType, keyword string) (returnData response.StackCompanyListResp, err error) {
  2852. var startSize int
  2853. if pageSize <= 0 {
  2854. pageSize = utils.PageSize20
  2855. }
  2856. if currentIndex <= 0 {
  2857. currentIndex = 1
  2858. }
  2859. startSize = utils.StartIndex(currentIndex, pageSize)
  2860. var condition, listCondition string
  2861. var pars, listPars []interface{}
  2862. today := utils.GetToday(utils.FormatDate)
  2863. //条件
  2864. var conditionAscribRai string // 处理权益未续约客户检索列表SQL查询条件
  2865. var parsAscribeRai []interface{}
  2866. //是否确认续约 CRM 13.9
  2867. if isConfirm != -1 {
  2868. var conditionConfirm string
  2869. var parsConfirm []interface{}
  2870. companyConfirmList, e := company.GetCompanyNoRenewedAscribeList(conditionConfirm, parsConfirm, 0, 0)
  2871. if e != nil && e.Error() != utils.ErrNoRow() {
  2872. err = errors.New("GetCompanyNoRenewedAscribeList" + e.Error())
  2873. return
  2874. }
  2875. var companyIds []int
  2876. if len(companyConfirmList) == 0 {
  2877. companyIds = append(companyIds, 0) // 给一个不存在的ID
  2878. } else {
  2879. for _, v := range companyConfirmList {
  2880. companyIds = append(companyIds, v.CompanyId)
  2881. }
  2882. }
  2883. if isConfirm == 0 {
  2884. conditionAscribRai += ` AND ( c.company_id NOT IN (` + utils.GetOrmInReplace(len(companyIds)) + `) AND c.product_id = 2 ) ` // 待确认
  2885. } else {
  2886. conditionAscribRai += ` AND ( c.company_id IN (` + utils.GetOrmInReplace(len(companyIds)) + `) OR c.product_id = 2 )` // 已确认
  2887. }
  2888. parsAscribeRai = append(parsAscribeRai, companyIds)
  2889. }
  2890. //归因ID CRM 13.9
  2891. if companyAscribeId > 0 {
  2892. var conditionAscribe string
  2893. var parsAscribe []interface{}
  2894. conditionAscribe = " AND company_ascribe_id = ? "
  2895. parsAscribe = append(parsAscribe, companyAscribeId)
  2896. companyNoRenewedAscribeList, e := company.GetCompanyNoRenewedAscribeList(conditionAscribe, parsAscribe, 0, 0)
  2897. if e != nil && e.Error() != utils.ErrNoRow() {
  2898. err = errors.New("GetCompanyNoRenewedAscribeList" + e.Error())
  2899. return
  2900. }
  2901. var companyIds []int
  2902. if len(companyNoRenewedAscribeList) == 0 {
  2903. companyIds = append(companyIds, 0) // 给一个不存在的ID
  2904. } else {
  2905. for _, v := range companyNoRenewedAscribeList {
  2906. companyIds = append(companyIds, v.CompanyId)
  2907. }
  2908. }
  2909. conditionAscribRai += ` AND c.company_id IN (` + utils.GetOrmInReplace(len(companyIds)) + `)`
  2910. parsAscribeRai = append(parsAscribeRai, companyIds)
  2911. }
  2912. if adminId != "" {
  2913. condition += ` AND c.seller_id in (` + adminId + `) `
  2914. //pars = append(pars, adminId)
  2915. } else {
  2916. //根据当前角色来获取查询条件
  2917. condition, pars = getQueryParams(condition, pars, sysUser, "c.")
  2918. }
  2919. if regionType != "" {
  2920. condition += ` AND b.region_type = ? `
  2921. pars = append(pars, regionType)
  2922. }
  2923. //关键字搜索
  2924. if keyword != "" {
  2925. condition += ` and b.company_name like "%` + keyword + `%" `
  2926. }
  2927. switch companyType {
  2928. case "ficc":
  2929. condition += ` AND a.product_id = ? `
  2930. pars = append(pars, 1)
  2931. case "权益":
  2932. condition += ` AND a.product_id = ? `
  2933. pars = append(pars, 2)
  2934. case "":
  2935. default:
  2936. err = errors.New("客户类型异常")
  2937. return
  2938. }
  2939. var dataTotal, newCompanyTotal, renewalCompanyTotal, notRenewalCompanyTotal int
  2940. var notRenewalTryOut, notRenewalNotTryOut int
  2941. var list []*models.IncrementalList
  2942. //新签客户数
  2943. {
  2944. condition1 := condition
  2945. pars1 := pars
  2946. //condition1 += ` AND c.status = "正式" `
  2947. condition1 += ` AND a.start_date <= ? AND a.end_date >= ? `
  2948. pars1 = append(pars1, today, today)
  2949. condition1 += ` AND a.contract_type = ? `
  2950. pars1 = append(pars1, "新签合同")
  2951. total, countErr := models.GetIncrementalNewCompanyCount(condition1, pars1)
  2952. if countErr != nil && countErr.Error() != utils.ErrNoRow() {
  2953. err = countErr
  2954. return
  2955. }
  2956. newCompanyTotal = total
  2957. if dataType == "新签客户" {
  2958. //页表页数据总和
  2959. total, countErr := models.GetTodayStackCompanyProductCount(condition1, pars1)
  2960. if countErr != nil && countErr.Error() != utils.ErrNoRow() {
  2961. err = countErr
  2962. return
  2963. }
  2964. dataTotal = total
  2965. listCondition = condition1
  2966. listPars = pars1
  2967. }
  2968. }
  2969. //续约客户数
  2970. {
  2971. condition1 := condition
  2972. pars1 := pars
  2973. //condition1 += ` AND c.status = "正式" `
  2974. condition1 += ` AND a.start_date <= ? AND a.end_date >= ? `
  2975. pars1 = append(pars1, today, today)
  2976. condition1 += ` AND a.contract_type = ? `
  2977. pars1 = append(pars1, "续约合同")
  2978. //额外条件(续约合同的起始日期包含在所选时间段内且不包含在新签合同存续期内的客户)
  2979. pars1 = append(pars1, today)
  2980. total, countErr := models.GetIncrementalNewCompanyCountV2(condition1, pars1)
  2981. if countErr != nil && countErr.Error() != utils.ErrNoRow() {
  2982. err = countErr
  2983. return
  2984. }
  2985. renewalCompanyTotal = total
  2986. if dataType == "续约客户" {
  2987. //页表页数据总和
  2988. total, countErr := models.GetTodayStackCompanyProductCountV2(condition1, pars1)
  2989. if countErr != nil && countErr.Error() != utils.ErrNoRow() {
  2990. err = countErr
  2991. return
  2992. }
  2993. dataTotal = total
  2994. listCondition = condition1
  2995. listPars = pars1
  2996. }
  2997. }
  2998. //未续约客户数
  2999. {
  3000. condition1 := condition
  3001. pars1 := pars
  3002. condition1 += ` AND c.status not in ("永续","正式") AND a.create_time <= ? `
  3003. pars1 = append(pars1, time.Now().Format(utils.FormatDateTime))
  3004. condition1 += ` AND a.operation = 'try_out' `
  3005. total, countErr := models.GetIncrementalCompanyCountByOperationRecord(condition1, pars1)
  3006. if countErr != nil && countErr.Error() != utils.ErrNoRow() {
  3007. err = countErr
  3008. return
  3009. }
  3010. notRenewalCompanyTotal = total
  3011. condition1 += conditionAscribRai
  3012. pars1 = append(pars1, parsAscribeRai)
  3013. if dataType == "未续约客户" {
  3014. //页表页数据总和
  3015. //统计数据
  3016. for _, v := range []string{"试用", "非试用"} {
  3017. totalCondition1 := condition1
  3018. totalPars1 := pars1
  3019. var tmpTotal int
  3020. if v == "试用" {
  3021. totalCondition1 += ` AND c.status = "试用" `
  3022. tmpTotal, err = models.GetIncrementalCompanyProductCountByOperationRecord(totalCondition1, totalPars1)
  3023. if err != nil {
  3024. return
  3025. }
  3026. notRenewalTryOut = tmpTotal
  3027. } else if v == "非试用" {
  3028. totalCondition1 += ` AND c.status IN ("冻结","流失") `
  3029. tmpTotal, err = models.GetIncrementalCompanyProductCountByOperationRecord(totalCondition1, totalPars1)
  3030. if err != nil && err.Error() != utils.ErrNoRow() {
  3031. return
  3032. }
  3033. notRenewalNotTryOut = tmpTotal
  3034. }
  3035. }
  3036. //列表数据数量
  3037. if tryOutType == "试用" {
  3038. condition1 += ` AND c.status = "试用" `
  3039. total = notRenewalTryOut
  3040. } else if tryOutType == "非试用" {
  3041. condition1 += ` AND c.status IN ("冻结","流失") `
  3042. total = notRenewalNotTryOut
  3043. }
  3044. //total, countErr := models.GetIncrementalCompanyProductCountByOperationRecord(condition1, pars1)
  3045. //if countErr != nil && countErr.Error() != utils.ErrNoRow() {
  3046. // err = countErr
  3047. // return
  3048. //}
  3049. dataTotal = total
  3050. listCondition = condition1
  3051. listPars = pars1
  3052. if tryOutType == "试用" {
  3053. listCondition += ` AND c.status = "试用" `
  3054. } else if tryOutType == "非试用" {
  3055. listCondition += ` AND c.status IN ("冻结","流失") `
  3056. }
  3057. tmpList, countErr := models.GetIncrementalCompanyListByOperationRecord(listCondition, listPars, startSize, pageSize)
  3058. if countErr != nil {
  3059. err = countErr
  3060. return
  3061. }
  3062. for i := 0; i < len(tmpList); i++ {
  3063. endDateTime, parseErr := time.Parse(utils.FormatDateTime, tmpList[i].CreateTime)
  3064. if parseErr != nil {
  3065. err = parseErr
  3066. return
  3067. }
  3068. tmpList[i].EndDate = endDateTime.Format(utils.FormatDate)
  3069. }
  3070. list = tmpList
  3071. }
  3072. }
  3073. switch dataType {
  3074. case "新签客户":
  3075. tmpList, countErr := models.GetTodayStackCompanyList(listCondition, listPars, startSize, pageSize)
  3076. if countErr != nil {
  3077. err = countErr
  3078. return
  3079. }
  3080. list = tmpList
  3081. case "续约客户":
  3082. tmpList, countErr := models.GetTodayStackCompanyListV2(listCondition, listPars, startSize, pageSize)
  3083. if countErr != nil {
  3084. err = countErr
  3085. return
  3086. }
  3087. list = tmpList
  3088. }
  3089. if dataType == "续约客户" {
  3090. var ids []string
  3091. oldCompanyMap := make(map[int]*models.IncrementalList)
  3092. oldMoneyMap := make(map[int]float64)
  3093. countMap := make(map[int]int)
  3094. for _, item := range list {
  3095. ids = append(ids, strconv.Itoa(item.CompanyId))
  3096. }
  3097. if len(ids) > 0 {
  3098. idStr := strings.Join(ids, ",")
  3099. lists, contractErr := models.GetLastContractMoney(idStr)
  3100. if contractErr != nil {
  3101. err = contractErr
  3102. return
  3103. }
  3104. for _, item := range lists {
  3105. _, countOk := countMap[item.CompanyId]
  3106. _, ok := oldCompanyMap[item.CompanyId]
  3107. if !ok {
  3108. oldCompanyMap[item.CompanyId] = item
  3109. oldMoneyMap[item.CompanyId] = item.Money
  3110. } else if !countOk {
  3111. countMap[item.CompanyId] = 1
  3112. oldCompanyMap[item.CompanyId] = item
  3113. }
  3114. }
  3115. //给list赋值
  3116. for _, item := range list {
  3117. if item.ProductName == "权益" {
  3118. oldMoney, _ := oldMoneyMap[item.CompanyId]
  3119. lastContract, _ := oldCompanyMap[item.CompanyId]
  3120. if oldMoney > lastContract.Money {
  3121. item.PackageDifference = "增加套餐"
  3122. } else if oldMoney < lastContract.Money {
  3123. item.PackageDifference = "减少套餐"
  3124. } else {
  3125. item.PackageDifference = "维持套餐"
  3126. }
  3127. }
  3128. }
  3129. }
  3130. }
  3131. var ascribecompanyIds []int
  3132. for _, item := range list {
  3133. ascribecompanyIds = append(ascribecompanyIds, item.CompanyId)
  3134. }
  3135. //归因标签
  3136. mapGetCompanyAscribeContent, mapContent := services.GetCompanyAscribeContentMap(ascribecompanyIds)
  3137. mapNoRenewedNote := services.GetCompanyNoRenewedNoteMap(ascribecompanyIds)
  3138. for _, item := range list {
  3139. item.AscribeContent = mapGetCompanyAscribeContent[fmt.Sprint("CID_", item.CompanyId, "PID_", item.ProductId)]
  3140. item.Content = mapContent[fmt.Sprint("CID_", item.CompanyId, "PID_", item.ProductId)]
  3141. item.IsShowNoRenewedNote = mapNoRenewedNote[fmt.Sprint("CID_", item.CompanyId, "PID_", item.ProductId)]
  3142. }
  3143. listLen := len(list)
  3144. for i := 0; i < listLen; i++ {
  3145. item := list[i]
  3146. //剩余可用天数
  3147. expireDay := "0"
  3148. endDateTime, _ := time.Parse(utils.FormatDate, item.EndDate)
  3149. var sub time.Duration
  3150. if dataType != "未续约客户" {
  3151. endDateTime = endDateTime.AddDate(0, 0, 1)
  3152. sub = endDateTime.Sub(time.Now())
  3153. //if sub < 0 {
  3154. // sub = 0
  3155. //}
  3156. } else {
  3157. sub = time.Now().Sub(endDateTime)
  3158. }
  3159. expireDay = fmt.Sprintf("%v", int(sub.Hours()/24))
  3160. list[i].ExpireDay = expireDay
  3161. }
  3162. var stackCompanyStatisticList []*models.StackCompanyStatisticList
  3163. for _, v := range list {
  3164. stackCompanyStatistic := models.StackCompanyStatisticList{
  3165. Type: dataType,
  3166. CompanyId: v.CompanyId,
  3167. CompanyName: v.CompanyName,
  3168. ProductId: v.ProductId,
  3169. ProductName: v.ProductName,
  3170. ContractNum: v.Count,
  3171. SellerId: v.SellerId,
  3172. SellerName: v.SellerName,
  3173. Date: today,
  3174. StartDate: v.StartDate,
  3175. EndDate: v.EndDate,
  3176. RegionType: v.RegionType,
  3177. //CreateTime :v.CreateTime,
  3178. CreateTimeStr: v.CreateTime,
  3179. ExpireDay: v.ExpireDay,
  3180. RenewalReason: v.RenewalReason,
  3181. RenewalTodo: v.RenewalTodo,
  3182. Status: v.Status,
  3183. PackageDifference: v.PackageDifference,
  3184. AscribeContent: v.AscribeContent,
  3185. IsShowNoRenewedNote: v.IsShowNoRenewedNote,
  3186. Content: v.Content,
  3187. }
  3188. stackCompanyStatisticList = append(stackCompanyStatisticList, &stackCompanyStatistic)
  3189. }
  3190. page := paging.GetPaging(currentIndex, pageSize, dataTotal)
  3191. resp := response.StackCompanyListResp{
  3192. Paging: page,
  3193. List: stackCompanyStatisticList,
  3194. NewCompanyTotal: newCompanyTotal,
  3195. RenewalCompanyTotal: renewalCompanyTotal,
  3196. NotRenewalCompanyTotal: notRenewalCompanyTotal,
  3197. NotRenewalTryOut: notRenewalTryOut,
  3198. NotRenewalNotTryOut: notRenewalNotTryOut,
  3199. }
  3200. return resp, err
  3201. }
  3202. // IncrementalCompanyList
  3203. // @Title 获取增量客户数据列表
  3204. // @Description 获取增量客户数据列表接口
  3205. // @Param PageSize query int true "每页数据条数"
  3206. // @Param CurrentIndex query int true "当前页页码,从1开始"
  3207. // @Param Keyword query string true "客户名称"
  3208. // @Param CompanyType query string true "客户类型:传空字符串或者不传为全部,'ficc','权益'"
  3209. // @Param AdminId query string true "销售id,多个用英文逗号隔开,空字符串为全部"
  3210. // @Param RegionType query string false "所属区域:传空字符串或者不传为全部,'国内','海外'"
  3211. // @Param StartDate query string false "开始日期"
  3212. // @Param EndDate query string false "结束日期"
  3213. // @Param DataType query string false "报表类型,枚举值:`新增试用`,`新签客户`,`续约客户`,`未续约客户`"
  3214. // @Param TryOutType query string false " '试用', '非试用' 非试用即为冻结/流失"
  3215. // @Param IsExport query bool false "是否导出excel,默认是false"
  3216. // @Param IsConfirm query int false "是否确认续约: -1-默认全部; 0-待确认; 1-已确认"
  3217. // @Param CompanyAscribeId query int false "归因ID"
  3218. // @Success 200 {object} response.IncrementalCompanyListResp
  3219. // @router /incremental_company_list [get]
  3220. func (this *StatisticReportController) IncrementalCompanyList() {
  3221. br := new(models.BaseResponse).Init()
  3222. defer func() {
  3223. this.Data["json"] = br
  3224. this.ServeJSON()
  3225. }()
  3226. sysUser := this.SysUser
  3227. if sysUser == nil {
  3228. br.Msg = "请登录"
  3229. br.ErrMsg = "请登录,SysUser Is Empty"
  3230. br.Ret = 408
  3231. return
  3232. }
  3233. pageSize, _ := this.GetInt("PageSize")
  3234. currentIndex, _ := this.GetInt("CurrentIndex")
  3235. adminId := this.GetString("AdminId")
  3236. regionType := this.GetString("RegionType")
  3237. companyType := this.GetString("CompanyType")
  3238. dataType := this.GetString("DataType")
  3239. tryOutType := this.GetString("TryOutType")
  3240. keyword := this.GetString("Keyword")
  3241. startDate := this.GetString("StartDate")
  3242. endDate := this.GetString("EndDate")
  3243. isConfirm, _ := this.GetInt("IsConfirm", -1) // CRM 13.9
  3244. companyAscribeId, _ := this.GetInt("CompanyAscribeId", -1) // CRM 13.9
  3245. //if startDate == "" || endDate == "" {
  3246. // br.Msg = "获取失败,开始日期或结束日期未传"
  3247. // br.ErrMsg = "获取失败,开始日期或结束日期未传"
  3248. // return
  3249. //}
  3250. if startDate == "" {
  3251. startDate = "2015-01-01"
  3252. }
  3253. if endDate == "" {
  3254. endDate = time.Now().Format(utils.FormatDate)
  3255. }
  3256. var startSize int
  3257. if pageSize <= 0 {
  3258. pageSize = utils.PageSize20
  3259. }
  3260. if currentIndex <= 0 {
  3261. currentIndex = 1
  3262. }
  3263. startSize = utils.StartIndex(currentIndex, pageSize)
  3264. //是否导出报表
  3265. isExport, _ := this.GetBool("IsExport")
  3266. if isExport {
  3267. pageSize = 10000
  3268. currentIndex = 1
  3269. }
  3270. var condition string
  3271. var pars []interface{}
  3272. //条件
  3273. if adminId != "" {
  3274. condition += ` AND c.seller_id in (` + adminId + `) `
  3275. //pars = append(pars, adminId)
  3276. } else {
  3277. //根据当前角色来获取查询条件
  3278. condition, pars = getQueryParams(condition, pars, sysUser, "c.")
  3279. }
  3280. if regionType != "" {
  3281. condition += ` AND b.region_type = ? `
  3282. pars = append(pars, regionType)
  3283. }
  3284. //关键字搜索
  3285. if keyword != "" {
  3286. condition += ` and b.company_name like "%` + keyword + `%" `
  3287. }
  3288. var conditionAscribRai string // 处理权益未续约客户检索列表SQL查询条件
  3289. var conditionAscribRaiTotal string // 处理权益未续约客户总量查询条件
  3290. var parsAscribeRai []interface{}
  3291. var parsAscribeRaiTotal []interface{} // 处理权益未续约客户总量查询条件
  3292. var conditionConfirm string
  3293. var parsConfirm []interface{}
  3294. companyConfirmList, err := company.GetCompanyNoRenewedAscribeList(conditionConfirm, parsConfirm, 0, 0)
  3295. if err != nil && err.Error() != utils.ErrNoRow() {
  3296. br.Msg = "获取失败"
  3297. br.ErrMsg = "获取失败,GetCompanyNoRenewedAscribeList Err:" + err.Error()
  3298. return
  3299. }
  3300. var noRenewedcompanyIds []int //已经确定未续约的公司ID
  3301. if len(companyConfirmList) == 0 {
  3302. noRenewedcompanyIds = append(noRenewedcompanyIds, 0) // 给一个不存在的ID
  3303. } else {
  3304. for _, v := range companyConfirmList {
  3305. noRenewedcompanyIds = append(noRenewedcompanyIds, v.CompanyId)
  3306. }
  3307. }
  3308. //是否确认续约 CRM 13.9
  3309. conditionAscribRaiTotal += ` AND ( c.company_id IN (` + utils.GetOrmInReplace(len(noRenewedcompanyIds)) + `) OR c.product_id = 1 OR a.create_time < '2023-01-01' ) ` // 已确认
  3310. parsAscribeRaiTotal = append(parsAscribeRaiTotal, noRenewedcompanyIds)
  3311. if isConfirm != -1 {
  3312. if isConfirm == 0 {
  3313. conditionAscribRai += ` AND ( c.company_id NOT IN (` + utils.GetOrmInReplace(len(noRenewedcompanyIds)) + `) AND c.product_id = 2 AND a.create_time >= '2023-01-01' ) ` // 待确认
  3314. } else {
  3315. conditionAscribRai += ` AND ( c.company_id IN (` + utils.GetOrmInReplace(len(noRenewedcompanyIds)) + `) OR c.product_id = 1 OR a.create_time < '2023-01-01' ) ` // 已确认
  3316. }
  3317. parsAscribeRai = append(parsAscribeRai, noRenewedcompanyIds)
  3318. }
  3319. //归因ID CRM 13.9
  3320. if companyAscribeId > 0 {
  3321. var conditionAscribe string
  3322. var parsAscribe []interface{}
  3323. conditionAscribe = " AND company_ascribe_id = ? "
  3324. parsAscribe = append(parsAscribe, companyAscribeId)
  3325. companyNoRenewedAscribeList, err := company.GetCompanyNoRenewedAscribeList(conditionAscribe, parsAscribe, 0, 0)
  3326. if err != nil && err.Error() != utils.ErrNoRow() {
  3327. br.Msg = "获取失败"
  3328. br.ErrMsg = "获取失败,GetCompanyNoRenewedAscribeList Err:" + err.Error()
  3329. return
  3330. }
  3331. var companyIds []int
  3332. if len(companyNoRenewedAscribeList) == 0 {
  3333. companyIds = append(companyIds, 0) // 给一个不存在的ID
  3334. } else {
  3335. for _, v := range companyNoRenewedAscribeList {
  3336. companyIds = append(companyIds, v.CompanyId)
  3337. }
  3338. }
  3339. conditionAscribRai += ` AND c.company_id IN (` + utils.GetOrmInReplace(len(companyIds)) + `)`
  3340. parsAscribeRai = append(parsAscribeRai, companyIds)
  3341. }
  3342. switch companyType {
  3343. case "ficc":
  3344. condition += ` AND c.product_id = ? `
  3345. pars = append(pars, 1)
  3346. case "权益":
  3347. condition += ` AND c.product_id = ? `
  3348. pars = append(pars, 2)
  3349. case "":
  3350. default:
  3351. br.Msg = "获取失败,客户类型异常"
  3352. br.ErrMsg = "获取失败,客户类型异常"
  3353. return
  3354. }
  3355. var list []*models.IncrementalList
  3356. //moreListMap := make(map[int][]*models.IncrementalList)
  3357. var dataTotal, trialTotal, newCompanyTotal, renewalCompanyTotal, notRenewalCompanyTotal int
  3358. var notRenewalTryOut, notRenewalNotTryOut int
  3359. //试用客户数
  3360. {
  3361. condition1 := condition
  3362. pars1 := pars
  3363. condition1 += ` AND a.create_time >= ? AND a.create_time <= ? AND a.operation in ("add","receive") `
  3364. pars1 = append(pars1, startDate, endDate)
  3365. total, err := models.GetIncrementalCompanyCountByOperationRecord(condition1, pars1)
  3366. if err != nil && err.Error() != utils.ErrNoRow() {
  3367. br.Msg = "获取失败"
  3368. br.ErrMsg = "获取失败,Err:" + err.Error()
  3369. return
  3370. }
  3371. trialTotal = total
  3372. if dataType == "新增试用" {
  3373. //列表数据数量
  3374. total, err := models.GetIncrementalCompanyProductCountByOperationRecord(condition1, pars1)
  3375. if err != nil && err.Error() != utils.ErrNoRow() {
  3376. br.Msg = "获取失败"
  3377. br.ErrMsg = "获取失败,Err:" + err.Error()
  3378. return
  3379. }
  3380. //列表页数据
  3381. tmpList, err := models.GetIncrementalCompanyListByOperationRecord(condition1, pars1, startSize, pageSize)
  3382. if err != nil {
  3383. br.Msg = "获取失败"
  3384. br.ErrMsg = "获取失败,Err:" + err.Error()
  3385. return
  3386. }
  3387. list = tmpList
  3388. dataTotal = total
  3389. }
  3390. }
  3391. //新签客户数
  3392. {
  3393. condition1 := condition
  3394. pars1 := pars
  3395. condition1 += ` AND a.start_date >= ? AND a.start_date <= ? `
  3396. pars1 = append(pars1, startDate, endDate)
  3397. condition1 += ` AND a.contract_type = ? `
  3398. pars1 = append(pars1, "新签合同")
  3399. total, err := models.GetIncrementalNewCompanyCount(condition1, pars1)
  3400. if err != nil && err.Error() != utils.ErrNoRow() {
  3401. br.Msg = "获取失败"
  3402. br.ErrMsg = "获取失败,Err:" + err.Error()
  3403. return
  3404. }
  3405. newCompanyTotal = total
  3406. if dataType == "新签客户" {
  3407. //列表数据数量
  3408. total, err := models.GetIncrementalNewCompanyProductCount(condition1, pars1)
  3409. if err != nil && err.Error() != utils.ErrNoRow() {
  3410. br.Msg = "获取失败"
  3411. br.ErrMsg = "获取失败,Err:" + err.Error()
  3412. return
  3413. }
  3414. //列表页数据
  3415. tmpList, err := models.GetIncrementalNewCompanyList(condition1, pars1, startSize, pageSize)
  3416. if err != nil {
  3417. br.Msg = "获取失败"
  3418. br.ErrMsg = "获取失败,Err:" + err.Error()
  3419. return
  3420. }
  3421. list = tmpList
  3422. dataTotal = total
  3423. //获取其他产品
  3424. //if len(list) > 0 {
  3425. // companyIdSlice := make([]string, 0)
  3426. // companyContractIdSlice := make([]string, 0)
  3427. // for _, v := range list {
  3428. // if v.Count > 1 {
  3429. // companyIdSlice = append(companyIdSlice, strconv.Itoa(v.CompanyId))
  3430. // companyContractIdSlice = append(companyContractIdSlice, strconv.Itoa(v.CompanyContractId))
  3431. // }
  3432. // }
  3433. // if len(companyIdSlice) > 0 {
  3434. // companyIds := strings.Join(companyIdSlice, ",")
  3435. // companyContractIds := strings.Join(companyContractIdSlice, ",")
  3436. // otherList, otherListErr := models.GetOtherIncrementalNewCompanyList(companyIds, companyContractIds, condition1, pars1)
  3437. // //companyType
  3438. // if otherListErr != nil {
  3439. // br.Msg = "获取其他产品失败"
  3440. // br.ErrMsg = "获取其他产品失败,Err:" + otherListErr.Error()
  3441. // return
  3442. // }
  3443. //
  3444. // for _, otherCompanyContract := range otherList {
  3445. // moreListMap[otherCompanyContract.CompanyId] = append(moreListMap[otherCompanyContract.CompanyId], otherCompanyContract)
  3446. // }
  3447. // }
  3448. //}
  3449. }
  3450. }
  3451. //续约客户数
  3452. {
  3453. condition1 := condition
  3454. pars1 := pars
  3455. condition1 += ` AND a.start_date >= ? AND a.start_date <= ? `
  3456. pars1 = append(pars1, startDate, endDate)
  3457. condition1 += ` AND a.contract_type = ? `
  3458. pars1 = append(pars1, "续约合同")
  3459. //额外条件(续约合同的起始日期包含在所选时间段内且不包含在新签合同存续期内的客户)
  3460. pars1 = append(pars1, endDate)
  3461. total, err := models.GetIncrementalNewCompanyCountV2(condition1, pars1)
  3462. if err != nil && err.Error() != utils.ErrNoRow() {
  3463. br.Msg = "获取失败"
  3464. br.ErrMsg = "获取失败,Err:" + err.Error()
  3465. return
  3466. }
  3467. renewalCompanyTotal = total
  3468. if dataType == "续约客户" {
  3469. //列表数据数量
  3470. total, err := models.GetIncrementalNewCompanyProductCountV2(condition1, pars1)
  3471. if err != nil && err.Error() != utils.ErrNoRow() {
  3472. br.Msg = "获取失败"
  3473. br.ErrMsg = "获取失败,Err:" + err.Error()
  3474. return
  3475. }
  3476. //列表页数据
  3477. tmpList, err := models.GetIncrementalNewCompanyListV2(condition1, pars1, startSize, pageSize)
  3478. if err != nil {
  3479. br.Msg = "获取失败"
  3480. br.ErrMsg = "获取失败,Err:" + err.Error()
  3481. return
  3482. }
  3483. list = tmpList
  3484. dataTotal = total
  3485. var ids []string
  3486. companyMap := make(map[int]*models.IncrementalList)
  3487. oldCompanyMap := make(map[int]*models.IncrementalList)
  3488. countMap := make(map[int]int)
  3489. for _, item := range tmpList {
  3490. ids = append(ids, strconv.Itoa(item.CompanyId))
  3491. companyMap[item.CompanyId] = item
  3492. }
  3493. if len(ids) > 0 {
  3494. idStr := strings.Join(ids, ",")
  3495. lists, err := models.GetLastContractMoney(idStr)
  3496. if err != nil {
  3497. br.Msg = "获取失败"
  3498. br.ErrMsg = "获取失败,Err:" + err.Error()
  3499. return
  3500. }
  3501. for _, item := range lists {
  3502. _, countOk := countMap[item.CompanyId]
  3503. _, ok := oldCompanyMap[item.CompanyId]
  3504. if !ok {
  3505. oldCompanyMap[item.CompanyId] = item
  3506. } else if !countOk {
  3507. countMap[item.CompanyId] = 1
  3508. oldCompanyMap[item.CompanyId] = item
  3509. }
  3510. }
  3511. //给list赋值
  3512. for _, item := range list {
  3513. if item.ProductName == "权益" {
  3514. lastContract, _ := oldCompanyMap[item.CompanyId]
  3515. if item.Money > lastContract.Money {
  3516. item.PackageDifference = "增加套餐"
  3517. } else if item.Money < lastContract.Money {
  3518. item.PackageDifference = "减少套餐"
  3519. } else {
  3520. item.PackageDifference = "维持套餐"
  3521. }
  3522. }
  3523. }
  3524. }
  3525. //获取其他产品
  3526. //if len(list) > 0 {
  3527. // companyIdSlice := make([]string, 0)
  3528. // companyContractIdSlice := make([]string, 0)
  3529. // for _, v := range list {
  3530. // if v.Count > 1 {
  3531. // companyIdSlice = append(companyIdSlice, strconv.Itoa(v.CompanyId))
  3532. // companyContractIdSlice = append(companyContractIdSlice, strconv.Itoa(v.CompanyContractId))
  3533. // }
  3534. // }
  3535. // if len(companyIdSlice) > 0 {
  3536. // companyIds := strings.Join(companyIdSlice, ",")
  3537. // companyContractIds := strings.Join(companyContractIdSlice, ",")
  3538. // otherList, otherListErr := models.GetOtherIncrementalNewCompanyList(companyIds, companyContractIds, condition1, pars1)
  3539. // //companyType
  3540. // if otherListErr != nil {
  3541. // br.Msg = "获取其他产品失败"
  3542. // br.ErrMsg = "获取其他产品失败,Err:" + otherListErr.Error()
  3543. // return
  3544. // }
  3545. //
  3546. // for _, otherCompanyContract := range otherList {
  3547. // moreListMap[otherCompanyContract.CompanyId] = append(moreListMap[otherCompanyContract.CompanyId], otherCompanyContract)
  3548. // }
  3549. // }
  3550. //}
  3551. }
  3552. }
  3553. //未续约客户数
  3554. {
  3555. condition1 := condition
  3556. pars1 := pars
  3557. endDateTime, err := time.Parse(utils.FormatDate, endDate)
  3558. if err != nil {
  3559. br.Msg = "结束时间异常"
  3560. br.ErrMsg = "获取失败,Err:" + err.Error()
  3561. return
  3562. }
  3563. //选择的日期加一天的原因是因为:筛选条件是截止到时分秒的,如果要把选择的这一天也统计进去,那么需要在选择的结束日期基础上加上一天
  3564. tryOutEndDate := endDateTime.AddDate(0, 0, 1).Format(utils.FormatDate)
  3565. condition1 += ` AND a.create_time >= ? AND a.create_time < ? `
  3566. pars1 = append(pars1, startDate, tryOutEndDate)
  3567. condition1 += ` AND a.operation = ? `
  3568. pars1 = append(pars1, "try_out")
  3569. condition1 += ` AND c.status not in ("永续","正式","关闭") `
  3570. //未续约这里只统计已经确定的
  3571. notRenewalCondition := condition1
  3572. notRenewalPars := pars1
  3573. notRenewalCondition += conditionAscribRaiTotal
  3574. notRenewalPars = append(notRenewalPars, parsAscribeRaiTotal)
  3575. total, err := models.GetIncrementalCompanyProductCountByOperationRecord(notRenewalCondition, notRenewalPars)
  3576. if err != nil && err.Error() != utils.ErrNoRow() {
  3577. br.Msg = "获取失败"
  3578. br.ErrMsg = "获取失败,Err:" + err.Error()
  3579. return
  3580. }
  3581. notRenewalCompanyTotal = total
  3582. condition1 += conditionAscribRai
  3583. pars1 = append(pars1, parsAscribeRai)
  3584. if dataType == "未续约客户" {
  3585. //统计数据
  3586. for _, v := range []string{"试用", "非试用"} {
  3587. totalCondition1 := condition1
  3588. totalPars1 := pars1
  3589. var tmpTotal int
  3590. if v == "试用" {
  3591. totalCondition1 += ` AND c.status = "试用" `
  3592. tmpTotal, err = models.GetIncrementalCompanyProductCountByOperationRecord(totalCondition1, totalPars1)
  3593. if err != nil && err.Error() != utils.ErrNoRow() {
  3594. br.Msg = "获取失败"
  3595. br.ErrMsg = "获取失败,Err:" + err.Error()
  3596. return
  3597. }
  3598. notRenewalTryOut = tmpTotal
  3599. } else if v == "非试用" {
  3600. totalCondition1 += ` AND c.status IN ("冻结","流失") `
  3601. tmpTotal, err = models.GetIncrementalCompanyProductCountByOperationRecord(totalCondition1, totalPars1)
  3602. if err != nil && err.Error() != utils.ErrNoRow() {
  3603. br.Msg = "获取失败"
  3604. br.ErrMsg = "获取失败,Err:" + err.Error()
  3605. return
  3606. }
  3607. notRenewalNotTryOut = tmpTotal
  3608. }
  3609. }
  3610. //列表数据数量
  3611. if tryOutType == "试用" {
  3612. condition1 += ` AND c.status = "试用" `
  3613. total = notRenewalTryOut
  3614. } else if tryOutType == "非试用" {
  3615. condition1 += ` AND c.status IN ("冻结","流失") `
  3616. total = notRenewalNotTryOut
  3617. }
  3618. //total, err := models.GetIncrementalCompanyProductCountByOperationRecord(condition1, pars1)
  3619. //if err != nil && err.Error() != utils.ErrNoRow() {
  3620. // br.Msg = "获取失败"
  3621. // br.ErrMsg = "获取失败,Err:" + err.Error()
  3622. // return
  3623. //}
  3624. //分页total单独计算
  3625. total, err = models.GetIncrementalCompanyProductCountByOperationRecord(condition1, pars1)
  3626. if err != nil && err.Error() != utils.ErrNoRow() {
  3627. br.Msg = "获取失败"
  3628. br.ErrMsg = "获取失败,Err:" + err.Error()
  3629. return
  3630. }
  3631. //列表页数据
  3632. tmpList, err := models.GetIncrementalCompanyListByOperationRecord(condition1, pars1, startSize, pageSize)
  3633. if err != nil {
  3634. br.Msg = "获取失败"
  3635. br.ErrMsg = "获取失败,Err:" + err.Error()
  3636. return
  3637. }
  3638. var ascribecompanyIds []int
  3639. for _, item := range tmpList {
  3640. endDateTime, _ := time.Parse(utils.FormatDateTime, item.CreateTime)
  3641. item.EndDate = endDateTime.Format(utils.FormatDate)
  3642. ascribecompanyIds = append(ascribecompanyIds, item.CompanyId)
  3643. }
  3644. //归因标签
  3645. mapGetCompanyAscribeContent, mapContent := services.GetCompanyAscribeContentMap(ascribecompanyIds)
  3646. mapNoRenewedNote := services.GetCompanyNoRenewedNoteMap(ascribecompanyIds)
  3647. for _, item := range tmpList {
  3648. item.AscribeContent = mapGetCompanyAscribeContent[fmt.Sprint("CID_", item.CompanyId, "PID_", item.ProductId)]
  3649. item.Content = mapContent[fmt.Sprint("CID_", item.CompanyId, "PID_", item.ProductId)]
  3650. item.IsShowNoRenewedNote = mapNoRenewedNote[fmt.Sprint("CID_", item.CompanyId, "PID_", item.ProductId)]
  3651. if item.ProductId == utils.COMPANY_PRODUCT_RAI_ID { //权益客户的销售,按照创建时候对应的销售展示
  3652. item.SellerName = item.SellerNameInit
  3653. }
  3654. }
  3655. list = tmpList
  3656. dataTotal = total
  3657. //获取其他产品
  3658. //if len(list) > 0 {
  3659. // companyIdSlice := make([]string, 0)
  3660. // for _, v := range list {
  3661. // if v.Count > 1 {
  3662. // companyIdSlice = append(companyIdSlice, strconv.Itoa(v.CompanyId))
  3663. // }
  3664. // }
  3665. // if len(companyIdSlice) > 0 {
  3666. // companyIds := strings.Join(companyIdSlice, ",")
  3667. // otherList, otherListErr := models.GetOtherIncrementalCompanyListByOperationRecord(companyIds, condition1, pars1)
  3668. // //companyType
  3669. // if otherListErr != nil {
  3670. // br.Msg = "获取其他产品失败"
  3671. // br.ErrMsg = "获取其他产品失败,Err:" + otherListErr.Error()
  3672. // return
  3673. // }
  3674. //
  3675. // for _, otherCompanyContract := range otherList {
  3676. // moreListMap[otherCompanyContract.CompanyId] = append(moreListMap[otherCompanyContract.CompanyId], otherCompanyContract)
  3677. // }
  3678. // }
  3679. //}
  3680. }
  3681. }
  3682. listLen := len(list)
  3683. if listLen == 0 {
  3684. list = make([]*models.IncrementalList, 0)
  3685. }
  3686. for i := 0; i < listLen; i++ {
  3687. item := list[i]
  3688. //新增试用不需要计算剩余日期
  3689. if dataType != "新增试用" {
  3690. //剩余可用天数
  3691. endDateTime, _ := time.Parse(utils.FormatDate, item.EndDate)
  3692. endDateTime = endDateTime.AddDate(0, 0, 1)
  3693. sub := endDateTime.Sub(time.Now())
  3694. expireDay := fmt.Sprintf("%v", int(sub.Hours()/24))
  3695. list[i].ExpireDay = expireDay
  3696. }
  3697. //if otherCompanyProductList, ok := moreListMap[item.CompanyId]; ok {
  3698. // for _, otherCompanyProduct := range otherCompanyProductList {
  3699. // //只有改产品不是同一产品,且并没有拼接过,那么才去拼接
  3700. // if item.ProductId != otherCompanyProduct.ProductId && strings.Contains(list[i].ProductName, "/") == false {
  3701. // list[i].ProductName += "/" + otherCompanyProduct.ProductName
  3702. // list[i].SellerName += "/" + otherCompanyProduct.SellerName
  3703. // list[i].StartDate += "/" + otherCompanyProduct.StartDate
  3704. // list[i].EndDate += "/" + otherCompanyProduct.EndDate
  3705. //
  3706. // endDateTime, _ := time.Parse(utils.FormatDate, otherCompanyProduct.EndDate)
  3707. // endDateTime = endDateTime.AddDate(0, 0, 1)
  3708. // sub := endDateTime.Sub(time.Now())
  3709. // //if sub < 0 {
  3710. // // sub = 0
  3711. // //}
  3712. // tmpExpireDay := fmt.Sprintf("%v", int(sub.Hours()/24))
  3713. // list[i].ExpireDay += "/" + tmpExpireDay
  3714. // }
  3715. // }
  3716. //}
  3717. //if company2
  3718. }
  3719. page := paging.GetPaging(currentIndex, pageSize, dataTotal)
  3720. resp := response.IncrementalCompanyListResp{
  3721. Paging: page,
  3722. List: list,
  3723. TrialTotal: trialTotal,
  3724. NewCompanyTotal: newCompanyTotal,
  3725. RenewalCompanyTotal: renewalCompanyTotal,
  3726. NotRenewalCompanyTotal: notRenewalCompanyTotal,
  3727. NotRenewalTryOut: notRenewalTryOut,
  3728. NotRenewalNotTryOut: notRenewalNotTryOut,
  3729. }
  3730. //导出excel
  3731. if isExport {
  3732. IncrementalCompanyListExport(this, dataType, resp, br)
  3733. return
  3734. }
  3735. br.Ret = 200
  3736. br.Success = true
  3737. br.Msg = "获取成功"
  3738. br.Data = resp
  3739. }
  3740. // IncrementalCompanyListExport 导出增量客户数据报表excel
  3741. func IncrementalCompanyListExport(this *StatisticReportController, dataType string, resp response.IncrementalCompanyListResp, br *models.BaseResponse) {
  3742. dir, err := os.Executable()
  3743. exPath := filepath.Dir(dir)
  3744. downLoadnFilePath := exPath + "/" + time.Now().Format(utils.FormatDateTimeUnSpace) + ".xlsx"
  3745. xlsxFile := xlsx.NewFile()
  3746. if err != nil {
  3747. br.Msg = "生成文件失败"
  3748. br.ErrMsg = "生成文件失败"
  3749. return
  3750. }
  3751. style := xlsx.NewStyle()
  3752. alignment := xlsx.Alignment{
  3753. Horizontal: "center",
  3754. Vertical: "center",
  3755. WrapText: true,
  3756. }
  3757. style.Alignment = alignment
  3758. style.ApplyAlignment = true
  3759. sheel, err := xlsxFile.AddSheet("增量客户数据")
  3760. if err != nil {
  3761. br.Msg = "新增Sheet失败"
  3762. br.ErrMsg = "新增Sheet失败,Err:" + err.Error()
  3763. return
  3764. }
  3765. sheel.SetColWidth(0, 0, 30)
  3766. sheel.SetColWidth(1, 1, 15)
  3767. sheel.SetColWidth(2, 2, 15)
  3768. sheel.SetColWidth(3, 3, 18)
  3769. sheel.SetColWidth(4, 4, 40)
  3770. sheel.SetColWidth(5, 5, 18)
  3771. //统计数据
  3772. statisticRow := sheel.AddRow()
  3773. cell1 := statisticRow.AddCell()
  3774. cell1.SetStyle(style)
  3775. cell1.SetValue(fmt.Sprint("新增试用客户数:", resp.TrialTotal))
  3776. cell2 := statisticRow.AddCell()
  3777. cell2.SetStyle(style)
  3778. cell2.SetValue(fmt.Sprint("新签客户数:", resp.NewCompanyTotal))
  3779. cell3 := statisticRow.AddCell()
  3780. cell3.SetStyle(style)
  3781. cell3.SetValue(fmt.Sprint("续约客户数:", resp.RenewalCompanyTotal))
  3782. cell4 := statisticRow.AddCell()
  3783. cell4.SetStyle(style)
  3784. cell4.SetValue(fmt.Sprint("未续约客户数:", resp.NotRenewalCompanyTotal))
  3785. //表头
  3786. titleRow := sheel.AddRow()
  3787. cellName := titleRow.AddCell()
  3788. cellName.SetStyle(style)
  3789. cellName.SetValue("客户名称")
  3790. cellProName := titleRow.AddCell()
  3791. cellProName.SetStyle(style)
  3792. cellProName.SetValue("客户类型")
  3793. cellSellerName := titleRow.AddCell()
  3794. cellSellerName.SetStyle(style)
  3795. cellSellerName.SetValue("所属销售")
  3796. permissionMap := make(map[int][]string)
  3797. tmpPermissionMap := make(map[int]map[string][]string)
  3798. companyContractIdList := make([]string, 0)
  3799. for _, v := range resp.List {
  3800. companyContractIdList = append(companyContractIdList, fmt.Sprint(v.CompanyContractId))
  3801. }
  3802. if dataType == "新签客户" || dataType == "续约客户" {
  3803. cellMoney := titleRow.AddCell()
  3804. cellMoney.SetStyle(style)
  3805. cellMoney.SetValue("合同金额")
  3806. cellPermission := titleRow.AddCell()
  3807. cellPermission.SetStyle(style)
  3808. cellPermission.SetValue("合同品种")
  3809. //这么大费周章的目的是为了:权益的品种存在主观、客观的区分,如果一个品种既存在主观,又存在客观,那么就展示品种名称,否则就要列出品种名称+主、客观类型
  3810. if len(companyContractIdList) > 0 {
  3811. list, tmpErr := company.GetCompanyContractPermissionListByContractIds(strings.Join(companyContractIdList, ","))
  3812. if tmpErr != nil {
  3813. err = tmpErr
  3814. return
  3815. }
  3816. for _, v := range list {
  3817. tmpPermissionNameMap, ok := tmpPermissionMap[v.CompanyContractId]
  3818. if ok {
  3819. tmpPermissionNameList, ok2 := tmpPermissionNameMap[v.ChartPermissionName]
  3820. if ok2 {
  3821. tmpPermissionNameList = append(tmpPermissionNameList, v.PermissionRemark)
  3822. } else {
  3823. tmpPermissionNameList = []string{v.PermissionRemark}
  3824. }
  3825. tmpPermissionNameMap[v.ChartPermissionName] = tmpPermissionNameList
  3826. } else {
  3827. tmpPermissionNameMap = make(map[string][]string)
  3828. tmpPermissionNameMap[v.ChartPermissionName] = []string{v.PermissionRemark}
  3829. }
  3830. tmpPermissionMap[v.CompanyContractId] = tmpPermissionNameMap
  3831. }
  3832. }
  3833. }
  3834. for companyContractId, tmpPermissionNameMap := range tmpPermissionMap {
  3835. tmpPermissionName := ``
  3836. tmpPermissionList := []string{}
  3837. for tmpChartPermissionName, tmpChartPermissionNameList := range tmpPermissionNameMap {
  3838. if len(tmpChartPermissionNameList) > 1 {
  3839. tmpPermissionName = tmpChartPermissionName
  3840. } else {
  3841. tmpPermissionName = tmpChartPermissionNameList[0]
  3842. }
  3843. tmpPermissionList = append(tmpPermissionList, tmpPermissionName)
  3844. }
  3845. permissionMap[companyContractId] = tmpPermissionList
  3846. }
  3847. cellTime := titleRow.AddCell()
  3848. cellTime.SetStyle(style)
  3849. switch dataType {
  3850. case "新增试用":
  3851. cellTime.SetValue("新增时间")
  3852. case "新签客户":
  3853. cellTime.SetValue("签约时间")
  3854. case "续约客户":
  3855. cellTime.SetValue("续约时间")
  3856. case "未续约客户":
  3857. cellTime.SetValue("最近合同到期时间")
  3858. cellAscribeContent := titleRow.AddCell()
  3859. cellAscribeContent.SetStyle(style)
  3860. cellAscribeContent.SetValue("不续约归因")
  3861. cellContent := titleRow.AddCell()
  3862. cellContent.SetStyle(style)
  3863. cellContent.SetValue("详细原因")
  3864. }
  3865. for _, v := range resp.List {
  3866. dataRow := sheel.AddRow()
  3867. dataRow.SetHeight(20)
  3868. cellDataName := dataRow.AddCell()
  3869. cellDataName.SetStyle(style)
  3870. cellDataName.SetValue(v.CompanyName)
  3871. cellDataProName := dataRow.AddCell()
  3872. cellDataProName.SetStyle(style)
  3873. cellDataProName.SetValue(v.ProductName)
  3874. cellDataSellerName := dataRow.AddCell()
  3875. cellDataSellerName.SetStyle(style)
  3876. cellDataSellerName.SetValue(v.SellerName)
  3877. if dataType == "新签客户" || dataType == "续约客户" {
  3878. cellDataMoney := dataRow.AddCell()
  3879. cellDataMoney.SetStyle(style)
  3880. cellDataMoney.SetValue(v.Money)
  3881. cellDataPermission := dataRow.AddCell()
  3882. cellDataPermission.SetStyle(style)
  3883. if permissionStrList, ok := permissionMap[v.CompanyContractId]; ok {
  3884. cellDataPermission.SetValue(strings.Join(permissionStrList, ","))
  3885. }
  3886. }
  3887. cellDataTime := dataRow.AddCell()
  3888. cellDataTime.SetStyle(style)
  3889. switch dataType {
  3890. case "新增试用":
  3891. cellDataTime.SetValue(v.CreateTime)
  3892. case "新签客户":
  3893. cellDataTime.SetValue(v.StartDate)
  3894. case "续约客户":
  3895. cellDataTime.SetValue(v.StartDate)
  3896. case "未续约客户":
  3897. cellDataTime.SetValue(v.EndDate)
  3898. cellAscribeContent := dataRow.AddCell()
  3899. cellAscribeContent.SetStyle(style)
  3900. cellAscribeContent.SetValue(v.AscribeContent)
  3901. cellContent := dataRow.AddCell()
  3902. cellContent.SetStyle(style)
  3903. cellContent.SetValue(v.Content)
  3904. }
  3905. }
  3906. err = xlsxFile.Save(downLoadnFilePath)
  3907. if err != nil {
  3908. br.Msg = "保存文件失败"
  3909. br.ErrMsg = "保存文件失败"
  3910. return
  3911. }
  3912. randStr := time.Now().Format(utils.FormatDateTimeUnSpace)
  3913. downloadFileName := "增量客户数据_" + randStr + ".xlsx"
  3914. this.Ctx.Output.Download(downLoadnFilePath, downloadFileName)
  3915. defer func() {
  3916. os.Remove(downLoadnFilePath)
  3917. }()
  3918. br.Ret = 200
  3919. br.Success = true
  3920. br.Msg = "导出成功"
  3921. }
  3922. // IncrementalCompanyListExport
  3923. // @Title 增量客户数据导出
  3924. // @Description 增量客户数据导出接口
  3925. // @Param CompanyType query string true "客户类型:传空字符串或者不传为全部,'ficc','权益'"
  3926. // @Param AdminId query string true "销售id,多个用英文逗号隔开,空字符串为全部"
  3927. // @Param RegionType query string false "所属区域:传空字符串或者不传为全部,'国内','海外'"
  3928. // @Param StartDate query string false "开始日期"
  3929. // @Param EndDate query string false "结束日期"
  3930. // @Param DataType query string false "报表类型,枚举值:`新增试用`,`新签客户`,`续约客户`,`未续约客户`"
  3931. // @Success 200 Ret=200 导出成功
  3932. // @router /incremental_company/export [get]
  3933. func (this *StatisticReportController) IncrementalCompanyListExport() {
  3934. br := new(models.BaseResponse).Init()
  3935. defer func() {
  3936. this.Data["json"] = br
  3937. this.ServeJSON()
  3938. }()
  3939. sysUser := this.SysUser
  3940. if sysUser == nil {
  3941. br.Msg = "请登录"
  3942. br.ErrMsg = "请登录,SysUser Is Empty"
  3943. br.Ret = 408
  3944. return
  3945. }
  3946. adminId := this.GetString("AdminId")
  3947. regionType := this.GetString("RegionType")
  3948. companyType := this.GetString("CompanyType")
  3949. dataType := this.GetString("DataType")
  3950. startDate := this.GetString("StartDate")
  3951. endDate := this.GetString("EndDate")
  3952. if startDate == "" || endDate == "" {
  3953. br.Msg = "获取失败,开始日期或结束日期未传"
  3954. br.ErrMsg = "获取失败,开始日期或结束日期未传"
  3955. return
  3956. }
  3957. var startSize int
  3958. currentIndex := 1
  3959. pageSize := 10000
  3960. startSize = utils.StartIndex(currentIndex, pageSize)
  3961. var condition string
  3962. var pars []interface{}
  3963. //条件
  3964. if adminId != "" {
  3965. condition += ` AND c.seller_id in (` + adminId + `) `
  3966. //pars = append(pars, adminId)
  3967. } else {
  3968. //根据当前角色来获取查询条件
  3969. condition, pars = getQueryParams(condition, pars, sysUser, "c.")
  3970. }
  3971. if regionType != "" {
  3972. condition += ` AND b.region_type = ? `
  3973. pars = append(pars, regionType)
  3974. }
  3975. switch companyType {
  3976. case "ficc":
  3977. condition += ` AND c.product_id = ? `
  3978. pars = append(pars, 1)
  3979. case "权益":
  3980. condition += ` AND c.product_id = ? `
  3981. pars = append(pars, 2)
  3982. case "":
  3983. default:
  3984. br.Msg = "获取失败,客户类型异常"
  3985. br.ErrMsg = "获取失败,客户类型异常"
  3986. return
  3987. }
  3988. var list []*models.IncrementalList
  3989. //moreListMap := make(map[int][]*models.IncrementalList)
  3990. var trialTotal, newCompanyTotal, renewalCompanyTotal, notRenewalCompanyTotal int
  3991. //试用客户数
  3992. {
  3993. condition1 := condition
  3994. pars1 := pars
  3995. condition1 += ` AND a.create_time >= ? AND a.create_time <= ? AND a.operation in ("add","receive") `
  3996. pars1 = append(pars1, startDate, endDate)
  3997. total, err := models.GetIncrementalCompanyCountByOperationRecord(condition1, pars1)
  3998. if err != nil && err.Error() != utils.ErrNoRow() {
  3999. br.Msg = "获取失败"
  4000. br.ErrMsg = "获取失败,Err:" + err.Error()
  4001. return
  4002. }
  4003. trialTotal = total
  4004. if dataType == "新增试用" {
  4005. //列表页数据
  4006. tmpList, err := models.GetIncrementalCompanyListByOperationRecord(condition1, pars1, startSize, pageSize)
  4007. if err != nil {
  4008. br.Msg = "获取失败"
  4009. br.ErrMsg = "获取失败,Err:" + err.Error()
  4010. return
  4011. }
  4012. list = tmpList
  4013. }
  4014. }
  4015. //新签客户数
  4016. {
  4017. condition1 := condition
  4018. pars1 := pars
  4019. condition1 += ` AND a.start_date >= ? AND a.start_date <= ? `
  4020. pars1 = append(pars1, startDate, endDate)
  4021. condition1 += ` AND a.contract_type = ? `
  4022. pars1 = append(pars1, "新签合同")
  4023. total, err := models.GetIncrementalNewCompanyCount(condition1, pars1)
  4024. if err != nil && err.Error() != utils.ErrNoRow() {
  4025. br.Msg = "获取失败"
  4026. br.ErrMsg = "获取失败,Err:" + err.Error()
  4027. return
  4028. }
  4029. newCompanyTotal = total
  4030. if dataType == "新签客户" {
  4031. //列表页数据
  4032. tmpList, err := models.GetIncrementalNewCompanyList(condition1, pars1, startSize, pageSize)
  4033. if err != nil {
  4034. br.Msg = "获取失败"
  4035. br.ErrMsg = "获取失败,Err:" + err.Error()
  4036. return
  4037. }
  4038. list = tmpList
  4039. }
  4040. }
  4041. //续约客户数
  4042. {
  4043. condition1 := condition
  4044. pars1 := pars
  4045. condition1 += ` AND a.start_date >= ? AND a.start_date <= ? `
  4046. pars1 = append(pars1, startDate, endDate)
  4047. condition1 += ` AND a.contract_type = ? `
  4048. pars1 = append(pars1, "续约合同")
  4049. total, err := models.GetIncrementalNewCompanyCount(condition1, pars1)
  4050. if err != nil && err.Error() != utils.ErrNoRow() {
  4051. br.Msg = "获取失败"
  4052. br.ErrMsg = "获取失败,Err:" + err.Error()
  4053. return
  4054. }
  4055. renewalCompanyTotal = total
  4056. if dataType == "续约客户" {
  4057. //列表页数据
  4058. tmpList, err := models.GetIncrementalNewCompanyList(condition1, pars1, startSize, pageSize)
  4059. if err != nil {
  4060. br.Msg = "获取失败"
  4061. br.ErrMsg = "获取失败,Err:" + err.Error()
  4062. return
  4063. }
  4064. list = tmpList
  4065. }
  4066. }
  4067. //未续约客户数
  4068. {
  4069. condition1 := condition
  4070. pars1 := pars
  4071. endDateTime, err := time.Parse(utils.FormatDate, endDate)
  4072. if err != nil {
  4073. br.Msg = "结束时间异常"
  4074. br.ErrMsg = "获取失败,Err:" + err.Error()
  4075. return
  4076. }
  4077. //选择的日期加一天的原因是因为:筛选条件是截止到时分秒的,如果要把选择的这一天也统计进去,那么需要在选择的结束日期基础上加上一天
  4078. tryOutEndDate := endDateTime.AddDate(0, 0, 1).Format(utils.FormatDate)
  4079. condition1 += ` AND a.create_time >= ? AND a.create_time < ? `
  4080. pars1 = append(pars1, startDate, tryOutEndDate)
  4081. condition1 += ` AND a.operation = ? `
  4082. pars1 = append(pars1, "try_out")
  4083. condition1 += ` AND c.status not in ("永续","正式") `
  4084. total, err := models.GetIncrementalCompanyCountByOperationRecord(condition1, pars1)
  4085. if err != nil && err.Error() != utils.ErrNoRow() {
  4086. br.Msg = "获取失败"
  4087. br.ErrMsg = "获取失败,Err:" + err.Error()
  4088. return
  4089. }
  4090. notRenewalCompanyTotal = total
  4091. if dataType == "未续约客户" {
  4092. //列表页数据
  4093. tmpList, err := models.GetIncrementalCompanyListByOperationRecord(condition1, pars1, startSize, pageSize)
  4094. if err != nil {
  4095. br.Msg = "获取失败"
  4096. br.ErrMsg = "获取失败,Err:" + err.Error()
  4097. return
  4098. }
  4099. for _, item := range tmpList {
  4100. endDateTime, _ := time.Parse(utils.FormatDateTime, item.CreateTime)
  4101. item.EndDate = endDateTime.Format(utils.FormatDate)
  4102. }
  4103. list = tmpList
  4104. }
  4105. }
  4106. listLen := len(list)
  4107. for i := 0; i < listLen; i++ {
  4108. item := list[i]
  4109. //新增试用不需要计算剩余日期
  4110. if dataType != "新增试用" {
  4111. //剩余可用天数
  4112. endDateTime, _ := time.Parse(utils.FormatDate, item.EndDate)
  4113. endDateTime = endDateTime.AddDate(0, 0, 1)
  4114. sub := endDateTime.Sub(time.Now())
  4115. expireDay := fmt.Sprintf("%v", int(sub.Hours()/24))
  4116. list[i].ExpireDay = expireDay
  4117. }
  4118. }
  4119. dir, err := os.Executable()
  4120. exPath := filepath.Dir(dir)
  4121. downLoadnFilePath := exPath + "/" + time.Now().Format(utils.FormatDateTimeUnSpace) + ".xlsx"
  4122. xlsxFile := xlsx.NewFile()
  4123. if err != nil {
  4124. br.Msg = "生成文件失败"
  4125. br.ErrMsg = "生成文件失败"
  4126. return
  4127. }
  4128. style := xlsx.NewStyle()
  4129. alignment := xlsx.Alignment{
  4130. Horizontal: "center",
  4131. Vertical: "center",
  4132. WrapText: true,
  4133. }
  4134. style.Alignment = alignment
  4135. style.ApplyAlignment = true
  4136. sheel, err := xlsxFile.AddSheet("增量客户数据")
  4137. if err != nil {
  4138. br.Msg = "新增Sheet失败"
  4139. br.ErrMsg = "新增Sheet失败,Err:" + err.Error()
  4140. return
  4141. }
  4142. sheel.SetColWidth(0, 0, 30)
  4143. sheel.SetColWidth(1, 1, 15)
  4144. sheel.SetColWidth(2, 2, 15)
  4145. sheel.SetColWidth(3, 3, 18)
  4146. //统计数据
  4147. statisticRow := sheel.AddRow()
  4148. cell1 := statisticRow.AddCell()
  4149. cell1.SetStyle(style)
  4150. cell1.SetValue(fmt.Sprint("新增试用客户数:", trialTotal))
  4151. cell2 := statisticRow.AddCell()
  4152. cell2.SetStyle(style)
  4153. cell2.SetValue(fmt.Sprint("新签客户数:", newCompanyTotal))
  4154. cell3 := statisticRow.AddCell()
  4155. cell3.SetStyle(style)
  4156. cell3.SetValue(fmt.Sprint("续约客户数:", renewalCompanyTotal))
  4157. cell4 := statisticRow.AddCell()
  4158. cell4.SetStyle(style)
  4159. cell4.SetValue(fmt.Sprint("未续约客户数:", notRenewalCompanyTotal))
  4160. //表头
  4161. titleRow := sheel.AddRow()
  4162. cellName := titleRow.AddCell()
  4163. cellName.SetStyle(style)
  4164. cellName.SetValue("客户名称")
  4165. cellProName := titleRow.AddCell()
  4166. cellProName.SetStyle(style)
  4167. cellProName.SetValue("客户类型")
  4168. cellSellerName := titleRow.AddCell()
  4169. cellSellerName.SetStyle(style)
  4170. cellSellerName.SetValue("所属销售")
  4171. cellTime := titleRow.AddCell()
  4172. cellTime.SetStyle(style)
  4173. switch dataType {
  4174. case "新增试用":
  4175. cellTime.SetValue("新增时间")
  4176. case "新签客户":
  4177. cellTime.SetValue("签约时间")
  4178. case "续约客户":
  4179. cellTime.SetValue("续约时间")
  4180. case "未续约客户":
  4181. cellTime.SetValue("最近合同到期时间")
  4182. }
  4183. for _, v := range list {
  4184. dataRow := sheel.AddRow()
  4185. dataRow.SetHeight(20)
  4186. cellDataName := dataRow.AddCell()
  4187. cellDataName.SetStyle(style)
  4188. cellDataName.SetValue(v.CompanyName)
  4189. cellDataProName := dataRow.AddCell()
  4190. cellDataProName.SetStyle(style)
  4191. cellDataProName.SetValue(v.ProductName)
  4192. cellDataSellerName := dataRow.AddCell()
  4193. cellDataSellerName.SetStyle(style)
  4194. cellDataSellerName.SetValue(v.SellerName)
  4195. cellDataTime := dataRow.AddCell()
  4196. cellDataTime.SetStyle(style)
  4197. switch dataType {
  4198. case "新增试用":
  4199. cellDataTime.SetValue(v.CreateTime)
  4200. case "新签客户":
  4201. cellDataTime.SetValue(v.StartDate)
  4202. case "续约客户":
  4203. cellDataTime.SetValue(v.StartDate)
  4204. case "未续约客户":
  4205. cellDataTime.SetValue(v.EndDate)
  4206. }
  4207. }
  4208. err = xlsxFile.Save(downLoadnFilePath)
  4209. if err != nil {
  4210. br.Msg = "保存文件失败"
  4211. br.ErrMsg = "保存文件失败"
  4212. return
  4213. }
  4214. randStr := time.Now().Format(utils.FormatDateTimeUnSpace)
  4215. downloadFileName := "增量客户数据_" + randStr + ".xlsx"
  4216. this.Ctx.Output.Download(downLoadnFilePath, downloadFileName)
  4217. defer func() {
  4218. os.Remove(downLoadnFilePath)
  4219. }()
  4220. br.Ret = 200
  4221. br.Success = true
  4222. br.Msg = "导出成功"
  4223. }
  4224. // MoreRenewReason 未续约说明列表
  4225. // @Title 未续约说明列表
  4226. // @Description 未续约说明列表
  4227. // @Param CompanyId query string true "客户id"
  4228. // @Param ProductId query string true "产品id"
  4229. // @Success 200 {object} response.MoreRenewReasonResp
  4230. // @router /more_renew_reason [get]
  4231. func (this *StatisticReportController) MoreRenewReason() {
  4232. br := new(models.BaseResponse).Init()
  4233. defer func() {
  4234. this.Data["json"] = br
  4235. this.ServeJSON()
  4236. }()
  4237. sysUser := this.SysUser
  4238. if sysUser == nil {
  4239. br.Msg = "请登录"
  4240. br.ErrMsg = "请登录,SysUser Is Empty"
  4241. br.Ret = 408
  4242. return
  4243. }
  4244. CompanyId := this.GetString("CompanyId")
  4245. ProductId := this.GetString("ProductId")
  4246. renewalReason, err := models.GetMoreRenewalReason(CompanyId, ProductId)
  4247. if err != nil {
  4248. br.Msg = "获取失败"
  4249. br.ErrMsg = "获取失败,Err:" + err.Error()
  4250. return
  4251. }
  4252. resp := make([]response.MoreRenewReasonResp, len(renewalReason))
  4253. for i, reason := range renewalReason {
  4254. createDate := reason.CreateTime.Format("2006.01.02")
  4255. resp[i].RenewalReason = reason.RenewalReason
  4256. resp[i].RenewalTodo = reason.RenewalTodo
  4257. resp[i].CreateTime = createDate
  4258. resp[i].ExpirationTimeExceeded = strconv.Itoa(reason.ExpirationTimeExceeded)
  4259. }
  4260. br.Ret = 200
  4261. br.Success = true
  4262. br.Msg = "获取成功"
  4263. br.Data = resp
  4264. }
  4265. // StackCompanyReport
  4266. // @Title 获取存量客户统计数据
  4267. // @Description 获取存量客户统计数据接口
  4268. // @Param ProductId query string true "产品id"
  4269. // @Param Date query string true "日期,格式:2022-04-06"
  4270. // @Success 200 {object} statistic_report.CompanyReportRecordResp
  4271. // @router /report/stack_company [get]
  4272. func (this *StatisticReportController) StackCompanyReport() {
  4273. br := new(models.BaseResponse).Init()
  4274. defer func() {
  4275. this.Data["json"] = br
  4276. this.ServeJSON()
  4277. }()
  4278. sysUser := this.SysUser
  4279. if sysUser == nil {
  4280. br.Msg = "请登录"
  4281. br.ErrMsg = "请登录,SysUser Is Empty"
  4282. br.Ret = 408
  4283. return
  4284. }
  4285. date := this.GetString("Date")
  4286. productId, _ := this.GetInt("ProductId", 1)
  4287. //获取列表
  4288. companyReportDataMapList, firstDate, err := statistic_report.GetDateData(date, productId)
  4289. if err != nil {
  4290. br.Msg = "数据异常"
  4291. br.ErrMsg = "数据异常,Err:" + err.Error()
  4292. return
  4293. }
  4294. //获取销售人员分组数据
  4295. var group []services.AdminGroup
  4296. var groupIdRelationMap map[int]int
  4297. var groupMap map[int][]*roadshow.Researcher
  4298. if productId == 1 {
  4299. group, groupIdRelationMap, err = services.GetFiccSystemGroup()
  4300. if err != nil {
  4301. br.Msg = "获取信息失败!"
  4302. br.ErrMsg = "获取分组信息失败!Err:" + err.Error()
  4303. return
  4304. }
  4305. researcherList, tmpErr := services.GetFiccSeller(firstDate, groupIdRelationMap)
  4306. if tmpErr != nil {
  4307. err = tmpErr
  4308. }
  4309. groupMap = make(map[int][]*roadshow.Researcher)
  4310. for _, v := range researcherList {
  4311. if v.RoleTypeCode == "ficc_admin" {
  4312. findItems := groupMap[1]
  4313. findItems = append(findItems, v)
  4314. groupMap[1] = findItems
  4315. } else {
  4316. if findItems, ok := groupMap[v.GroupId]; ok {
  4317. findItems = append(findItems, v)
  4318. groupMap[v.GroupId] = findItems
  4319. } else {
  4320. findItems = append(findItems, v)
  4321. groupMap[v.GroupId] = findItems
  4322. }
  4323. }
  4324. }
  4325. } else {
  4326. group, groupIdRelationMap, err = services.GetRaiSystemGroup()
  4327. if err != nil {
  4328. br.Msg = "获取信息失败!"
  4329. br.ErrMsg = "获取分组信息失败!Err:" + err.Error()
  4330. return
  4331. }
  4332. researcherList, tmpErr := services.GetRaiSeller(groupIdRelationMap)
  4333. if tmpErr != nil {
  4334. err = tmpErr
  4335. }
  4336. groupMap = make(map[int][]*roadshow.Researcher)
  4337. for _, v := range researcherList {
  4338. if v.RoleTypeCode == "rai_admin" {
  4339. findItems := groupMap[1]
  4340. findItems = append(findItems, v)
  4341. groupMap[1] = findItems
  4342. } else {
  4343. if findItems, ok := groupMap[v.GroupId]; ok {
  4344. findItems = append(findItems, v)
  4345. groupMap[v.GroupId] = findItems
  4346. } else {
  4347. findItems = append(findItems, v)
  4348. groupMap[v.GroupId] = findItems
  4349. }
  4350. }
  4351. }
  4352. }
  4353. //数据处理
  4354. groupReportRecordList := make([]statistic_report.GroupReportRecord, 0)
  4355. allCompanyReportRecordNum := make([]statistic_report.CompanyReportRecordNum, 0)
  4356. companyReportRecordResp := statistic_report.CompanyReportRecordResp{
  4357. List: groupReportRecordList,
  4358. CompanyReportRecordNumList: allCompanyReportRecordNum,
  4359. }
  4360. startDateIndexList := make(map[int]string) //开始时间间隔map
  4361. endDateIndexList := make(map[int]string) //结束时间间隔map
  4362. tmpAllTryOutNumMap := make(map[int]int)
  4363. tmpAllFormalNumMap := make(map[int]int)
  4364. tmpAllActiveNumMap := make(map[int]int)
  4365. tmpAllAllActiveNumMap := make(map[int]int)
  4366. tmpAllNoIncrementalActiveNumMap := make(map[int]int)
  4367. tmpAllTryStagePushMap := make(map[int]int)
  4368. tmpAllTryStageFollowMap := make(map[int]int)
  4369. tmpAllTryStageReadyMap := make(map[int]int)
  4370. tmpAllTryStageInitMap := make(map[int]int)
  4371. for _, v := range group {
  4372. v.ResearcherList = groupMap[v.GroupId]
  4373. tmpGroupAdminReportRecord := make([]statistic_report.AdminReportRecord, 0)
  4374. tmpGroupCompanyReportRecordNumList := make([]statistic_report.CompanyReportRecordNum, 0)
  4375. tmpGroupTryOutNumMap := make(map[int]int)
  4376. tmpGroupFormalNumMap := make(map[int]int)
  4377. tmpGroupActiveNumMap := make(map[int]int)
  4378. tmpGroupAllActiveNumMap := make(map[int]int)
  4379. tmpGroupNoIncrementalActiveNumMap := make(map[int]int)
  4380. tmpGroupTryStagePushMap := make(map[int]int)
  4381. tmpGroupTryStageFollowMap := make(map[int]int)
  4382. tmpGroupTryStageReadyMap := make(map[int]int)
  4383. tmpGroupTryStageInitMap := make(map[int]int)
  4384. for _, researcher := range groupMap[v.GroupId] {
  4385. //组内研究员数据
  4386. //每个区间的数据
  4387. tmpCompanyReportRecordNumList := make([]statistic_report.CompanyReportRecordNum, 0)
  4388. for index, adminData := range companyReportDataMapList {
  4389. startDateIndexList[index] = adminData.StartDate
  4390. endDateIndexList[index] = adminData.EndDate
  4391. var tmpTryOutNum, tmpFormalNum, tmpActiveStatus, tmpAllActiveStatus, tmpNoIncrementalActiveStatus int
  4392. var tmpTryStagePushNum, tmpTryStageFollowNum, tmpTryStageReadyNum, tmpTryStageInitNum int
  4393. if num, ok := adminData.TryOutMap[researcher.AdminId]; ok {
  4394. tmpTryOutNum = num
  4395. }
  4396. if num, ok := adminData.FormalMap[researcher.AdminId]; ok {
  4397. tmpFormalNum = num
  4398. }
  4399. if num, ok := adminData.ActiveMap[researcher.AdminId]; ok {
  4400. tmpActiveStatus = num
  4401. }
  4402. if num, ok := adminData.AllActiveMap[researcher.AdminId]; ok {
  4403. tmpAllActiveStatus = num
  4404. }
  4405. if num, ok := adminData.NoIncrementalActiveMap[researcher.AdminId]; ok {
  4406. tmpNoIncrementalActiveStatus = num
  4407. }
  4408. // 每个用户的试用标签统计 推进-跟踪-预备-未分类
  4409. if num, ok := adminData.TryStagePushNum[researcher.AdminId]; ok {
  4410. tmpTryStagePushNum = num
  4411. }
  4412. if num, ok := adminData.TryStageFollowNum[researcher.AdminId]; ok {
  4413. tmpTryStageFollowNum = num
  4414. }
  4415. if num, ok := adminData.TryStageReadyNum[researcher.AdminId]; ok {
  4416. tmpTryStageReadyNum = num
  4417. }
  4418. if num, ok := adminData.TryStageInitNum[researcher.AdminId]; ok {
  4419. tmpTryStageInitNum = num
  4420. }
  4421. tmpAdminRsReportRecordNum := statistic_report.CompanyReportRecordNum{
  4422. TryOutNum: tmpTryOutNum,
  4423. FormalNum: tmpFormalNum,
  4424. ActiveNum: tmpActiveStatus,
  4425. AllActiveNum: tmpAllActiveStatus,
  4426. NoIncrementalActiveNum: tmpNoIncrementalActiveStatus,
  4427. StartDate: adminData.StartDate,
  4428. EndDate: adminData.EndDate,
  4429. TryStagePushNum: tmpTryStagePushNum,
  4430. TryStageFollowNum: tmpTryStageFollowNum,
  4431. TryStageReadyNum: tmpTryStageReadyNum,
  4432. TryStageInitNum: tmpTryStageInitNum,
  4433. }
  4434. tmpCompanyReportRecordNumList = append(tmpCompanyReportRecordNumList, tmpAdminRsReportRecordNum)
  4435. //组内数据汇总
  4436. tmpGroupTryOutNumMap[index] += tmpTryOutNum
  4437. tmpGroupFormalNumMap[index] += tmpFormalNum
  4438. tmpGroupActiveNumMap[index] += tmpActiveStatus
  4439. tmpGroupAllActiveNumMap[index] += tmpActiveStatus
  4440. tmpGroupNoIncrementalActiveNumMap[index] += tmpActiveStatus
  4441. tmpGroupTryStagePushMap[index] += tmpTryStagePushNum
  4442. tmpGroupTryStageFollowMap[index] += tmpTryStageFollowNum
  4443. tmpGroupTryStageReadyMap[index] += tmpTryStageReadyNum
  4444. tmpGroupTryStageInitMap[index] += tmpTryStageInitNum
  4445. //总数据汇总
  4446. tmpAllTryOutNumMap[index] += tmpTryOutNum
  4447. tmpAllFormalNumMap[index] += tmpFormalNum
  4448. tmpAllActiveNumMap[index] += tmpActiveStatus
  4449. tmpAllAllActiveNumMap[index] += tmpAllActiveStatus
  4450. tmpAllNoIncrementalActiveNumMap[index] += tmpNoIncrementalActiveStatus
  4451. // 总数据试用标签数据汇总
  4452. tmpAllTryStagePushMap[index] += tmpTryStagePushNum
  4453. tmpAllTryStageFollowMap[index] += tmpTryStageFollowNum
  4454. tmpAllTryStageReadyMap[index] += tmpTryStageReadyNum
  4455. tmpAllTryStageInitMap[index] += tmpTryStageInitNum
  4456. }
  4457. tmpAdminReportRecord := statistic_report.AdminReportRecord{
  4458. Name: researcher.RealName,
  4459. AdminId: researcher.AdminId,
  4460. CompanyReportRecordNumList: tmpCompanyReportRecordNumList,
  4461. }
  4462. tmpGroupAdminReportRecord = append(tmpGroupAdminReportRecord, tmpAdminReportRecord)
  4463. }
  4464. for i := 0; i < len(tmpGroupActiveNumMap); i++ {
  4465. tmpGroupCompanyReportRecordNum := statistic_report.CompanyReportRecordNum{
  4466. TryOutNum: tmpGroupTryOutNumMap[i],
  4467. FormalNum: tmpGroupFormalNumMap[i],
  4468. ActiveNum: tmpGroupActiveNumMap[i],
  4469. AllActiveNum: tmpGroupAllActiveNumMap[i],
  4470. NoIncrementalActiveNum: tmpGroupNoIncrementalActiveNumMap[i],
  4471. StartDate: startDateIndexList[i],
  4472. EndDate: endDateIndexList[i],
  4473. TryStagePushNum: tmpGroupTryStagePushMap[i],
  4474. TryStageFollowNum: tmpGroupTryStageFollowMap[i],
  4475. TryStageReadyNum: tmpGroupTryStageReadyMap[i],
  4476. TryStageInitNum: tmpGroupTryStageInitMap[i],
  4477. }
  4478. tmpGroupCompanyReportRecordNumList = append(tmpGroupCompanyReportRecordNumList, tmpGroupCompanyReportRecordNum)
  4479. }
  4480. groupReportRecord := statistic_report.GroupReportRecord{
  4481. Item: tmpGroupAdminReportRecord,
  4482. Name: v.GroupName,
  4483. GroupId: v.GroupId,
  4484. CompanyReportRecordNumList: tmpGroupCompanyReportRecordNumList,
  4485. }
  4486. groupReportRecordList = append(groupReportRecordList, groupReportRecord)
  4487. }
  4488. //总体汇总数据
  4489. for i := 0; i < len(tmpAllFormalNumMap); i++ {
  4490. tmpGroupCompanyReportRecordNum := statistic_report.CompanyReportRecordNum{
  4491. TryOutNum: tmpAllTryOutNumMap[i],
  4492. FormalNum: tmpAllFormalNumMap[i],
  4493. ActiveNum: tmpAllActiveNumMap[i],
  4494. AllActiveNum: tmpAllAllActiveNumMap[i],
  4495. NoIncrementalActiveNum: tmpAllNoIncrementalActiveNumMap[i],
  4496. StartDate: startDateIndexList[i],
  4497. EndDate: endDateIndexList[i],
  4498. TryStagePushNum: tmpAllTryStagePushMap[i],
  4499. TryStageFollowNum: tmpAllTryStageFollowMap[i],
  4500. TryStageReadyNum: tmpAllTryStageReadyMap[i],
  4501. TryStageInitNum: tmpAllTryStageInitMap[i],
  4502. }
  4503. allCompanyReportRecordNum = append(allCompanyReportRecordNum, tmpGroupCompanyReportRecordNum)
  4504. }
  4505. companyReportRecordResp.CompanyReportRecordNumList = allCompanyReportRecordNum
  4506. tmpList := groupReportRecordList
  4507. //因为RoleTypeCode不一样,所以需要重新从数据库取数据
  4508. adminInfo, _ := system.GetSysAdminById(sysUser.AdminId)
  4509. adminGroupId := adminInfo.GroupId
  4510. if tmpGroupId, ok := groupIdRelationMap[adminGroupId]; ok {
  4511. adminGroupId = tmpGroupId
  4512. }
  4513. switch adminInfo.RoleTypeCode {
  4514. case utils.ROLE_TYPE_CODE_FICC_GROUP, utils.ROLE_TYPE_CODE_FICC_TEAM:
  4515. for index, v := range tmpList {
  4516. //如果不是同一个分组,那么就移除该分组下的人员数据
  4517. if v.GroupId != adminGroupId {
  4518. tmpList[index].Item = make([]statistic_report.AdminReportRecord, 0)
  4519. } else {
  4520. tmpList[index], tmpList[0] = tmpList[0], tmpList[index]
  4521. }
  4522. }
  4523. companyReportRecordResp.List = tmpList
  4524. case utils.ROLE_TYPE_CODE_RAI_GROUP:
  4525. for index, v := range tmpList {
  4526. //如果不是同一个分组,那么就移除该分组下的人员数据
  4527. if v.GroupId != adminGroupId {
  4528. tmpList[index].Item = make([]statistic_report.AdminReportRecord, 0)
  4529. } else {
  4530. tmpList[index], tmpList[0] = tmpList[0], tmpList[index]
  4531. }
  4532. }
  4533. companyReportRecordResp.List = tmpList
  4534. case utils.ROLE_TYPE_CODE_FICC_ADMIN, utils.ROLE_TYPE_CODE_ADMIN, utils.ROLE_TYPE_CODE_RAI_ADMIN:
  4535. //管理员、超管看全部数据
  4536. companyReportRecordResp.List = tmpList
  4537. }
  4538. br.Ret = 200
  4539. br.Success = true
  4540. br.Msg = "获取成功"
  4541. br.Data = companyReportRecordResp
  4542. }
  4543. // IncrementalCompanyReport
  4544. // @Title 获取增量客户统计数据
  4545. // @Description 获取增量客户统计数据接口
  4546. // @Param DataType query string true "枚举值:week、month、time_interval"
  4547. // @Param ProductId query int true "客户类型 ficc:1 权益:2"
  4548. // @Param StartDate query string true "开始日期,格式:2022-04-06"
  4549. // @Param EndDate query string true "结束日期,格式:2022-04-06"
  4550. // @Success 200 {object} statistic_report.CompanyReportRecordResp
  4551. // @router /report/incremental_company [get]
  4552. func (this *StatisticReportController) IncrementalCompanyReport() {
  4553. br := new(models.BaseResponse).Init()
  4554. defer func() {
  4555. this.Data["json"] = br
  4556. this.ServeJSON()
  4557. }()
  4558. sysUser := this.SysUser
  4559. if sysUser == nil {
  4560. br.Msg = "请登录"
  4561. br.ErrMsg = "请登录,SysUser Is Empty"
  4562. br.Ret = 408
  4563. return
  4564. }
  4565. dataType := this.GetString("DataType")
  4566. productId, _ := this.GetInt("ProductId", 1)
  4567. startDate := this.GetString("StartDate")
  4568. endDate := this.GetString("EndDate")
  4569. var companyReportDataMapList []statistic_report.CompanyReportDataMap
  4570. var err error
  4571. var firstDate time.Time
  4572. switch dataType {
  4573. //获取列表
  4574. case "week":
  4575. nowWeekMonday := utils.GetNowWeekMonday() //本周周一
  4576. //companyReportDataMapList, firstDate, err = statistic_report.GetWeekData()
  4577. companyReportDataMapList, firstDate, err = statistic_report.GetWeekDataNum(nowWeekMonday, productId, 6)
  4578. if err != nil {
  4579. br.Msg = "数据异常"
  4580. br.ErrMsg = "数据异常,Err:" + err.Error()
  4581. return
  4582. }
  4583. case "month":
  4584. nowMonthFirstDay := utils.GetNowMonthFirstDay() //本月第一天
  4585. //companyReportDataMapList, firstDate, err = statistic_report.GetMonthData()
  4586. companyReportDataMapList, firstDate, err = statistic_report.GetMonthDataNum(nowMonthFirstDay, productId, 6)
  4587. if err != nil {
  4588. br.Msg = "数据异常"
  4589. br.ErrMsg = "数据异常,Err:" + err.Error()
  4590. return
  4591. }
  4592. case "time_interval":
  4593. if startDate == `` || endDate == `` {
  4594. br.Msg = "开始日期或结束日期不能为空"
  4595. br.ErrMsg = "开始日期或结束日期不能为空,Err:" + err.Error()
  4596. return
  4597. }
  4598. companyReportDataMapList, firstDate, err = statistic_report.GetTimeIntervalData(productId, startDate, endDate)
  4599. if err != nil {
  4600. br.Msg = "数据异常"
  4601. br.ErrMsg = "数据异常,Err:" + err.Error()
  4602. return
  4603. }
  4604. }
  4605. //获取销售人员分组数据
  4606. var group []services.AdminGroup
  4607. var groupIdRelationMap map[int]int
  4608. var groupMap map[int][]*roadshow.Researcher
  4609. if productId == 1 {
  4610. group, groupIdRelationMap, err = services.GetFiccSystemGroup()
  4611. if err != nil {
  4612. br.Msg = "获取信息失败!"
  4613. br.ErrMsg = "获取分组信息失败!Err:" + err.Error()
  4614. return
  4615. }
  4616. researcherList, tmpErr := services.GetFiccSeller(firstDate, groupIdRelationMap)
  4617. if tmpErr != nil {
  4618. err = tmpErr
  4619. }
  4620. groupMap = make(map[int][]*roadshow.Researcher)
  4621. for _, v := range researcherList {
  4622. if v.RoleTypeCode == "ficc_admin" {
  4623. findItems := groupMap[1]
  4624. findItems = append(findItems, v)
  4625. groupMap[1] = findItems
  4626. } else {
  4627. if findItems, ok := groupMap[v.GroupId]; ok {
  4628. findItems = append(findItems, v)
  4629. groupMap[v.GroupId] = findItems
  4630. } else {
  4631. findItems = append(findItems, v)
  4632. groupMap[v.GroupId] = findItems
  4633. }
  4634. }
  4635. }
  4636. } else {
  4637. group, groupIdRelationMap, err = services.GetRaiSystemGroup()
  4638. if err != nil {
  4639. br.Msg = "获取信息失败!"
  4640. br.ErrMsg = "获取分组信息失败!Err:" + err.Error()
  4641. return
  4642. }
  4643. researcherList, tmpErr := services.GetRaiSeller(groupIdRelationMap)
  4644. if tmpErr != nil {
  4645. err = tmpErr
  4646. }
  4647. groupMap = make(map[int][]*roadshow.Researcher)
  4648. for _, v := range researcherList {
  4649. if v.RoleTypeCode == "rai_admin" {
  4650. findItems := groupMap[1]
  4651. findItems = append(findItems, v)
  4652. groupMap[1] = findItems
  4653. } else {
  4654. if findItems, ok := groupMap[v.GroupId]; ok {
  4655. findItems = append(findItems, v)
  4656. groupMap[v.GroupId] = findItems
  4657. } else {
  4658. findItems = append(findItems, v)
  4659. groupMap[v.GroupId] = findItems
  4660. }
  4661. }
  4662. }
  4663. }
  4664. //数据处理
  4665. groupReportRecordList := make([]statistic_report.GroupReportRecord, 0)
  4666. allCompanyReportRecordNum := make([]statistic_report.CompanyReportRecordNum, 0)
  4667. companyReportRecordResp := statistic_report.CompanyReportRecordResp{
  4668. List: groupReportRecordList,
  4669. CompanyReportRecordNumList: allCompanyReportRecordNum,
  4670. }
  4671. startDateIndexList := make(map[int]string) //开始时间间隔map
  4672. endDateIndexList := make(map[int]string) //结束时间间隔map
  4673. //客户数汇总
  4674. tmpAllTryOutNumMap := make(map[int]int)
  4675. tmpAllFormalNumMap := make(map[int]int)
  4676. tmpAllActiveNumMap := make(map[int]int)
  4677. tmpAllAllActiveNumMap := make(map[int]int)
  4678. tmpAllNoIncrementalActiveNumMap := make(map[int]int)
  4679. //id集合汇总
  4680. tmpAllTryOutIdMap := make(map[int]string)
  4681. tmpAllFormalIdMap := make(map[int]string)
  4682. tmpAllActiveIdMap := make(map[int]string)
  4683. tmpAllAllActiveIdMap := make(map[int]string)
  4684. tmpAllNoIncrementalActiveIdMap := make(map[int]string)
  4685. for _, v := range group {
  4686. v.ResearcherList = groupMap[v.GroupId]
  4687. tmpGroupAdminReportRecord := make([]statistic_report.AdminReportRecord, 0)
  4688. tmpGroupCompanyReportRecordNumList := make([]statistic_report.CompanyReportRecordNum, 0)
  4689. //数量统计
  4690. tmpGroupTryOutNumMap := make(map[int]int)
  4691. tmpGroupFormalNumMap := make(map[int]int)
  4692. tmpGroupActiveNumMap := make(map[int]int)
  4693. tmpGroupAllActiveNumMap := make(map[int]int)
  4694. tmpGroupNoIncrementalActiveNumMap := make(map[int]int)
  4695. //id集合
  4696. tmpGroupTryOutIdSliceMap := make(map[int][]string)
  4697. tmpGroupFormalIdSliceMap := make(map[int][]string)
  4698. tmpGroupActiveIdSliceMap := make(map[int][]string)
  4699. tmpGroupAllActiveIdSliceMap := make(map[int][]string)
  4700. tmpGroupNoIncrementalActiveIdSliceMap := make(map[int][]string)
  4701. //id集合
  4702. tmpGroupTryOutIdMap := make(map[int]string)
  4703. tmpGroupFormalIdMap := make(map[int]string)
  4704. tmpGroupActiveIdMap := make(map[int]string)
  4705. tmpGroupAllActiveIdMap := make(map[int]string)
  4706. tmpGroupNoIncrementalActiveIdMap := make(map[int]string)
  4707. for _, researcher := range groupMap[v.GroupId] {
  4708. //组内研究员数据
  4709. //每个区间的数据
  4710. tmpCompanyReportRecordNumList := make([]statistic_report.CompanyReportRecordNum, 0)
  4711. for index, adminData := range companyReportDataMapList {
  4712. startDateIndexList[index] = adminData.StartDate
  4713. endDateIndexList[index] = adminData.EndDate
  4714. var tmpTryOutNum, tmpFormalNum, tmpActiveStatus, tmpAllActiveStatus, tmpNoIncrementalActiveStatus int
  4715. //var tmpTryOutIds, tmpFormalIds, tmpActiveIds string
  4716. var tmpTryOutIdSlice, tmpFormalIdSlice, tmpActiveIdSlice, tmpAllActiveIdSlice, tmpNoIncrementalActiveIdSlice []string
  4717. var tmpTryOutId, tmpFormalId, tmpActiveId, tmpAllActiveId, tmpNoIncrementalActiveId string
  4718. if num, ok := adminData.TryOutMap[researcher.AdminId]; ok {
  4719. tmpTryOutNum = num
  4720. tmpTryOutIdSlice = append(tmpTryOutIdSlice, adminData.TryOutIdMap[researcher.AdminId])
  4721. tmpTryOutId = strings.Join(tmpTryOutIdSlice, ",")
  4722. }
  4723. if num, ok := adminData.FormalMap[researcher.AdminId]; ok {
  4724. tmpFormalNum = num
  4725. tmpFormalIdSlice = append(tmpFormalIdSlice, adminData.FormalIdMap[researcher.AdminId])
  4726. tmpFormalId = strings.Join(tmpFormalIdSlice, ",")
  4727. }
  4728. if num, ok := adminData.ActiveMap[researcher.AdminId]; ok {
  4729. tmpActiveStatus = num
  4730. tmpActiveIdSlice = append(tmpActiveIdSlice, adminData.ActiveIdMap[researcher.AdminId])
  4731. tmpActiveId = strings.Join(tmpActiveIdSlice, ",")
  4732. }
  4733. if num, ok := adminData.AllActiveMap[researcher.AdminId]; ok {
  4734. tmpAllActiveStatus = num
  4735. tmpAllActiveIdSlice = append(tmpAllActiveIdSlice, adminData.AllActiveIdMap[researcher.AdminId])
  4736. tmpAllActiveId = strings.Join(tmpAllActiveIdSlice, ",")
  4737. }
  4738. if num, ok := adminData.NoIncrementalActiveMap[researcher.AdminId]; ok {
  4739. tmpNoIncrementalActiveStatus = num
  4740. tmpNoIncrementalActiveIdSlice = append(tmpNoIncrementalActiveIdSlice, adminData.NoIncrementalActiveIdMap[researcher.AdminId])
  4741. tmpNoIncrementalActiveId = strings.Join(tmpNoIncrementalActiveIdSlice, ",")
  4742. }
  4743. tmpAdminRsReportRecordNum := statistic_report.CompanyReportRecordNum{
  4744. TryOutNum: tmpTryOutNum,
  4745. TryOutIds: tmpTryOutId,
  4746. FormalNum: tmpFormalNum,
  4747. FormalIds: tmpFormalId,
  4748. ActiveNum: tmpActiveStatus,
  4749. ActiveIds: tmpActiveId,
  4750. AllActiveNum: tmpAllActiveStatus,
  4751. AllActiveIds: tmpAllActiveId,
  4752. NoIncrementalActiveNum: tmpNoIncrementalActiveStatus,
  4753. NoIncrementalActiveIds: tmpNoIncrementalActiveId,
  4754. StartDate: adminData.StartDate,
  4755. EndDate: adminData.EndDate,
  4756. }
  4757. tmpCompanyReportRecordNumList = append(tmpCompanyReportRecordNumList, tmpAdminRsReportRecordNum)
  4758. //组内数据汇总
  4759. if _, ok := tmpGroupTryOutNumMap[index]; !ok {
  4760. tmpGroupTryOutNumMap[index] = 0
  4761. }
  4762. if _, ok := tmpGroupFormalNumMap[index]; !ok {
  4763. tmpGroupFormalNumMap[index] = 0
  4764. }
  4765. if _, ok := tmpGroupActiveNumMap[index]; !ok {
  4766. tmpGroupActiveNumMap[index] = 0
  4767. }
  4768. if _, ok := tmpGroupAllActiveNumMap[index]; !ok {
  4769. tmpGroupAllActiveNumMap[index] = 0
  4770. }
  4771. if _, ok := tmpGroupNoIncrementalActiveNumMap[index]; !ok {
  4772. tmpGroupNoIncrementalActiveNumMap[index] = 0
  4773. }
  4774. tmpGroupTryOutNumMap[index] += tmpTryOutNum
  4775. tmpGroupFormalNumMap[index] += tmpFormalNum
  4776. tmpGroupActiveNumMap[index] += tmpActiveStatus
  4777. tmpGroupAllActiveNumMap[index] += tmpAllActiveStatus
  4778. tmpGroupNoIncrementalActiveNumMap[index] += tmpNoIncrementalActiveStatus
  4779. //组内数据汇总
  4780. if _, ok := tmpGroupTryOutIdMap[index]; !ok {
  4781. tmpGroupTryOutIdMap[index] = ""
  4782. }
  4783. if _, ok := tmpGroupFormalIdMap[index]; !ok {
  4784. tmpGroupFormalIdMap[index] = ""
  4785. }
  4786. if _, ok := tmpGroupActiveIdMap[index]; !ok {
  4787. tmpGroupActiveIdMap[index] = ""
  4788. }
  4789. if tmpTryOutId != "" {
  4790. tmpGroupTryOutIdSliceMap[index] = append(tmpGroupTryOutIdSliceMap[index], tmpTryOutId)
  4791. }
  4792. if tmpFormalId != "" {
  4793. tmpGroupFormalIdSliceMap[index] = append(tmpGroupFormalIdSliceMap[index], tmpFormalId)
  4794. }
  4795. if tmpActiveId != "" {
  4796. tmpGroupActiveIdSliceMap[index] = append(tmpGroupActiveIdSliceMap[index], tmpActiveId)
  4797. }
  4798. if tmpAllActiveId != "" {
  4799. tmpGroupAllActiveIdSliceMap[index] = append(tmpGroupAllActiveIdSliceMap[index], tmpAllActiveId)
  4800. }
  4801. if tmpNoIncrementalActiveId != "" {
  4802. tmpGroupNoIncrementalActiveIdSliceMap[index] = append(tmpGroupNoIncrementalActiveIdSliceMap[index], tmpNoIncrementalActiveId)
  4803. }
  4804. //总数据汇总
  4805. if _, ok := tmpAllTryOutNumMap[index]; !ok {
  4806. tmpAllTryOutNumMap[index] = 0
  4807. }
  4808. if _, ok := tmpAllFormalNumMap[index]; !ok {
  4809. tmpAllFormalNumMap[index] = 0
  4810. }
  4811. if _, ok := tmpAllActiveNumMap[index]; !ok {
  4812. tmpAllActiveNumMap[index] = 0
  4813. }
  4814. if _, ok := tmpAllAllActiveNumMap[index]; !ok {
  4815. tmpAllAllActiveNumMap[index] = 0
  4816. }
  4817. if _, ok := tmpAllNoIncrementalActiveNumMap[index]; !ok {
  4818. tmpAllNoIncrementalActiveNumMap[index] = 0
  4819. }
  4820. tmpAllTryOutNumMap[index] += tmpTryOutNum
  4821. tmpAllFormalNumMap[index] += tmpFormalNum
  4822. tmpAllActiveNumMap[index] += tmpActiveStatus
  4823. tmpAllAllActiveNumMap[index] += tmpAllActiveStatus
  4824. tmpAllNoIncrementalActiveNumMap[index] += tmpNoIncrementalActiveStatus
  4825. ////总数据汇总
  4826. //if _, ok := tmpAllTryOutIdMap[index]; !ok {
  4827. // tmpAllTryOutIdMap[index] = ""
  4828. //}
  4829. //if _, ok := tmpAllFormalIdMap[index]; !ok {
  4830. // tmpAllFormalIdMap[index] = ""
  4831. //}
  4832. //if _, ok := tmpAllActiveIdMap[index]; !ok {
  4833. // tmpAllActiveIdMap[index] = ""
  4834. //}
  4835. //tmpAllTryOutIdMap[index] += tmpTryOutId
  4836. //tmpAllFormalIdMap[index] += tmpFormalId
  4837. //tmpAllActiveIdMap[index] += tmpActiveId
  4838. }
  4839. tmpAdminReportRecord := statistic_report.AdminReportRecord{
  4840. Name: researcher.RealName,
  4841. AdminId: researcher.AdminId,
  4842. CompanyReportRecordNumList: tmpCompanyReportRecordNumList,
  4843. }
  4844. tmpGroupAdminReportRecord = append(tmpGroupAdminReportRecord, tmpAdminReportRecord)
  4845. }
  4846. for i := 0; i < len(tmpGroupActiveNumMap); i++ {
  4847. tmpGroupTryOutIdMap[i] = strings.Join(tmpGroupTryOutIdSliceMap[i], ",")
  4848. tmpGroupFormalIdMap[i] = strings.Join(tmpGroupFormalIdSliceMap[i], ",")
  4849. tmpGroupActiveIdMap[i] = strings.Join(tmpGroupActiveIdSliceMap[i], ",")
  4850. tmpGroupAllActiveIdMap[i] = strings.Join(tmpGroupAllActiveIdSliceMap[i], ",")
  4851. tmpGroupNoIncrementalActiveIdMap[i] = strings.Join(tmpGroupNoIncrementalActiveIdSliceMap[i], ",")
  4852. tmpGroupCompanyReportRecordNum := statistic_report.CompanyReportRecordNum{
  4853. TryOutNum: tmpGroupTryOutNumMap[i],
  4854. TryOutIds: tmpGroupTryOutIdMap[i],
  4855. FormalNum: tmpGroupFormalNumMap[i],
  4856. FormalIds: tmpGroupFormalIdMap[i],
  4857. ActiveNum: tmpGroupActiveNumMap[i],
  4858. ActiveIds: tmpGroupActiveIdMap[i],
  4859. AllActiveNum: tmpGroupAllActiveNumMap[i],
  4860. AllActiveIds: tmpGroupAllActiveIdMap[i],
  4861. NoIncrementalActiveNum: tmpGroupNoIncrementalActiveNumMap[i],
  4862. NoIncrementalActiveIds: tmpGroupNoIncrementalActiveIdMap[i],
  4863. StartDate: startDateIndexList[i],
  4864. EndDate: endDateIndexList[i],
  4865. }
  4866. tmpGroupCompanyReportRecordNumList = append(tmpGroupCompanyReportRecordNumList, tmpGroupCompanyReportRecordNum)
  4867. }
  4868. groupReportRecord := statistic_report.GroupReportRecord{
  4869. Item: tmpGroupAdminReportRecord,
  4870. Name: v.GroupName,
  4871. GroupId: v.GroupId,
  4872. CompanyReportRecordNumList: tmpGroupCompanyReportRecordNumList,
  4873. }
  4874. groupReportRecordList = append(groupReportRecordList, groupReportRecord)
  4875. }
  4876. //总体汇总数据
  4877. for i := 0; i < len(tmpAllFormalNumMap); i++ {
  4878. tmpGroupCompanyReportRecordNum := statistic_report.CompanyReportRecordNum{
  4879. TryOutNum: tmpAllTryOutNumMap[i],
  4880. TryOutIds: tmpAllTryOutIdMap[i],
  4881. FormalNum: tmpAllFormalNumMap[i],
  4882. FormalIds: tmpAllFormalIdMap[i],
  4883. ActiveNum: tmpAllActiveNumMap[i],
  4884. ActiveIds: tmpAllActiveIdMap[i],
  4885. AllActiveNum: tmpAllAllActiveNumMap[i],
  4886. AllActiveIds: tmpAllAllActiveIdMap[i],
  4887. NoIncrementalActiveNum: tmpAllNoIncrementalActiveNumMap[i],
  4888. NoIncrementalActiveIds: tmpAllNoIncrementalActiveIdMap[i],
  4889. StartDate: startDateIndexList[i],
  4890. EndDate: endDateIndexList[i],
  4891. }
  4892. allCompanyReportRecordNum = append(allCompanyReportRecordNum, tmpGroupCompanyReportRecordNum)
  4893. }
  4894. companyReportRecordResp.CompanyReportRecordNumList = allCompanyReportRecordNum
  4895. tmpList := groupReportRecordList
  4896. //因为RoleTypeCode不一样,所以需要重新从数据库取数据
  4897. adminInfo, _ := system.GetSysAdminById(sysUser.AdminId)
  4898. adminGroupId := adminInfo.GroupId
  4899. if tmpGroupId, ok := groupIdRelationMap[adminGroupId]; ok {
  4900. adminGroupId = tmpGroupId
  4901. }
  4902. switch adminInfo.RoleTypeCode {
  4903. case utils.ROLE_TYPE_CODE_FICC_GROUP, utils.ROLE_TYPE_CODE_FICC_TEAM:
  4904. for index, v := range tmpList {
  4905. //如果不是同一个分组,那么就移除该分组下的人员数据
  4906. if v.GroupId != adminGroupId {
  4907. tmpList[index].Item = make([]statistic_report.AdminReportRecord, 0)
  4908. } else {
  4909. tmpList[index], tmpList[0] = tmpList[0], tmpList[index]
  4910. }
  4911. }
  4912. companyReportRecordResp.List = tmpList
  4913. case utils.ROLE_TYPE_CODE_RAI_GROUP:
  4914. for index, v := range tmpList {
  4915. //如果不是同一个分组,那么就移除该分组下的人员数据
  4916. if v.GroupId != adminGroupId {
  4917. tmpList[index].Item = make([]statistic_report.AdminReportRecord, 0)
  4918. } else {
  4919. tmpList[index], tmpList[0] = tmpList[0], tmpList[index]
  4920. }
  4921. }
  4922. companyReportRecordResp.List = tmpList
  4923. case utils.ROLE_TYPE_CODE_FICC_ADMIN, utils.ROLE_TYPE_CODE_ADMIN, utils.ROLE_TYPE_CODE_RAI_ADMIN:
  4924. //管理员、超管看全部数据
  4925. companyReportRecordResp.List = tmpList
  4926. }
  4927. br.Ret = 200
  4928. br.Success = true
  4929. br.Msg = "获取成功"
  4930. br.Data = companyReportRecordResp
  4931. }
  4932. // CompanyList
  4933. // @Title 客户列表
  4934. // @Description 客户列表接口
  4935. // @Param request body statisticModels.IncrementalCompanyListReq true "type json string"
  4936. // @Success 200 {object} statistic_report.CompanyListResp
  4937. // @router /report/company_list [post]
  4938. func (this *StatisticReportController) CompanyList() {
  4939. br := new(models.BaseResponse).Init()
  4940. defer func() {
  4941. this.Data["json"] = br
  4942. this.ServeJSON()
  4943. }()
  4944. sysUser := this.SysUser
  4945. if sysUser == nil {
  4946. br.Msg = "请登录"
  4947. br.ErrMsg = "请登录,SysUser Is Empty"
  4948. br.Ret = 408
  4949. return
  4950. }
  4951. //roleTypeCode := sysUser.RoleTypeCode
  4952. var req statisticModels.IncrementalCompanyListReq
  4953. err := json.Unmarshal(this.Ctx.Input.RequestBody, &req)
  4954. if err != nil {
  4955. br.Msg = "参数解析异常!"
  4956. br.ErrMsg = "参数解析失败,Err:" + err.Error()
  4957. return
  4958. }
  4959. resp, err, errMsg := statistic_report.CompanyList(sysUser, req)
  4960. if err != nil {
  4961. br.Msg = err.Error()
  4962. br.ErrMsg = errMsg
  4963. return
  4964. }
  4965. br.Ret = 200
  4966. br.Success = true
  4967. br.Msg = "获取成功"
  4968. br.Data = resp
  4969. }
  4970. // RenewCompanyStatistics
  4971. // @Title 获取续约客户统计数据
  4972. // @Description 获取续约客户统计数据接口
  4973. // @Param DataType query string true "枚举值:week、month、time_interval"
  4974. // @Param ProductId query int true "客户类型 ficc:1 权益:2"
  4975. // @Param StartDate query string true "开始日期,格式:2022-04-06"
  4976. // @Param EndDate query string true "结束日期,格式:2022-04-06"
  4977. // @Success 200 {object} statistic_report.CompanyRenewRecordResp
  4978. // @router /report/renew_company [get]
  4979. func (this *StatisticReportController) RenewCompanyStatistics() {
  4980. br := new(models.BaseResponse).Init()
  4981. defer func() {
  4982. this.Data["json"] = br
  4983. this.ServeJSON()
  4984. }()
  4985. sysUser := this.SysUser
  4986. if sysUser == nil {
  4987. br.Msg = "请登录"
  4988. br.ErrMsg = "请登录,SysUser Is Empty"
  4989. br.Ret = 408
  4990. return
  4991. }
  4992. dataType := this.GetString("DataType")
  4993. productId, _ := this.GetInt("ProductId", 1)
  4994. startDate := this.GetString("StartDate")
  4995. endDate := this.GetString("EndDate")
  4996. var companyRenewDataMapList []statistic_report.CompanyRenewDataMap
  4997. var err error
  4998. var firstDate time.Time
  4999. switch dataType {
  5000. //获取列表
  5001. case "week":
  5002. nowWeekMonday := utils.GetNowWeekMonday() //本周周一
  5003. //companyRenewDataMapList, firstDate, err = statistic_report.GetWeekData()
  5004. companyRenewDataMapList, firstDate, err = statistic_report.GetRenewWeekDataNum(nowWeekMonday, productId, 6)
  5005. if err != nil {
  5006. br.Msg = "数据异常"
  5007. br.ErrMsg = "数据异常,Err:" + err.Error()
  5008. return
  5009. }
  5010. case "month":
  5011. nowMonthFirstDay := utils.GetNowMonthFirstDay() //本月第一天
  5012. //companyRenewDataMapList, firstDate, err = statistic_report.GetMonthData()
  5013. companyRenewDataMapList, firstDate, err = statistic_report.GetRenewMonthDataNum(nowMonthFirstDay, productId, 6)
  5014. if err != nil {
  5015. br.Msg = "数据异常"
  5016. br.ErrMsg = "数据异常,Err:" + err.Error()
  5017. return
  5018. }
  5019. case "time_interval":
  5020. if startDate == `` || endDate == `` {
  5021. br.Msg = "开始日期或结束日期不能为空"
  5022. br.ErrMsg = "开始日期或结束日期不能为空,Err:" + err.Error()
  5023. return
  5024. }
  5025. companyRenewDataMapList, firstDate, err = statistic_report.GetRenewTimeIntervalData(productId, startDate, endDate)
  5026. if err != nil {
  5027. br.Msg = "数据异常"
  5028. br.ErrMsg = "数据异常,Err:" + err.Error()
  5029. return
  5030. }
  5031. }
  5032. var group []services.AdminGroup
  5033. var groupIdRelationMap map[int]int
  5034. var groupMap map[int][]*roadshow.Researcher
  5035. //获取销售人员分组数据
  5036. if productId == 1 {
  5037. group, groupIdRelationMap, err = services.GetFiccSystemGroup()
  5038. if err != nil {
  5039. br.Msg = "获取信息失败!"
  5040. br.ErrMsg = "获取分组信息失败!Err:" + err.Error()
  5041. return
  5042. }
  5043. researcherList, tmpErr := services.GetFiccSeller(firstDate, groupIdRelationMap)
  5044. if tmpErr != nil {
  5045. err = tmpErr
  5046. }
  5047. groupMap = make(map[int][]*roadshow.Researcher)
  5048. for _, v := range researcherList {
  5049. if v.RoleTypeCode == "ficc_admin" {
  5050. findItems := groupMap[1]
  5051. findItems = append(findItems, v)
  5052. groupMap[1] = findItems
  5053. } else {
  5054. if findItems, ok := groupMap[v.GroupId]; ok {
  5055. findItems = append(findItems, v)
  5056. groupMap[v.GroupId] = findItems
  5057. } else {
  5058. findItems = append(findItems, v)
  5059. groupMap[v.GroupId] = findItems
  5060. }
  5061. }
  5062. }
  5063. } else {
  5064. group, groupIdRelationMap, err = services.GetRaiSystemGroup()
  5065. if err != nil {
  5066. br.Msg = "获取信息失败!"
  5067. br.ErrMsg = "获取分组信息失败!Err:" + err.Error()
  5068. return
  5069. }
  5070. researcherList, tmpErr := services.GetRaiSeller(groupIdRelationMap)
  5071. if tmpErr != nil {
  5072. err = tmpErr
  5073. }
  5074. groupMap = make(map[int][]*roadshow.Researcher)
  5075. for _, v := range researcherList {
  5076. if v.RoleTypeCode == "rai_admin" {
  5077. findItems := groupMap[1]
  5078. findItems = append(findItems, v)
  5079. groupMap[1] = findItems
  5080. } else {
  5081. if findItems, ok := groupMap[v.GroupId]; ok {
  5082. findItems = append(findItems, v)
  5083. groupMap[v.GroupId] = findItems
  5084. } else {
  5085. findItems = append(findItems, v)
  5086. groupMap[v.GroupId] = findItems
  5087. }
  5088. }
  5089. }
  5090. }
  5091. //数据处理
  5092. groupRenewRecordList := make([]statistic_report.GroupRenewRecord, 0)
  5093. allCompanyRenewRecordNum := make([]statistic_report.CompanyRenewRecordNum, 0)
  5094. companyRenewRecordResp := statistic_report.CompanyRenewRecordResp{
  5095. List: groupRenewRecordList,
  5096. CompanyRenewRecordNumList: allCompanyRenewRecordNum,
  5097. }
  5098. startDateIndexList := make(map[int]string) //开始时间间隔map
  5099. endDateIndexList := make(map[int]string) //结束时间间隔map
  5100. //客户数汇总
  5101. tmpAllNotRenewNumMap := make(map[int]int)
  5102. tmpAllRenewFollowNumMap := make(map[int]int)
  5103. tmpAllExpireNumMap := make(map[int]int)
  5104. tmpAllRenewNumMap := make(map[int]int)
  5105. tmpAllUnusualRenewNumMap := make(map[int]int) // 续约异常客户数量汇总
  5106. tmpAllFormalCompanyNumMap := make(map[int]int) // 当期正式客户数量汇总
  5107. //id集合汇总
  5108. tmpAllNotRenewIdMap := make(map[int]string)
  5109. tmpAllRenewFollowIdMap := make(map[int]string)
  5110. tmpAllExpireIdMap := make(map[int]string)
  5111. tmpAllRenewIdMap := make(map[int]string)
  5112. tmpAllUnusualRenewIdMap := make(map[int]string) // 续约异常客户id汇总
  5113. tmpAllUnusualRenewIdSlice := make(map[int][]string, 0)
  5114. for _, v := range group {
  5115. v.ResearcherList = groupMap[v.GroupId]
  5116. tmpGroupAdminRenewRecord := make([]statistic_report.AdminRenewRecord, 0)
  5117. tmpGroupCompanyRenewRecordNumList := make([]statistic_report.CompanyRenewRecordNum, 0)
  5118. //数量统计
  5119. tmpGroupNotRenewNumMap := make(map[int]int)
  5120. tmpGroupRenewFollowNumMap := make(map[int]int)
  5121. tmpGroupExpireNumMap := make(map[int]int)
  5122. tmpGroupRenewNumMap := make(map[int]int)
  5123. tmpGroupUnusualRenewNumMap := make(map[int]int) //组内续约异常客户数
  5124. //id集合
  5125. tmpGroupNotRenewIdSliceMap := make(map[int][]string)
  5126. tmpGroupRenewFollowIdSliceMap := make(map[int][]string)
  5127. tmpGroupExpireIdSliceMap := make(map[int][]string)
  5128. tmpGroupRenewIdSliceMap := make(map[int][]string)
  5129. tmpGroupUnusualRenewIdSliceMap := make(map[int][]string) // 组内续约异常客户id汇总
  5130. //id集合
  5131. tmpGroupNotRenewIdMap := make(map[int]string)
  5132. tmpGroupRenewFollowIdMap := make(map[int]string)
  5133. tmpGroupExpireIdMap := make(map[int]string)
  5134. tmpGroupRenewIdMap := make(map[int]string)
  5135. tmpGroupUnusualRenewIdMap := make(map[int]string) // 组内续约异常客户id汇总
  5136. for _, researcher := range groupMap[v.GroupId] {
  5137. //组内研究员数据
  5138. //每个区间的数据
  5139. tmpCompanyRenewRecordNumList := make([]statistic_report.CompanyRenewRecordNum, 0)
  5140. for index, adminData := range companyRenewDataMapList {
  5141. startDateIndexList[index] = adminData.StartDate
  5142. endDateIndexList[index] = adminData.EndDate
  5143. var tmpNotRenewNum, tmpRenewFollowNum, tmpExpireStatus, tmpRenewStatus, tmpUnusualRenewStatus int
  5144. //var tmpNotRenewIds, tmpRenewFollowIds, tmpExpireIds string
  5145. var tmpNotRenewIdSlice, tmpRenewFollowIdSlice, tmpExpireIdSlice, tmpRenewIdSlice, tmpUnusualRenewIdSlice []string
  5146. var tmpNotRenewId, tmpRenewFollowId, tmpExpireId, tmpRenewId, tmpUnusualRenewId string
  5147. if num, ok := adminData.NotRenewMap[researcher.AdminId]; ok {
  5148. tmpNotRenewNum = num
  5149. tmpNotRenewIdSlice = append(tmpNotRenewIdSlice, adminData.NotRenewIdMap[researcher.AdminId])
  5150. tmpNotRenewId = strings.Join(tmpNotRenewIdSlice, ",")
  5151. }
  5152. if num, ok := adminData.RenewFollowMap[researcher.AdminId]; ok {
  5153. tmpRenewFollowNum = num
  5154. tmpRenewFollowIdSlice = append(tmpRenewFollowIdSlice, adminData.RenewFollowIdMap[researcher.AdminId])
  5155. tmpRenewFollowId = strings.Join(tmpRenewFollowIdSlice, ",")
  5156. }
  5157. if num, ok := adminData.ExpireMap[researcher.AdminId]; ok {
  5158. tmpExpireStatus = num
  5159. tmpExpireIdSlice = append(tmpExpireIdSlice, adminData.ExpireIdMap[researcher.AdminId])
  5160. tmpExpireId = strings.Join(tmpExpireIdSlice, ",")
  5161. }
  5162. if num, ok := adminData.RenewMap[researcher.AdminId]; ok {
  5163. tmpRenewStatus = num
  5164. tmpRenewIdSlice = append(tmpRenewIdSlice, adminData.RenewIdMap[researcher.AdminId])
  5165. tmpRenewId = strings.Join(tmpRenewIdSlice, ",")
  5166. }
  5167. // 续约异常客户
  5168. if num, ok := adminData.UnusualRenewMap[researcher.AdminId]; ok {
  5169. tmpUnusualRenewStatus = num
  5170. tmpUnusualRenewIdSlice = append(tmpUnusualRenewIdSlice, adminData.UnusualRenewIdMap[researcher.AdminId])
  5171. tmpUnusualRenewId = strings.Join(tmpUnusualRenewIdSlice, ",")
  5172. }
  5173. tmpAdminRsRenewRecordNum := statistic_report.CompanyRenewRecordNum{
  5174. NotRenewNum: tmpNotRenewNum,
  5175. NotRenewIds: tmpNotRenewId,
  5176. RenewFollowNum: tmpRenewFollowNum,
  5177. RenewFollowIds: tmpRenewFollowId,
  5178. ExpireNum: tmpExpireStatus,
  5179. ExpireIds: tmpExpireId,
  5180. RenewNum: tmpRenewStatus,
  5181. RenewIds: tmpRenewId,
  5182. UnusualRenewNum: tmpUnusualRenewStatus,
  5183. UnusualRenewIds: tmpUnusualRenewId,
  5184. StartDate: adminData.StartDate,
  5185. EndDate: adminData.EndDate,
  5186. }
  5187. tmpCompanyRenewRecordNumList = append(tmpCompanyRenewRecordNumList, tmpAdminRsRenewRecordNum)
  5188. //组内数据汇总
  5189. if _, ok := tmpGroupNotRenewNumMap[index]; !ok {
  5190. tmpGroupNotRenewNumMap[index] = 0
  5191. }
  5192. if _, ok := tmpGroupRenewFollowNumMap[index]; !ok {
  5193. tmpGroupRenewFollowNumMap[index] = 0
  5194. }
  5195. if _, ok := tmpGroupExpireNumMap[index]; !ok {
  5196. tmpGroupExpireNumMap[index] = 0
  5197. }
  5198. if _, ok := tmpGroupRenewNumMap[index]; !ok {
  5199. tmpGroupRenewNumMap[index] = 0
  5200. }
  5201. if _, ok := tmpGroupUnusualRenewNumMap[index]; !ok {
  5202. tmpGroupUnusualRenewNumMap[index] = 0
  5203. }
  5204. tmpGroupNotRenewNumMap[index] += tmpNotRenewNum
  5205. tmpGroupRenewFollowNumMap[index] += tmpRenewFollowNum
  5206. tmpGroupExpireNumMap[index] += tmpExpireStatus
  5207. tmpGroupRenewNumMap[index] += tmpRenewStatus
  5208. tmpGroupUnusualRenewNumMap[index] += tmpUnusualRenewStatus
  5209. //组内数据汇总
  5210. if _, ok := tmpGroupNotRenewIdMap[index]; !ok {
  5211. tmpGroupNotRenewIdMap[index] = ""
  5212. }
  5213. if _, ok := tmpGroupRenewFollowIdMap[index]; !ok {
  5214. tmpGroupRenewFollowIdMap[index] = ""
  5215. }
  5216. if _, ok := tmpGroupExpireIdMap[index]; !ok {
  5217. tmpGroupExpireIdMap[index] = ""
  5218. }
  5219. if tmpNotRenewId != "" {
  5220. tmpGroupNotRenewIdSliceMap[index] = append(tmpGroupNotRenewIdSliceMap[index], tmpNotRenewId)
  5221. }
  5222. if tmpRenewFollowId != "" {
  5223. tmpGroupRenewFollowIdSliceMap[index] = append(tmpGroupRenewFollowIdSliceMap[index], tmpRenewFollowId)
  5224. }
  5225. if tmpExpireId != "" {
  5226. tmpGroupExpireIdSliceMap[index] = append(tmpGroupExpireIdSliceMap[index], tmpExpireId)
  5227. }
  5228. if tmpRenewId != "" {
  5229. tmpGroupRenewIdSliceMap[index] = append(tmpGroupRenewIdSliceMap[index], tmpRenewId)
  5230. }
  5231. if tmpUnusualRenewId != "" {
  5232. tmpGroupUnusualRenewIdSliceMap[index] = append(tmpGroupUnusualRenewIdSliceMap[index], tmpUnusualRenewId)
  5233. tmpSlice := strings.Split(tmpUnusualRenewId, ",")
  5234. tmpAllUnusualRenewIdSlice[index] = append(tmpAllUnusualRenewIdSlice[index], tmpSlice...)
  5235. }
  5236. //总数据汇总
  5237. if _, ok := tmpAllNotRenewNumMap[index]; !ok {
  5238. tmpAllNotRenewNumMap[index] = 0
  5239. }
  5240. if _, ok := tmpAllRenewFollowNumMap[index]; !ok {
  5241. tmpAllRenewFollowNumMap[index] = 0
  5242. }
  5243. if _, ok := tmpAllExpireNumMap[index]; !ok {
  5244. tmpAllExpireNumMap[index] = 0
  5245. }
  5246. if _, ok := tmpAllRenewNumMap[index]; !ok {
  5247. tmpAllRenewNumMap[index] = 0
  5248. }
  5249. tmpAllNotRenewNumMap[index] += tmpNotRenewNum
  5250. tmpAllRenewFollowNumMap[index] += tmpRenewFollowNum
  5251. tmpAllExpireNumMap[index] += tmpExpireStatus
  5252. tmpAllRenewNumMap[index] += tmpRenewStatus
  5253. tmpAllUnusualRenewNumMap[index] = adminData.UnusualRenewTotal
  5254. tmpAllFormalCompanyNumMap[index] = adminData.FormalCompanyTotal
  5255. }
  5256. tmpAdminRenewRecord := statistic_report.AdminRenewRecord{
  5257. Name: researcher.RealName,
  5258. AdminId: researcher.AdminId,
  5259. CompanyRenewRecordNumList: tmpCompanyRenewRecordNumList,
  5260. }
  5261. tmpGroupAdminRenewRecord = append(tmpGroupAdminRenewRecord, tmpAdminRenewRecord)
  5262. }
  5263. for i := 0; i < len(tmpGroupExpireNumMap); i++ {
  5264. tmpGroupNotRenewIdMap[i] = strings.Join(tmpGroupNotRenewIdSliceMap[i], ",")
  5265. tmpGroupRenewFollowIdMap[i] = strings.Join(tmpGroupRenewFollowIdSliceMap[i], ",")
  5266. tmpGroupExpireIdMap[i] = strings.Join(tmpGroupExpireIdSliceMap[i], ",")
  5267. tmpGroupRenewIdMap[i] = strings.Join(tmpGroupRenewIdSliceMap[i], ",")
  5268. tmpGroupUnusualRenewIdMap[i] = strings.Join(tmpGroupUnusualRenewIdSliceMap[i], ",")
  5269. tmpGroupCompanyRenewRecordNum := statistic_report.CompanyRenewRecordNum{
  5270. NotRenewNum: tmpGroupNotRenewNumMap[i],
  5271. NotRenewIds: tmpGroupNotRenewIdMap[i],
  5272. RenewFollowNum: tmpGroupRenewFollowNumMap[i],
  5273. RenewFollowIds: tmpGroupRenewFollowIdMap[i],
  5274. ExpireNum: tmpGroupExpireNumMap[i],
  5275. ExpireIds: tmpGroupExpireIdMap[i],
  5276. RenewNum: tmpGroupRenewNumMap[i],
  5277. RenewIds: tmpGroupRenewIdMap[i],
  5278. UnusualRenewNum: tmpGroupUnusualRenewNumMap[i],
  5279. UnusualRenewIds: tmpGroupUnusualRenewIdMap[i],
  5280. StartDate: startDateIndexList[i],
  5281. EndDate: endDateIndexList[i],
  5282. }
  5283. tmpGroupCompanyRenewRecordNumList = append(tmpGroupCompanyRenewRecordNumList, tmpGroupCompanyRenewRecordNum)
  5284. }
  5285. groupRenewRecord := statistic_report.GroupRenewRecord{
  5286. Item: tmpGroupAdminRenewRecord,
  5287. Name: v.GroupName,
  5288. GroupId: v.GroupId,
  5289. CompanyRenewRecordNumList: tmpGroupCompanyRenewRecordNumList,
  5290. }
  5291. groupRenewRecordList = append(groupRenewRecordList, groupRenewRecord)
  5292. }
  5293. // 总体数据汇总,去掉重复销售的公司个数
  5294. //总体汇总数据
  5295. for i := 0; i < len(tmpAllRenewFollowNumMap); i++ {
  5296. // 未续约统计数据去重
  5297. unusualRenewIdsFinal := make([]string, 0)
  5298. unusualRenewIdsMap := make(map[string]struct{})
  5299. for _, id := range tmpAllUnusualRenewIdSlice[i] {
  5300. if _, ok := unusualRenewIdsMap[id]; !ok {
  5301. unusualRenewIdsFinal = append(unusualRenewIdsFinal, id)
  5302. unusualRenewIdsMap[id] = struct{}{}
  5303. }
  5304. }
  5305. tmpAllUnusualRenewNumMap[i] = len(unusualRenewIdsFinal)
  5306. tmpAllUnusualRenewIdMap[i] = strings.Join(unusualRenewIdsFinal, ",")
  5307. unusualRate := ``
  5308. if tmpAllUnusualRenewNumMap[i] > 0 && tmpAllFormalCompanyNumMap[i] > 0 {
  5309. unusualRate = decimal.NewFromInt(int64(tmpAllUnusualRenewNumMap[i])*100).Div(decimal.NewFromInt(int64(tmpAllFormalCompanyNumMap[i]))).Round(2).String() + "%"
  5310. }
  5311. tmpGroupCompanyRenewRecordNum := statistic_report.CompanyRenewRecordNum{
  5312. NotRenewNum: tmpAllNotRenewNumMap[i],
  5313. NotRenewIds: tmpAllNotRenewIdMap[i],
  5314. RenewFollowNum: tmpAllRenewFollowNumMap[i],
  5315. RenewFollowIds: tmpAllRenewFollowIdMap[i],
  5316. ExpireNum: tmpAllExpireNumMap[i],
  5317. ExpireIds: tmpAllExpireIdMap[i],
  5318. RenewNum: tmpAllRenewNumMap[i],
  5319. RenewIds: tmpAllRenewIdMap[i],
  5320. UnusualRenewNum: tmpAllUnusualRenewNumMap[i],
  5321. UnusualRenewIds: tmpAllUnusualRenewIdMap[i],
  5322. UnusualRate: unusualRate, // 异常率
  5323. StartDate: startDateIndexList[i],
  5324. EndDate: endDateIndexList[i],
  5325. }
  5326. allCompanyRenewRecordNum = append(allCompanyRenewRecordNum, tmpGroupCompanyRenewRecordNum)
  5327. }
  5328. companyRenewRecordResp.CompanyRenewRecordNumList = allCompanyRenewRecordNum
  5329. tmpList := groupRenewRecordList
  5330. //因为RoleTypeCode不一样,所以需要重新从数据库取数据
  5331. adminInfo, _ := system.GetSysAdminById(sysUser.AdminId)
  5332. adminGroupId := adminInfo.GroupId
  5333. if tmpGroupId, ok := groupIdRelationMap[adminGroupId]; ok {
  5334. adminGroupId = tmpGroupId
  5335. }
  5336. if productId == 2 {
  5337. //对权益组排个序
  5338. tmpList = statistic_report.SortGroupSellers(tmpList)
  5339. }
  5340. switch adminInfo.RoleTypeCode {
  5341. case utils.ROLE_TYPE_CODE_FICC_GROUP, utils.ROLE_TYPE_CODE_FICC_TEAM:
  5342. for index, v := range tmpList {
  5343. //如果不是同一个分组,那么就移除该分组下的人员数据
  5344. if v.GroupId != adminGroupId {
  5345. tmpList[index].Item = make([]statistic_report.AdminRenewRecord, 0)
  5346. } else {
  5347. tmpList[index], tmpList[0] = tmpList[0], tmpList[index]
  5348. }
  5349. }
  5350. companyRenewRecordResp.List = tmpList
  5351. case utils.ROLE_TYPE_CODE_RAI_GROUP:
  5352. for index, v := range tmpList {
  5353. //如果不是同一个分组,那么就移除该分组下的人员数据
  5354. if v.GroupId != adminGroupId {
  5355. tmpList[index].Item = make([]statistic_report.AdminRenewRecord, 0)
  5356. } else {
  5357. tmpList[index], tmpList[0] = tmpList[0], tmpList[index]
  5358. }
  5359. }
  5360. companyRenewRecordResp.List = tmpList
  5361. case utils.ROLE_TYPE_CODE_FICC_ADMIN, utils.ROLE_TYPE_CODE_ADMIN, utils.ROLE_TYPE_CODE_RAI_ADMIN:
  5362. //管理员、超管看全部数据
  5363. companyRenewRecordResp.List = tmpList
  5364. }
  5365. br.Ret = 200
  5366. br.Success = true
  5367. br.Msg = "获取成功"
  5368. br.Data = companyRenewRecordResp
  5369. }
  5370. // List
  5371. // @Title 商品到款统计列表
  5372. // @Description 商品到款统计列表
  5373. // @Param Keyword query string false "关键词"
  5374. // @Param ServiceType query int false "套餐类型"
  5375. // @Param StartDate query string false "合同开始日期"
  5376. // @Param EndDate query string false "合同结束日期"
  5377. // @Param TimeType query int false "时间类型: 1-开票时间; 2-到款时间"
  5378. // @Param hasInvoice query string false "是否已开票: 0-否; 1-是; 空-全部"
  5379. // @Param HasPayment query string false "是否已到款: 0-否; 1-是; 空-全部"
  5380. // @Param ListParam query int false "套餐类型: 0-全部; 1-ficc; 2-权益"
  5381. // @Param SortParam query string false "排序字段参数,用来排序的字段, 枚举值:'invoice_time':开票日 、 'payment_date':到款日"
  5382. // @Param SortType query string true "如何排序,是正序还是倒序,枚举值:`asc 正序`,`desc 倒叙`"
  5383. // @Success 200 {object} fms.ContractRegisterItem
  5384. // @router /census/invoice_payment/list [get]
  5385. func (this *StatisticReportController) InvoicePaymentList() {
  5386. br := new(models.BaseResponse).Init()
  5387. defer func() {
  5388. this.Data["json"] = br
  5389. this.ServeJSON()
  5390. }()
  5391. sysUser := this.SysUser
  5392. if sysUser == nil {
  5393. br.Msg = "请登录"
  5394. br.ErrMsg = "请登录,SysUser Is Empty"
  5395. br.Ret = 408
  5396. return
  5397. }
  5398. keyword := this.GetString("Keyword")
  5399. serviceType := this.GetString("ServiceType")
  5400. timeType, _ := this.GetInt("TimeType")
  5401. startDate := this.GetString("StartDate")
  5402. endDate := this.GetString("EndDate")
  5403. hasInvoice := this.GetString("HasInvoice")
  5404. hasPayment := this.GetString("HasPayment")
  5405. sortParam := this.GetString("SortParam")
  5406. sortType := this.GetString("SortType")
  5407. sellerIdstr := this.GetString("SellerIds")
  5408. cond := `1 = 1`
  5409. pars := make([]interface{}, 0)
  5410. // 客户姓名/销售
  5411. if keyword != "" {
  5412. kw := "%" + keyword + "%"
  5413. cond += ` AND b.company_name LIKE ?`
  5414. pars = append(pars, kw)
  5415. }
  5416. if sellerIdstr != "" {
  5417. //sellerIds := strings.Split(sellerIdstr, ",")
  5418. cond += ` AND (c.seller_id in (` + sellerIdstr + `) OR d.seller_id in (` + sellerIdstr + `))`
  5419. //pars = append(pars, sellerIds, sellerIds)
  5420. }
  5421. // 套餐筛选
  5422. if serviceType != "" {
  5423. serviceTypes := strings.Split(serviceType, ",")
  5424. tempRegisterIds, e := fms.GetContractRegisterIdsByTempId(serviceTypes)
  5425. if e != nil {
  5426. br.Msg = "获取失败!"
  5427. br.ErrMsg = "获取合同登记IDs失败,Err:" + e.Error()
  5428. return
  5429. }
  5430. if len(tempRegisterIds) > 0 {
  5431. cond += ` AND a.register_id IN (` + utils.GetOrmInReplace(len(tempRegisterIds)) + `)`
  5432. pars = append(pars, tempRegisterIds)
  5433. } else {
  5434. cond += ` AND 1 = 2`
  5435. }
  5436. }
  5437. var depId int
  5438. if sysUser.RoleTypeCode == utils.ROLE_TYPE_CODE_FICC_ADMIN {
  5439. depId = 2
  5440. } else if sysUser.RoleTypeCode == utils.ROLE_TYPE_CODE_RAI_ADMIN {
  5441. depId = 5
  5442. }
  5443. dshiAdminId := 13
  5444. if utils.RunMode == "debug" {
  5445. dshiAdminId = 233
  5446. }
  5447. if sysUser.RoleTypeCode == utils.ROLE_TYPE_CODE_FICC_ADMIN || sysUser.RoleTypeCode == utils.ROLE_TYPE_CODE_RAI_ADMIN {
  5448. sellerIdsList, err := system.GetSellerIdsByDepId(depId)
  5449. if err != nil {
  5450. br.Msg = "获取失败!"
  5451. br.ErrMsg = "获取商品到款统计列表总数失败,Err:" + err.Error()
  5452. return
  5453. }
  5454. cond += ` AND (c.seller_id IN (` + strings.Join(sellerIdsList, ",") + `) OR d.seller_id IN (` + strings.Join(sellerIdsList, ",") + `))`
  5455. } else if sysUser.RoleTypeCode == utils.ROLE_TYPE_CODE_FICC_GROUP && sysUser.AdminId == dshiAdminId {
  5456. groupTeamSellerList, err := system.GetSysUserByParentIdGroupId(5)
  5457. if err != nil {
  5458. br.Msg = "获取销售失败"
  5459. br.ErrMsg = "获取销售失败,Err:" + err.Error()
  5460. return
  5461. }
  5462. sellerIdsList := ""
  5463. for _, v := range groupTeamSellerList {
  5464. sellerIdsList += strconv.Itoa(v.AdminId) + ","
  5465. }
  5466. sellerIdsList = strings.TrimRight(sellerIdsList, ",")
  5467. cond += ` AND (c.seller_id IN (` + sellerIdsList + `) OR d.seller_id IN (` + sellerIdsList + `))`
  5468. pars = append(pars)
  5469. } else if sysUser.RoleTypeCode != utils.ROLE_TYPE_CODE_ADMIN {
  5470. cond += ` AND (c.seller_id=? OR d.seller_id=?)`
  5471. pars = append(pars, sysUser.AdminId, sysUser.AdminId)
  5472. }
  5473. // 开票到款日期
  5474. if timeType != 0 {
  5475. if timeType == 1 && startDate != "" && endDate != "" {
  5476. st := fmt.Sprint(startDate, " 00:00:00")
  5477. ed := fmt.Sprint(endDate, " 23:59:59")
  5478. cond += ` AND (c.invoice_time BETWEEN ? AND ?) `
  5479. pars = append(pars, st, ed)
  5480. } else if timeType == 2 && startDate != "" && endDate != "" {
  5481. st := fmt.Sprint(startDate, " 00:00:00")
  5482. ed := fmt.Sprint(endDate, " 23:59:59")
  5483. cond += ` AND (d.invoice_time BETWEEN ? AND ?) `
  5484. pars = append(pars, st, ed)
  5485. } else if timeType == 3 && startDate != "" && endDate != "" {
  5486. st := fmt.Sprint(startDate, " 00:00:00")
  5487. ed := fmt.Sprint(endDate, " 23:59:59")
  5488. cond += ` AND (c.invoice_time BETWEEN ? AND ?) AND (d.invoice_time BETWEEN ? AND ?) `
  5489. pars = append(pars, st, ed, st, ed)
  5490. }
  5491. } else if startDate != "" && endDate != "" {
  5492. st := fmt.Sprint(startDate, " 00:00:00")
  5493. ed := fmt.Sprint(endDate, " 23:59:59")
  5494. cond += ` AND ((c.invoice_time BETWEEN ? AND ?) or (d.invoice_time BETWEEN ? AND ?))`
  5495. pars = append(pars, st, ed, st, ed)
  5496. }
  5497. if hasInvoice == "1" {
  5498. cond += ` AND a.invoice_id > 0 `
  5499. } else if hasInvoice == "0" {
  5500. cond += ` AND a.invoice_id = 0 `
  5501. }
  5502. if hasPayment == "1" {
  5503. cond += ` AND a.payment_id > 0 `
  5504. } else if hasPayment == "0" {
  5505. cond += ` AND a.payment_id = 0 `
  5506. }
  5507. pageSize, _ := this.GetInt("PageSize")
  5508. currentIndex, _ := this.GetInt("CurrentIndex")
  5509. var startSize int
  5510. if pageSize <= 0 {
  5511. pageSize = utils.PageSize20
  5512. }
  5513. if currentIndex <= 0 {
  5514. currentIndex = 1
  5515. }
  5516. startSize = utils.StartIndex(currentIndex, pageSize)
  5517. //排序
  5518. if sortType == "" {
  5519. sortType = "desc"
  5520. }
  5521. if sortType != "desc" && sortType != "asc" {
  5522. br.Msg = "排序类型不正确!"
  5523. return
  5524. }
  5525. var order string
  5526. if sortParam == "" {
  5527. order = ` ORDER BY sort_invoice_id ,sort_payment_id desc,c.invoice_time desc,c.amount desc,a.create_time desc `
  5528. } else if sortParam == "invoice_time" {
  5529. if sortType == "asc" {
  5530. order = ` ORDER BY sort_invoice_id desc,c.invoice_time ,c.amount ,a.create_time ASC `
  5531. } else {
  5532. order = ` ORDER BY sort_invoice_id ,c.invoice_time desc,c.amount desc,a.create_time desc `
  5533. }
  5534. } else if sortParam == "payment_date" {
  5535. if sortType == "asc" {
  5536. order = ` ORDER BY sort_payment_id desc,d.invoice_time ,d.amount ,a.create_time `
  5537. } else {
  5538. order = ` ORDER BY sort_payment_id ,d.invoice_time desc,d.amount desc,a.create_time desc `
  5539. }
  5540. } else {
  5541. br.Msg = "排序字段不正确!"
  5542. return
  5543. }
  5544. registerList, total, e := fms.GetInvoicePaymentCensusPageList(cond, pars, order, startSize, pageSize)
  5545. if e != nil {
  5546. br.Msg = "获取失败!"
  5547. br.ErrMsg = "获取商品到款统计列表总数失败,Err:" + e.Error()
  5548. return
  5549. }
  5550. queryRegisterIds := make([]int, 0)
  5551. for i := range registerList {
  5552. queryRegisterIds = append(queryRegisterIds, registerList[i].ContractRegisterId)
  5553. }
  5554. //fmt.Println("queryRegisterIds:",queryRegisterIds)
  5555. results := new(fms.InvoicePaymentCensusResp)
  5556. if len(queryRegisterIds) > 0 {
  5557. // 获取汇总数据IDs, 用于查询合计数据
  5558. summaryIdsCond := cond
  5559. summaryIdsPars := pars
  5560. summaryIds, e := fms.GetInvoicePaymentCensusSummaryDataIds(summaryIdsCond, summaryIdsPars)
  5561. if e != nil {
  5562. br.Msg = "获取失败!"
  5563. br.ErrMsg = "获取商品到款汇总IDs失败,Err:" + e.Error()
  5564. return
  5565. }
  5566. //fmt.Println("summaryIds:",summaryIds)
  5567. var listErr, totalErr, totalGroupErr error
  5568. wg := sync.WaitGroup{}
  5569. // 响应列表
  5570. respList := make([]*fms.InvoicePaymentCensusItem, 0)
  5571. summaryList := make([]*fms.InvoicePaymentSummaryItem, 0)
  5572. wg.Add(1)
  5573. go func() {
  5574. defer wg.Done()
  5575. // 获取汇总数据
  5576. summaryCond := cond
  5577. summaryCond += ` AND a.register_id IN (` + utils.GetOrmInReplace(len(queryRegisterIds)) + `)`
  5578. summaryPars := pars
  5579. summaryPars = append(summaryPars, queryRegisterIds)
  5580. summaryData, e := fms.GetInvoicePaymentCensusSummaryData(summaryCond, summaryPars)
  5581. if e != nil {
  5582. br.Msg = "获取失败!"
  5583. br.ErrMsg = "获取商品到款汇总列表失败,Err:" + e.Error()
  5584. return
  5585. }
  5586. summaryList = summaryData
  5587. //summaryIds := make([]int, 0)
  5588. paymentIds := make([]int, 0)
  5589. for i := range summaryList {
  5590. //summaryIds = append(summaryIds, summaryList[i].SummaryId)
  5591. if summaryList[i].PaymentId > 0 {
  5592. paymentIds = append(paymentIds, summaryList[i].PaymentId)
  5593. }
  5594. }
  5595. // 合同套餐
  5596. /*contractServiceCond := `contract_register_id IN ?`
  5597. contractServicePars := make([]interface{}, 0)
  5598. contractServicePars = append(contractServicePars, queryRegisterIds)
  5599. contractServiceOB := new(fms.ContractService)
  5600. contractServiceList, e := contractServiceOB.List(contractServiceCond, contractServicePars)
  5601. if e != nil {
  5602. listErr = fmt.Errorf("获取合同套餐列表失败, Err: %s", e.Error())
  5603. return
  5604. }
  5605. contractServiceMap := make(map[int][]*fms.ContractService, 0)
  5606. servicesNameMap := make(map[int][]string, 0)
  5607. for i := range contractServiceList {
  5608. if contractServiceMap[contractServiceList[i].ContractRegisterId] == nil {
  5609. contractServiceMap[contractServiceList[i].ContractRegisterId] = make([]*fms.ContractService, 0)
  5610. }
  5611. contractServiceMap[contractServiceList[i].ContractRegisterId] = append(contractServiceMap[contractServiceList[i].ContractRegisterId], contractServiceList[i])
  5612. servicesNameMap[contractServiceList[i].ContractRegisterId] = append(servicesNameMap[contractServiceList[i].ContractRegisterId], contractServiceList[i].Title)
  5613. }
  5614. */
  5615. servicesNameMap, serviceFormatMap, e := fmsService.GetContractServiceNameFormat(queryRegisterIds)
  5616. if e != nil {
  5617. listErr = fmt.Errorf("获取合同套餐列表失败, Err: %s", e.Error())
  5618. return
  5619. }
  5620. // 到款套餐分配
  5621. serviceAmountMap := make(map[int][]*fms.ContractPaymentServiceAmount, 0)
  5622. if len(paymentIds) > 0 {
  5623. serviceAmountCond := ` AND contract_payment_id IN (` + utils.GetOrmInReplace(len(paymentIds)) + `)`
  5624. serviceAmountPars := make([]interface{}, 0)
  5625. serviceAmountPars = append(serviceAmountPars, paymentIds)
  5626. serviceAmountOB := new(fms.ContractPaymentServiceAmount)
  5627. serviceAmountList, e := serviceAmountOB.List(serviceAmountCond, serviceAmountPars)
  5628. if e != nil {
  5629. listErr = fmt.Errorf("获取到款套餐分配列表失败, Err: %s", e.Error())
  5630. return
  5631. }
  5632. for i := range serviceAmountList {
  5633. if serviceAmountMap[serviceAmountList[i].ContractPaymentId] == nil {
  5634. serviceAmountMap[serviceAmountList[i].ContractPaymentId] = make([]*fms.ContractPaymentServiceAmount, 0)
  5635. }
  5636. serviceAmountMap[serviceAmountList[i].ContractPaymentId] = append(serviceAmountMap[serviceAmountList[i].ContractPaymentId], serviceAmountList[i])
  5637. }
  5638. }
  5639. // 重组汇总数据
  5640. summaryMap := make(map[int][]*fms.InvoicePaymentCensusInfo)
  5641. amountMap := make(map[string]*fms.ContractPaymentServiceAmount)
  5642. for i := range summaryList {
  5643. v := new(fms.InvoicePaymentCensusInfo)
  5644. v.InvoiceId = summaryList[i].InvoiceId
  5645. v.InvoiceDate = utils.TimeTransferString(utils.FormatDate, summaryList[i].InvoiceDate)
  5646. v.InvoiceAmount = summaryList[i].InvoiceAmount
  5647. v.SellerId = summaryList[i].SellerId
  5648. v.SellerName = summaryList[i].SellerName
  5649. v.SellerGroupId = summaryList[i].SellerGroupId
  5650. v.SellerGroupName = summaryList[i].SellerGroupName
  5651. v.SellerType = summaryList[i].ServiceProductId
  5652. v.PaymentId = summaryList[i].PaymentId
  5653. v.PaymentDate = utils.TimeTransferString(utils.FormatDate, summaryList[i].PaymentDate)
  5654. v.PaymentAmount = summaryList[i].PaymentAmount
  5655. v.PayType = summaryList[i].PayType
  5656. // 套餐到款分配
  5657. svaList := make([]*fms.ContractPaymentServiceAmountItem, 0)
  5658. amountList := serviceAmountMap[summaryList[i].PaymentId]
  5659. if amountList != nil {
  5660. for i := range amountList {
  5661. k := fmt.Sprintf("%d-%d", amountList[i].ContractPaymentId, amountList[i].ServiceTemplateId)
  5662. amountMap[k] = amountList[i]
  5663. }
  5664. }
  5665. // 合同对应的所有套餐
  5666. svList := serviceFormatMap[summaryList[i].RegisterId]
  5667. if svList != nil {
  5668. for ii := range svList {
  5669. vv := new(fms.ContractPaymentServiceAmountItem)
  5670. vv.ServiceTemplateId = svList[ii].ServiceTemplateId
  5671. vv.ServiceTemplateName = svList[ii].FormatTitle
  5672. vv.ServiceTemplatePid = svList[ii].ServiceTemplatePid
  5673. vv.ServiceProductId = svList[ii].ServiceProductId
  5674. k2 := fmt.Sprintf("%d-%d", summaryList[i].PaymentId, svList[ii].ServiceTemplateId)
  5675. a := amountMap[k2]
  5676. if a != nil {
  5677. vv.ContractPaymentServiceAmountId = a.ContractPaymentServiceAmountId
  5678. vv.ContractPaymentId = a.ContractPaymentId
  5679. vv.Amount = a.Amount
  5680. }
  5681. svaList = append(svaList, vv)
  5682. }
  5683. }
  5684. v.ServiceAmountList = svaList
  5685. summaryMap[summaryList[i].SummaryId] = append(summaryMap[summaryList[i].SummaryId], v)
  5686. }
  5687. // 响应列表
  5688. for i := range registerList {
  5689. v := new(fms.InvoicePaymentCensusItem)
  5690. v.SummaryId = registerList[i].SummaryId
  5691. v.ContractRegisterId = registerList[i].ContractRegisterId
  5692. v.CompanyName = registerList[i].CompanyName
  5693. v.NewCompany = registerList[i].NewCompany
  5694. v.StartDate = utils.TimeTransferString(utils.FormatDate, registerList[i].StartDate)
  5695. v.EndDate = utils.TimeTransferString(utils.FormatDate, registerList[i].EndDate)
  5696. v.ServicesName = servicesNameMap[registerList[i].ContractRegisterId]
  5697. v.InvoicePaymentList = summaryMap[registerList[i].SummaryId]
  5698. v.ContractType = registerList[i].ContractType
  5699. v.ActualPayCompanies = registerList[i].ActualPayCompanies
  5700. respList = append(respList, v)
  5701. }
  5702. }()
  5703. // 开票到款金额合计(换算后)
  5704. var invoiceTotal, paymentTotal, amountTotal float64
  5705. wg.Add(1)
  5706. go func() {
  5707. defer wg.Done()
  5708. if len(summaryIds) == 0 {
  5709. return
  5710. }
  5711. amountTotalCond := `a.id IN (` + utils.GetOrmInReplace(len(summaryIds)) + `)`
  5712. amountTotalPars := make([]interface{}, 0)
  5713. amountTotalPars = append(amountTotalPars, summaryIds)
  5714. invoiceSum, e := fms.GetContractSummaryInvoicePaymentAmountTotal(amountTotalCond, amountTotalPars, 1)
  5715. if e != nil {
  5716. totalErr = fmt.Errorf("获取汇总开票金额合计失败, Err: %s", e.Error())
  5717. return
  5718. }
  5719. invoiceTotal, _ = strconv.ParseFloat(fmt.Sprintf("%.2f", invoiceSum), 64)
  5720. paymentSum, e := fms.GetContractSummaryInvoicePaymentAmountTotal(amountTotalCond, amountTotalPars, 2)
  5721. if e != nil {
  5722. totalErr = fmt.Errorf("获取汇总到款金额合计失败, Err: %s", e.Error())
  5723. return
  5724. }
  5725. paymentTotal, _ = strconv.ParseFloat(fmt.Sprintf("%.2f", paymentSum), 64)
  5726. amountCond := `a.id IN (` + utils.GetOrmInReplace(len(summaryIds)) + `) AND (a.invoice_id <> 0 OR (a.payment_id <> 0 AND a.invoice_id =0))`
  5727. amountPars := make([]interface{}, 0)
  5728. amountPars = append(amountPars, summaryIds)
  5729. amountSum, e := fms.GetContractSummaryInvoicePaymentAmount(amountCond, amountPars)
  5730. if e != nil {
  5731. totalErr = fmt.Errorf("获取汇总金额合计失败, Err: %s", e.Error())
  5732. return
  5733. }
  5734. amountTotal, _ = strconv.ParseFloat(fmt.Sprintf("%.2f", amountSum), 64)
  5735. }()
  5736. // 分币种金额统计
  5737. invoiceCurrencyTotals := make([]*fms.InvoiceListCurrencyTotal, 0)
  5738. paymentCurrencyTotals := make([]*fms.InvoiceListCurrencyTotal, 0)
  5739. wg.Add(1)
  5740. go func() {
  5741. defer wg.Done()
  5742. currencyOB := new(fms.CurrencyUnit)
  5743. currencyCond := `enable = 1`
  5744. currencyPars := make([]interface{}, 0)
  5745. currencyList, e := currencyOB.List(currencyCond, currencyPars)
  5746. if e != nil {
  5747. totalGroupErr = fmt.Errorf("获取货币列表失败, Err: %s", e.Error())
  5748. return
  5749. }
  5750. unitMap := make(map[string]string)
  5751. for i := range currencyList {
  5752. unitMap[currencyList[i].Code] = currencyList[i].UnitName
  5753. invoiceCurrencyTotals = append(invoiceCurrencyTotals, &fms.InvoiceListCurrencyTotal{
  5754. Name: currencyList[i].Name,
  5755. UnitName: currencyList[i].UnitName,
  5756. Code: currencyList[i].Code,
  5757. FlagImg: currencyList[i].FlagImg,
  5758. })
  5759. paymentCurrencyTotals = append(paymentCurrencyTotals, &fms.InvoiceListCurrencyTotal{
  5760. Name: currencyList[i].Name,
  5761. UnitName: currencyList[i].UnitName,
  5762. Code: currencyList[i].Code,
  5763. FlagImg: currencyList[i].FlagImg,
  5764. })
  5765. }
  5766. if len(summaryIds) == 0 {
  5767. return
  5768. }
  5769. totalGroupCond := `a.id IN (` + utils.GetOrmInReplace(len(summaryIds)) + `)`
  5770. totalGroupPars := make([]interface{}, 0)
  5771. totalGroupPars = append(totalGroupPars, summaryIds)
  5772. invoiceSumGroup, e := fms.GetSummaryListCurrencySum(totalGroupCond, totalGroupPars, 1)
  5773. if e != nil {
  5774. totalGroupErr = fmt.Errorf("获取汇总货币合计开票金额失败, Err: %s", e.Error())
  5775. return
  5776. }
  5777. paymentSumGroup, e := fms.GetSummaryListCurrencySum(totalGroupCond, totalGroupPars, 2)
  5778. if e != nil {
  5779. totalGroupErr = fmt.Errorf("获取汇总货币合计到款金额失败, Err: %s", e.Error())
  5780. return
  5781. }
  5782. invoiceSumMap := make(map[string]float64)
  5783. paymentSumMap := make(map[string]float64)
  5784. for i := range invoiceSumGroup {
  5785. invoiceSumMap[invoiceSumGroup[i].CurrencyUnit] = invoiceSumGroup[i].OriginAmountTotal
  5786. continue
  5787. }
  5788. for i := range paymentSumGroup {
  5789. paymentSumMap[paymentSumGroup[i].CurrencyUnit] = paymentSumGroup[i].OriginAmountTotal
  5790. continue
  5791. }
  5792. for i := range invoiceCurrencyTotals {
  5793. a, _ := strconv.ParseFloat(fmt.Sprintf("%.2f", invoiceSumMap[invoiceCurrencyTotals[i].Code]), 64)
  5794. invoiceCurrencyTotals[i].Amount = a
  5795. }
  5796. for i := range paymentCurrencyTotals {
  5797. a, _ := strconv.ParseFloat(fmt.Sprintf("%.2f", paymentSumMap[paymentCurrencyTotals[i].Code]), 64)
  5798. paymentCurrencyTotals[i].Amount = a
  5799. }
  5800. }()
  5801. wg.Wait()
  5802. if listErr != nil {
  5803. br.Msg = "获取失败!"
  5804. br.ErrMsg = "获取商品到款汇总失败,Err:" + listErr.Error()
  5805. return
  5806. }
  5807. if totalErr != nil {
  5808. br.Msg = "获取失败!"
  5809. br.ErrMsg = "获取商品到款汇总失败,Err:" + totalErr.Error()
  5810. return
  5811. }
  5812. if totalGroupErr != nil {
  5813. br.Msg = "获取失败!"
  5814. br.ErrMsg = "获取商品到款汇总失败,Err:" + totalGroupErr.Error()
  5815. return
  5816. }
  5817. results.DataList = respList
  5818. results.InvoiceTotal = invoiceTotal
  5819. results.PaymentTotal = paymentTotal
  5820. results.AmountTotal = amountTotal
  5821. results.InvoiceCurrencyTotal = invoiceCurrencyTotals
  5822. results.PaymentCurrencyTotal = paymentCurrencyTotals
  5823. }
  5824. page := paging.GetPaging(currentIndex, pageSize, int(total))
  5825. results.Paging = page
  5826. br.Ret = 200
  5827. br.Success = true
  5828. br.Msg = "获取成功"
  5829. br.Data = results
  5830. }
  5831. // SimpleList
  5832. // @Title 合同套餐列表
  5833. // @Description 合同套餐列表
  5834. // @Param ProductId query int false "套餐类型: 1-FICC(默认); 2-权益"
  5835. // @Success 200 {object} crm.ContractSearchListResp
  5836. // @router /contract/service/simple [get]
  5837. func (this *StatisticReportController) SimpleList() {
  5838. br := new(models.BaseResponse).Init()
  5839. defer func() {
  5840. this.Data["json"] = br
  5841. this.ServeJSON()
  5842. }()
  5843. sysUser := this.SysUser
  5844. if sysUser == nil {
  5845. br.Msg = "请登录"
  5846. br.ErrMsg = "请登录,SysUser Is Empty"
  5847. br.Ret = 408
  5848. return
  5849. }
  5850. list, err := fms.GetContractServiceTemplateSecond()
  5851. if err != nil {
  5852. br.Msg = "获取失败!"
  5853. br.ErrMsg = "获取产品套餐失败,Err:" + err.Error()
  5854. return
  5855. }
  5856. allList := make([]*fms.ContractServiceTemplateItem, 0)
  5857. allMap := make(map[int][]*fms.ContractServiceTemplateMapItems)
  5858. respList := make([]*fms.ContractServiceTemplateList, 0)
  5859. for i := 0; i < len(list); i++ {
  5860. if list[i].Title == "行业套餐" {
  5861. industryList, e := fms.GetContractServiceTemplateMapByParentId(list[i].ServiceTemplateId)
  5862. if e != nil {
  5863. br.Msg = "获取失败!"
  5864. br.ErrMsg = "获取套餐失败,Err:" + e.Error()
  5865. return
  5866. }
  5867. for _, sv := range industryList {
  5868. allList = append(allList, sv)
  5869. }
  5870. } else {
  5871. allList = append(allList, list[i])
  5872. }
  5873. }
  5874. for i := 0; i < len(allList); i++ {
  5875. item := allList[i]
  5876. v := new(fms.ContractServiceTemplateMapItems)
  5877. v.ContractServiceTemplateItem = *item
  5878. allMap[item.ProductId] = append(allMap[item.ProductId], v)
  5879. }
  5880. allTitleMap := map[int]string{
  5881. 1: "FICC套餐",
  5882. 2: "权益套餐",
  5883. }
  5884. tmp1 := &fms.ContractServiceTemplateList{
  5885. Title: allTitleMap[1],
  5886. Children: allMap[1],
  5887. }
  5888. tmp2 := &fms.ContractServiceTemplateList{
  5889. Title: allTitleMap[2],
  5890. Children: allMap[2],
  5891. }
  5892. respList = append(respList, tmp1)
  5893. respList = append(respList, tmp2)
  5894. br.Ret = 200
  5895. br.Success = true
  5896. br.Msg = "获取成功"
  5897. br.Data = respList
  5898. }
  5899. // UnusualRenewCompanyStatistics
  5900. // @Title 获取续约异常的客户统计数据
  5901. // @Description 获取续约客户统计数据接口
  5902. // @Param DataType query string true "枚举值:week、month、time_interval"
  5903. // @Param Source query int true "类型,枚举值,1:续约异常客户;2:续约正常客户;3:超时续约客户;4:合同到期后一个月未续约客户;5:合同到期未续约客户;6:合同到期前一个月还未续约的客户;7:合同到期前两个月还未续约客户;8:合同到期前3个月还未续约客户;9:合同到期前4个月还未续约客户"
  5904. // @Param StartDate query string true "开始日期,格式:2022-04-06"
  5905. // @Param EndDate query string true "结束日期,格式:2022-04-06"
  5906. // @Success 200 {object} statistic_report.CompanyUnusualRenewRecordResp
  5907. // @router /report/unusual_renew_company [get]
  5908. func (this *StatisticReportController) UnusualRenewCompanyStatistics() {
  5909. br := new(models.BaseResponse).Init()
  5910. defer func() {
  5911. this.Data["json"] = br
  5912. this.ServeJSON()
  5913. }()
  5914. sysUser := this.SysUser
  5915. if sysUser == nil {
  5916. br.Msg = "请登录"
  5917. br.ErrMsg = "请登录,SysUser Is Empty"
  5918. br.Ret = 408
  5919. return
  5920. }
  5921. dataType := this.GetString("DataType")
  5922. productId, _ := this.GetInt("ProductId", 1)
  5923. startDate := this.GetString("StartDate")
  5924. endDate := this.GetString("EndDate")
  5925. source, _ := this.GetInt("Source", 1)
  5926. var companyUnusualRenewDataMapList []statistic_report.UnusualCompanyRenewDataMap
  5927. var err error
  5928. //var firstDate time.Time
  5929. switch dataType {
  5930. //获取列表
  5931. case "week":
  5932. nowWeekMonday := utils.GetNowWeekMonday() //本周周一
  5933. //companyRenewDataMapList, firstDate, err = statistic_report.GetWeekData()
  5934. companyUnusualRenewDataMapList, _, err = statistic_report.GetUnusualRenewWeekDataNum(nowWeekMonday, productId, source, 6)
  5935. if err != nil {
  5936. br.Msg = "数据异常"
  5937. br.ErrMsg = "数据异常,Err:" + err.Error()
  5938. return
  5939. }
  5940. case "month":
  5941. nowMonthFirstDay := utils.GetNowMonthFirstDay() //本月第一天
  5942. companyUnusualRenewDataMapList, _, err = statistic_report.GetUnusualRenewMonthDataNum(nowMonthFirstDay, productId, source, 6)
  5943. if err != nil {
  5944. br.Msg = "数据异常"
  5945. br.ErrMsg = "数据异常,Err:" + err.Error()
  5946. return
  5947. }
  5948. case "time_interval":
  5949. if startDate == `` || endDate == `` {
  5950. br.Msg = "开始日期或结束日期不能为空"
  5951. br.ErrMsg = "开始日期或结束日期不能为空,Err:" + err.Error()
  5952. return
  5953. }
  5954. companyUnusualRenewDataMapList, _, err = statistic_report.GetUnusualRenewTimeIntervalData(productId, source, startDate, endDate)
  5955. if err != nil {
  5956. br.Msg = "数据异常"
  5957. br.ErrMsg = "数据异常,Err:" + err.Error()
  5958. return
  5959. }
  5960. }
  5961. groupId := 0
  5962. if utils.RunMode == "release" {
  5963. groupId = 37
  5964. } else {
  5965. groupId = 61
  5966. }
  5967. subAdmins, err := system.GetAdminByGroupId(groupId)
  5968. if err != nil && err.Error() != utils.ErrNoRow() {
  5969. br.Msg = "获取销售失败"
  5970. br.ErrMsg = "获取销售失败,Err:" + err.Error()
  5971. return
  5972. }
  5973. //数据处理
  5974. list := make([]statistic_report.GroupUnusualRenewRecord, 0)
  5975. summaryList := make([]statistic_report.SummaryUnusualRenewRecordNum, 0)
  5976. companyRenewRecordResp := statistic_report.CompanyUnusualRenewRecordResp{
  5977. List: list,
  5978. SummaryList: summaryList,
  5979. }
  5980. unusualRenewTotal := make(map[int]int)
  5981. adminDataUnusualRenewTotal := make(map[int]int)
  5982. // 每日期组数据的汇总客户id
  5983. companyIdIndexMap := make(map[int][]string)
  5984. for k, v := range subAdmins {
  5985. tmpGroupCompanyRenewRecordNumList := make([]statistic_report.CompanyUnusualRenewRecordNum, 0)
  5986. for index, adminData := range companyUnusualRenewDataMapList {
  5987. tmpGroupCompanyRenewRecordNumList = append(tmpGroupCompanyRenewRecordNumList, statistic_report.CompanyUnusualRenewRecordNum{
  5988. UnusualRenewNum: adminData.UnusualRenewMap[v.AdminId],
  5989. UnusualRenewIds: adminData.UnusualRenewIdMap[v.AdminId],
  5990. StartDate: adminData.StartDate,
  5991. EndDate: adminData.EndDate,
  5992. })
  5993. unusualRenewTotal[index] = unusualRenewTotal[index] + adminData.UnusualRenewMap[v.AdminId]
  5994. if adminData.UnusualRenewIdMap[v.AdminId] != `` {
  5995. tmpCompanyIdList, ok := companyIdIndexMap[index]
  5996. if !ok {
  5997. tmpCompanyIdList = make([]string, 0)
  5998. }
  5999. companyIdIndexMap[index] = append(tmpCompanyIdList, adminData.UnusualRenewIdMap[v.AdminId])
  6000. adminDataUnusualRenewTotal[index] = adminData.FormalCompanyTotal
  6001. }
  6002. if k == 0 {
  6003. /*unusualRate := ``
  6004. if adminData.UnusualRenewTotal > 0 && adminData.FormalCompanyTotal > 0 {
  6005. unusualRate = decimal.NewFromInt(int64(adminData.UnusualRenewTotal)*100).Div(decimal.NewFromInt(int64(adminData.FormalCompanyTotal))).Round(2).String() + `%`
  6006. }*/
  6007. summaryList = append(summaryList, statistic_report.SummaryUnusualRenewRecordNum{
  6008. UnusualRenewNum: 0,
  6009. UnusualRate: "0",
  6010. })
  6011. }
  6012. }
  6013. list = append(list, statistic_report.GroupUnusualRenewRecord{
  6014. SellerId: v.AdminId,
  6015. SellerName: v.RealName,
  6016. CompanyRenewRecordNumList: tmpGroupCompanyRenewRecordNumList,
  6017. })
  6018. }
  6019. // 汇总数据
  6020. for index, _ := range summaryList {
  6021. totalSum, ok1 := unusualRenewTotal[index]
  6022. if ok1 {
  6023. summaryList[index].UnusualRenewNum = totalSum
  6024. unusualRate := ``
  6025. formalCompanyTotal, ok2 := adminDataUnusualRenewTotal[index]
  6026. if ok2 {
  6027. if totalSum > 0 && formalCompanyTotal > 0 {
  6028. unusualRate = decimal.NewFromInt(int64(totalSum)*100).Div(decimal.NewFromInt(int64(formalCompanyTotal))).Round(2).String() + `%`
  6029. summaryList[index].UnusualRate = unusualRate
  6030. }
  6031. }
  6032. }
  6033. tmpCompanyIdList, ok := companyIdIndexMap[index]
  6034. if ok {
  6035. summaryList[index].UnusualRenewIds = strings.Join(tmpCompanyIdList, ",")
  6036. }
  6037. }
  6038. companyRenewRecordResp.List = list
  6039. companyRenewRecordResp.SummaryList = summaryList
  6040. br.Ret = 200
  6041. br.Success = true
  6042. br.Msg = "获取成功"
  6043. br.Data = companyRenewRecordResp
  6044. }
  6045. // UnusualRenewCompanyList
  6046. // @Title 获取未续约的公司合同列表
  6047. // @Description 获取未续约的公司合同列表
  6048. // @Param ProductId query int false "套餐类型: 1-FICC(默认); 2-权益"
  6049. // @Param Source query int true "类型,枚举值,1:续约异常客户;2:续约正常客户;3:超时续约客户;4:合同到期后一个月未续约客户;5:合同到期未续约客户;6:合同到期前一个月还未续约的客户;7:合同到期前两个月还未续约客户;8:合同到期前3个月还未续约客户;9:合同到期前4个月还未续约客户"
  6050. // @Param StartDate query string true "开始日期,格式:2022-04"
  6051. // @Param EndDate query string true "结束日期,格式:2022-04"
  6052. // @Success 200 {object} company.GetUnusualRenewListGroupMonthResp
  6053. // @router /report/unusual_renew_company/chart [get]
  6054. func (this *StatisticReportController) UnusualRenewCompanyList() {
  6055. br := new(models.BaseResponse).Init()
  6056. defer func() {
  6057. this.Data["json"] = br
  6058. this.ServeJSON()
  6059. }()
  6060. sysUser := this.SysUser
  6061. if sysUser == nil {
  6062. br.Msg = "请登录"
  6063. br.ErrMsg = "请登录,SysUser Is Empty"
  6064. br.Ret = 408
  6065. return
  6066. }
  6067. // 起始日期
  6068. // 截止日期
  6069. productId, _ := this.GetInt("ProductId", 1)
  6070. startDate := this.GetString("StartDate")
  6071. endDate := this.GetString("EndDate")
  6072. source, _ := this.GetInt("Source", 1)
  6073. if startDate == `` || endDate == `` {
  6074. br.Msg = "开始日期或结束日期不能为空"
  6075. return
  6076. }
  6077. allList := make([]*company.GetUnusualRenewListGroupMonth, 0)
  6078. resp := new(company.GetUnusualRenewListGroupMonthResp)
  6079. resp.List = allList
  6080. newStartDate := startDate + "-01"
  6081. newEndDate := endDate + "-01"
  6082. startDateTimer, _ := time.ParseInLocation(utils.FormatDate, newStartDate, time.Local)
  6083. endDateTimer, _ := time.ParseInLocation(utils.FormatDate, newEndDate, time.Local)
  6084. endDateTimer = endDateTimer.AddDate(0, 1, 0).Add(-1 * time.Second) //本月最后一天
  6085. // 按月分组
  6086. monthMap := make(map[string]int)
  6087. monthCompanyMap := make(map[string]struct{})
  6088. monthList := make([]string, 0)
  6089. tmpDate, _ := time.ParseInLocation(utils.FormatYearMonthDate, startDate, time.Local)
  6090. tmpEndDate, _ := time.ParseInLocation(utils.FormatYearMonthDate, endDate, time.Local)
  6091. for tmpDate.Before(tmpEndDate) || tmpDate == tmpEndDate {
  6092. monthMap[tmpDate.Format(utils.FormatYearMonthDate)] = 0
  6093. monthList = append(monthList, tmpDate.Format(utils.FormatYearMonthDate))
  6094. tmpDate = tmpDate.AddDate(0, 1, 0)
  6095. }
  6096. // 只查询ficc销售下的客户
  6097. roleTypeCode := "('ficc_seller','ficc_group','ficc_team')"
  6098. researcherList, err := roadshow.GetSellerList(roleTypeCode, "")
  6099. if err != nil {
  6100. return
  6101. }
  6102. if err != nil && err.Error() != utils.ErrNoRow() {
  6103. br.Msg = "获取销售失败"
  6104. br.ErrMsg = "获取销售失败,Err:" + err.Error()
  6105. return
  6106. }
  6107. if len(researcherList) == 0 {
  6108. resp = &company.GetUnusualRenewListGroupMonthResp{
  6109. List: allList,
  6110. }
  6111. br.Ret = 200
  6112. br.Success = true
  6113. br.Msg = "获取成功"
  6114. br.Data = resp
  6115. return
  6116. }
  6117. subAdminIds := make([]string, 0)
  6118. for _, v := range researcherList {
  6119. subAdminIds = append(subAdminIds, strconv.Itoa(v.AdminId))
  6120. }
  6121. sellerIds := strings.Join(subAdminIds, ",")
  6122. list, err := company.GetUnusualRenewList(startDateTimer, endDateTimer, productId, source, sellerIds)
  6123. if err != nil {
  6124. br.Msg = "数据异常"
  6125. br.ErrMsg = "数据异常,Err:" + err.Error()
  6126. return
  6127. }
  6128. if len(list) > 0 {
  6129. for _, v := range list {
  6130. t := v.ModifyTime.Format(utils.FormatYearMonthDate)
  6131. name := fmt.Sprintf("%s_%d", t, v.CompanyId)
  6132. if _, ok := monthCompanyMap[name]; !ok {
  6133. if num, ok1 := monthMap[t]; ok1 {
  6134. monthMap[t] = num + 1
  6135. }
  6136. monthCompanyMap[name] = struct{}{}
  6137. }
  6138. }
  6139. }
  6140. for _, v := range monthList {
  6141. n, _ := monthMap[v]
  6142. tmp := &company.GetUnusualRenewListGroupMonth{
  6143. Date: v,
  6144. CompanyNum: n,
  6145. }
  6146. allList = append(allList, tmp)
  6147. }
  6148. resp = &company.GetUnusualRenewListGroupMonthResp{
  6149. List: allList,
  6150. }
  6151. br.Ret = 200
  6152. br.Success = true
  6153. br.Msg = "获取成功"
  6154. br.Data = resp
  6155. }
  6156. // StackCompanyListRai
  6157. // @Title 获取权益存量客户数据列表
  6158. // @Description 获取权益存量客户数据列表接口
  6159. // @Param PageSize query int true "每页数据条数"
  6160. // @Param CurrentIndex query int true "当前页页码,从1开始"
  6161. // @Param Keyword query string true "客户名称"
  6162. // @Param AdminId query string true "销售id,多个用英文逗号隔开,空字符串为全部"
  6163. // @Param RegionType query string false "所属区域:传空字符串或者不传为全部,'国内','海外'"
  6164. // @Param DataType query string false "报表类型,枚举值:`新签客户`,`续约客户`,`未续约客户`"
  6165. // @Param TryOutType query string false " '试用', '非试用' 非试用即为冻结/流失"
  6166. // @Param IsExport query bool false "是否导出excel,默认是false"
  6167. // @Param CompanyAscribeId query int false "归因ID"
  6168. // @Success 200 {object} response.StackCompanyListResp
  6169. // @router /stack_company_list_rai [get]
  6170. func (this *StatisticReportController) StackCompanyListRai() {
  6171. br := new(models.BaseResponse).Init()
  6172. defer func() {
  6173. this.Data["json"] = br
  6174. this.ServeJSON()
  6175. }()
  6176. sysUser := this.SysUser
  6177. if sysUser == nil {
  6178. br.Msg = "请登录"
  6179. br.ErrMsg = "请登录,SysUser Is Empty"
  6180. br.Ret = 408
  6181. return
  6182. }
  6183. pageSize, _ := this.GetInt("PageSize")
  6184. currentIndex, _ := this.GetInt("CurrentIndex")
  6185. //是否导出报表
  6186. isExport, _ := this.GetBool("IsExport")
  6187. if isExport {
  6188. pageSize = 10000
  6189. currentIndex = 1
  6190. }
  6191. adminId := this.GetString("AdminId")
  6192. regionType := this.GetString("RegionType")
  6193. companyType := this.GetString("CompanyType")
  6194. dataType := this.GetString("DataType")
  6195. tryOutType := this.GetString("TryOutType")
  6196. keyword := this.GetString("Keyword")
  6197. companyAscribeId, _ := this.GetInt("CompanyAscribeId", -1) // CRM 13.9
  6198. var resp response.StackCompanyListResp
  6199. //历史统计数据
  6200. //获取实时统计数据(今天数据)
  6201. tmpResp, err := getTodayStackCompanyListV2Rai(sysUser, currentIndex, pageSize, companyAscribeId, adminId, regionType, companyType, dataType, tryOutType, keyword)
  6202. if err != nil {
  6203. br.Msg = "获取失败"
  6204. br.ErrMsg = "获取失败,Err:" + err.Error()
  6205. return
  6206. }
  6207. resp = tmpResp
  6208. //导出excel
  6209. if isExport {
  6210. StackCompanyListExportRai(this, dataType, resp, br)
  6211. return
  6212. }
  6213. br.Ret = 200
  6214. br.Success = true
  6215. br.Msg = "获取成功"
  6216. br.Data = resp
  6217. }
  6218. func getTodayStackCompanyListV2Rai(sysUser *system.Admin, currentIndex, pageSize, companyAscribeId int, adminId, regionType, companyType, dataType, tryOutType, keyword string) (returnData response.StackCompanyListResp, err error) {
  6219. var startSize int
  6220. if pageSize <= 0 {
  6221. pageSize = utils.PageSize20
  6222. }
  6223. if currentIndex <= 0 {
  6224. currentIndex = 1
  6225. }
  6226. startSize = utils.StartIndex(currentIndex, pageSize)
  6227. var condition, listCondition string
  6228. var pars, listPars []interface{}
  6229. today := utils.GetToday(utils.FormatDate)
  6230. //条件
  6231. var conditionAscribRai string // 处理权益未续约客户检索列表SQL查询条件
  6232. var parsAscribeRai []interface{}
  6233. //归因ID CRM 13.9
  6234. if companyAscribeId > 0 {
  6235. var conditionAscribe string
  6236. var parsAscribe []interface{}
  6237. conditionAscribe = " AND company_ascribe_id = ? "
  6238. parsAscribe = append(parsAscribe, companyAscribeId)
  6239. companyNoRenewedAscribeList, e := company.GetCompanyNoRenewedAscribeList(conditionAscribe, parsAscribe, 0, 0)
  6240. if e != nil && e.Error() != utils.ErrNoRow() {
  6241. err = errors.New("GetCompanyNoRenewedAscribeList" + e.Error())
  6242. return
  6243. }
  6244. var companyIds []int
  6245. if len(companyNoRenewedAscribeList) == 0 {
  6246. companyIds = append(companyIds, 0) // 给一个不存在的ID
  6247. } else {
  6248. for _, v := range companyNoRenewedAscribeList {
  6249. companyIds = append(companyIds, v.CompanyId)
  6250. }
  6251. }
  6252. conditionAscribRai += ` AND c.company_id IN (` + utils.GetOrmInReplace(len(companyIds)) + `)`
  6253. parsAscribeRai = append(parsAscribeRai, companyIds)
  6254. }
  6255. if adminId != "" {
  6256. //condition += ` AND c.seller_id in (` + adminId + `) `
  6257. //pars = append(pars, adminId)
  6258. } else {
  6259. //根据当前角色来获取查询条件
  6260. condition, pars = getQueryParamsInit(condition, pars, sysUser, "c.")
  6261. }
  6262. if regionType != "" {
  6263. condition += ` AND b.region_type = ? `
  6264. pars = append(pars, regionType)
  6265. }
  6266. //关键字搜索
  6267. if keyword != "" {
  6268. condition += ` and b.company_name like "%` + keyword + `%" `
  6269. }
  6270. condition += ` AND a.product_id = ? `
  6271. pars = append(pars, 2)
  6272. var dataTotal, newCompanyTotal, renewalCompanyTotal, notRenewalCompanyTotal int
  6273. var notRenewalTryOut, notRenewalNotTryOut int
  6274. var list []*models.IncrementalList
  6275. //新签客户数
  6276. {
  6277. condition1 := condition
  6278. if adminId != "" {
  6279. condition1 += ` AND a.seller_id_init in (` + adminId + `) `
  6280. }
  6281. pars1 := pars
  6282. //condition1 += ` AND c.status = "正式" `
  6283. condition1 += ` AND a.start_date <= ? AND a.end_date >= ? `
  6284. pars1 = append(pars1, today, today)
  6285. condition1 += ` AND a.contract_type = ? `
  6286. pars1 = append(pars1, "新签合同")
  6287. total, countErr := models.GetIncrementalNewCompanyCount(condition1, pars1)
  6288. if countErr != nil && countErr.Error() != utils.ErrNoRow() {
  6289. err = countErr
  6290. return
  6291. }
  6292. newCompanyTotal = total
  6293. if dataType == "新签客户" {
  6294. //页表页数据总和
  6295. total, countErr = models.GetTodayStackCompanyProductCount(condition1, pars1)
  6296. if countErr != nil && countErr.Error() != utils.ErrNoRow() {
  6297. err = countErr
  6298. return
  6299. }
  6300. dataTotal = total
  6301. listCondition = condition1
  6302. listPars = pars1
  6303. }
  6304. }
  6305. //续约客户数
  6306. {
  6307. condition1 := condition
  6308. if adminId != "" {
  6309. condition1 += ` AND a.seller_id_init in (` + adminId + `) `
  6310. }
  6311. pars1 := pars
  6312. //condition1 += ` AND c.status = "正式" `
  6313. condition1 += ` AND a.start_date <= ? AND a.end_date >= ? `
  6314. pars1 = append(pars1, today, today)
  6315. condition1 += ` AND a.contract_type = ? `
  6316. pars1 = append(pars1, "续约合同")
  6317. //额外条件(续约合同的起始日期包含在所选时间段内且不包含在新签合同存续期内的客户)
  6318. pars1 = append(pars1, today)
  6319. total, countErr := models.GetIncrementalNewCompanyCountV2(condition1, pars1)
  6320. if countErr != nil && countErr.Error() != utils.ErrNoRow() {
  6321. err = countErr
  6322. return
  6323. }
  6324. renewalCompanyTotal = total
  6325. if dataType == "续约客户" {
  6326. //页表页数据总和
  6327. total, countErr = models.GetTodayStackCompanyProductCountV2(condition1, pars1)
  6328. if countErr != nil && countErr.Error() != utils.ErrNoRow() {
  6329. err = countErr
  6330. return
  6331. }
  6332. dataTotal = total
  6333. listCondition = condition1
  6334. listPars = pars1
  6335. }
  6336. }
  6337. //未续约客户数
  6338. {
  6339. if adminId != "" {
  6340. condition += ` AND c.seller_id in (` + adminId + `) `
  6341. }
  6342. condition1 := condition
  6343. pars1 := pars
  6344. condition1 += ` AND c.status not in ("永续","正式") AND a.create_time <= ? `
  6345. pars1 = append(pars1, time.Now().Format(utils.FormatDateTime))
  6346. condition1 += ` AND a.operation = 'try_out' `
  6347. total, countErr := models.GetIncrementalCompanyCountByOperationRecord(condition1, pars1)
  6348. if countErr != nil && countErr.Error() != utils.ErrNoRow() {
  6349. err = countErr
  6350. return
  6351. }
  6352. notRenewalCompanyTotal = total
  6353. condition1 += conditionAscribRai
  6354. pars1 = append(pars1, parsAscribeRai)
  6355. if dataType == "未续约客户" {
  6356. //页表页数据总和
  6357. //统计数据
  6358. for _, v := range []string{"试用", "非试用"} {
  6359. totalCondition1 := condition1
  6360. totalPars1 := pars1
  6361. var tmpTotal int
  6362. if v == "试用" {
  6363. totalCondition1 += ` AND c.status = "试用" `
  6364. tmpTotal, err = models.GetIncrementalCompanyProductCountByOperationRecord(totalCondition1, totalPars1)
  6365. if err != nil {
  6366. return
  6367. }
  6368. notRenewalTryOut = tmpTotal
  6369. } else if v == "非试用" {
  6370. totalCondition1 += ` AND c.status IN ("冻结","流失") `
  6371. tmpTotal, err = models.GetIncrementalCompanyProductCountByOperationRecord(totalCondition1, totalPars1)
  6372. if err != nil && err.Error() != utils.ErrNoRow() {
  6373. return
  6374. }
  6375. notRenewalNotTryOut = tmpTotal
  6376. }
  6377. }
  6378. //列表数据数量
  6379. if tryOutType == "试用" {
  6380. condition1 += ` AND c.status = "试用" `
  6381. total = notRenewalTryOut
  6382. } else if tryOutType == "非试用" {
  6383. condition1 += ` AND c.status IN ("冻结","流失") `
  6384. total = notRenewalNotTryOut
  6385. }
  6386. //total, countErr := models.GetIncrementalCompanyProductCountByOperationRecord(condition1, pars1)
  6387. //if countErr != nil && countErr.Error() != utils.ErrNoRow() {
  6388. // err = countErr
  6389. // return
  6390. //}
  6391. dataTotal = total
  6392. listCondition = condition1
  6393. listPars = pars1
  6394. if tryOutType == "试用" {
  6395. listCondition += ` AND c.status = "试用" `
  6396. } else if tryOutType == "非试用" {
  6397. listCondition += ` AND c.status IN ("冻结","流失") `
  6398. }
  6399. tmpList, countErr := models.GetIncrementalCompanyListByOperationRecord(listCondition, listPars, startSize, pageSize)
  6400. if countErr != nil {
  6401. err = countErr
  6402. return
  6403. }
  6404. for i := 0; i < len(tmpList); i++ {
  6405. endDateTime, parseErr := time.Parse(utils.FormatDateTime, tmpList[i].CreateTime)
  6406. if parseErr != nil {
  6407. err = parseErr
  6408. return
  6409. }
  6410. tmpList[i].EndDate = endDateTime.Format(utils.FormatDate)
  6411. }
  6412. list = tmpList
  6413. }
  6414. }
  6415. switch dataType {
  6416. case "新签客户":
  6417. tmpList, countErr := models.GetTodayStackCompanyList(listCondition, listPars, startSize, pageSize)
  6418. if countErr != nil {
  6419. err = countErr
  6420. return
  6421. }
  6422. list = tmpList
  6423. case "续约客户":
  6424. tmpList, countErr := models.GetTodayStackCompanyListV2(listCondition, listPars, startSize, pageSize)
  6425. if countErr != nil {
  6426. err = countErr
  6427. return
  6428. }
  6429. list = tmpList
  6430. }
  6431. if dataType == "续约客户" {
  6432. var ids []string
  6433. oldCompanyMap := make(map[int]*models.IncrementalList)
  6434. oldMoneyMap := make(map[int]float64)
  6435. countMap := make(map[int]int)
  6436. for _, item := range list {
  6437. ids = append(ids, strconv.Itoa(item.CompanyId))
  6438. }
  6439. if len(ids) > 0 {
  6440. idStr := strings.Join(ids, ",")
  6441. lists, contractErr := models.GetLastContractMoney(idStr)
  6442. if contractErr != nil {
  6443. err = contractErr
  6444. return
  6445. }
  6446. for _, item := range lists {
  6447. _, countOk := countMap[item.CompanyId]
  6448. _, ok := oldCompanyMap[item.CompanyId]
  6449. if !ok {
  6450. oldCompanyMap[item.CompanyId] = item
  6451. oldMoneyMap[item.CompanyId] = item.Money
  6452. } else if !countOk {
  6453. countMap[item.CompanyId] = 1
  6454. oldCompanyMap[item.CompanyId] = item
  6455. }
  6456. }
  6457. //给list赋值
  6458. for _, item := range list {
  6459. if item.ProductName == "权益" {
  6460. oldMoney, _ := oldMoneyMap[item.CompanyId]
  6461. lastContract, _ := oldCompanyMap[item.CompanyId]
  6462. if oldMoney > lastContract.Money {
  6463. item.PackageDifference = "增加套餐"
  6464. } else if oldMoney < lastContract.Money {
  6465. item.PackageDifference = "减少套餐"
  6466. } else {
  6467. item.PackageDifference = "维持套餐"
  6468. }
  6469. }
  6470. }
  6471. }
  6472. }
  6473. var ascribecompanyIds []int
  6474. for _, item := range list {
  6475. ascribecompanyIds = append(ascribecompanyIds, item.CompanyId)
  6476. }
  6477. //归因标签
  6478. mapGetCompanyAscribeContent, mapContent := services.GetCompanyAscribeContentMap(ascribecompanyIds)
  6479. mapNoRenewedNote := services.GetCompanyNoRenewedNoteMap(ascribecompanyIds)
  6480. for _, item := range list {
  6481. item.AscribeContent = mapGetCompanyAscribeContent[fmt.Sprint("CID_", item.CompanyId, "PID_", item.ProductId)]
  6482. item.Content = mapContent[fmt.Sprint("CID_", item.CompanyId, "PID_", item.ProductId)]
  6483. item.IsShowNoRenewedNote = mapNoRenewedNote[fmt.Sprint("CID_", item.CompanyId, "PID_", item.ProductId)]
  6484. }
  6485. listLen := len(list)
  6486. var companyContractIds []int
  6487. for i := 0; i < listLen; i++ {
  6488. item := list[i]
  6489. //剩余可用天数
  6490. expireDay := "0"
  6491. endDateTime, _ := time.Parse(utils.FormatDate, item.EndDate)
  6492. var sub time.Duration
  6493. if dataType != "未续约客户" {
  6494. endDateTime = endDateTime.AddDate(0, 0, 1)
  6495. sub = endDateTime.Sub(time.Now())
  6496. //if sub < 0 {
  6497. // sub = 0
  6498. //}
  6499. } else {
  6500. sub = time.Now().Sub(endDateTime)
  6501. }
  6502. expireDay = fmt.Sprintf("%v", int(sub.Hours()/24))
  6503. list[i].ExpireDay = expireDay
  6504. companyContractIds = append(companyContractIds, item.CompanyContractId)
  6505. }
  6506. //合并合同所对应的权限
  6507. mappermissionName, err := cygxService.GetCompanyContractPermissionNameMapById(companyContractIds)
  6508. if err != nil {
  6509. return
  6510. }
  6511. for _, v := range list {
  6512. v.PermissionName = mappermissionName[v.CompanyContractId]
  6513. }
  6514. var stackCompanyStatisticList []*models.StackCompanyStatisticList
  6515. for _, v := range list {
  6516. stackCompanyStatistic := models.StackCompanyStatisticList{
  6517. Type: dataType,
  6518. CompanyId: v.CompanyId,
  6519. CompanyName: v.CompanyName,
  6520. ProductId: v.ProductId,
  6521. ProductName: v.ProductName,
  6522. ContractNum: v.Count,
  6523. SellerId: v.SellerId,
  6524. SellerName: v.SellerNameInit,
  6525. ShareSeller: v.ShareSellerInit,
  6526. Date: today,
  6527. StartDate: v.StartDate,
  6528. EndDate: v.EndDate,
  6529. RegionType: v.RegionType,
  6530. //CreateTime :v.CreateTime,
  6531. CreateTimeStr: v.CreateTime,
  6532. ExpireDay: v.ExpireDay,
  6533. RenewalReason: v.RenewalReason,
  6534. RenewalTodo: v.RenewalTodo,
  6535. Status: v.Status,
  6536. PackageDifference: v.PackageDifference,
  6537. AscribeContent: v.AscribeContent,
  6538. IsShowNoRenewedNote: v.IsShowNoRenewedNote,
  6539. Content: v.Content,
  6540. PermissionName: mappermissionName[v.CompanyContractId],
  6541. Money: v.Money,
  6542. }
  6543. stackCompanyStatisticList = append(stackCompanyStatisticList, &stackCompanyStatistic)
  6544. }
  6545. page := paging.GetPaging(currentIndex, pageSize, dataTotal)
  6546. resp := response.StackCompanyListResp{
  6547. Paging: page,
  6548. List: stackCompanyStatisticList,
  6549. NewCompanyTotal: newCompanyTotal,
  6550. RenewalCompanyTotal: renewalCompanyTotal,
  6551. NotRenewalCompanyTotal: notRenewalCompanyTotal,
  6552. NotRenewalTryOut: notRenewalTryOut,
  6553. NotRenewalNotTryOut: notRenewalNotTryOut,
  6554. }
  6555. return resp, err
  6556. }