mobile_dialysis_service.go 392KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001100210031004100510061007100810091010101110121013101410151016101710181019102010211022102310241025102610271028102910301031103210331034103510361037103810391040104110421043104410451046104710481049105010511052105310541055105610571058105910601061106210631064106510661067106810691070107110721073107410751076107710781079108010811082108310841085108610871088108910901091109210931094109510961097109810991100110111021103110411051106110711081109111011111112111311141115111611171118111911201121112211231124112511261127112811291130113111321133113411351136113711381139114011411142114311441145114611471148114911501151115211531154115511561157115811591160116111621163116411651166116711681169117011711172117311741175117611771178117911801181118211831184118511861187118811891190119111921193119411951196119711981199120012011202120312041205120612071208120912101211121212131214121512161217121812191220122112221223122412251226122712281229123012311232123312341235123612371238123912401241124212431244124512461247124812491250125112521253125412551256125712581259126012611262126312641265126612671268126912701271127212731274127512761277127812791280128112821283128412851286128712881289129012911292129312941295129612971298129913001301130213031304130513061307130813091310131113121313131413151316131713181319132013211322132313241325132613271328132913301331133213331334133513361337133813391340134113421343134413451346134713481349135013511352135313541355135613571358135913601361136213631364136513661367136813691370137113721373137413751376137713781379138013811382138313841385138613871388138913901391139213931394139513961397139813991400140114021403140414051406140714081409141014111412141314141415141614171418141914201421142214231424142514261427142814291430143114321433143414351436143714381439144014411442144314441445144614471448144914501451145214531454145514561457145814591460146114621463146414651466146714681469147014711472147314741475147614771478147914801481148214831484148514861487148814891490149114921493149414951496149714981499150015011502150315041505150615071508150915101511151215131514151515161517151815191520152115221523152415251526152715281529153015311532153315341535153615371538153915401541154215431544154515461547154815491550155115521553155415551556155715581559156015611562156315641565156615671568156915701571157215731574157515761577157815791580158115821583158415851586158715881589159015911592159315941595159615971598159916001601160216031604160516061607160816091610161116121613161416151616161716181619162016211622162316241625162616271628162916301631163216331634163516361637163816391640164116421643164416451646164716481649165016511652165316541655165616571658165916601661166216631664166516661667166816691670167116721673167416751676167716781679168016811682168316841685168616871688168916901691169216931694169516961697169816991700170117021703170417051706170717081709171017111712171317141715171617171718171917201721172217231724172517261727172817291730173117321733173417351736173717381739174017411742174317441745174617471748174917501751175217531754175517561757175817591760176117621763176417651766176717681769177017711772177317741775177617771778177917801781178217831784178517861787178817891790179117921793179417951796179717981799180018011802180318041805180618071808180918101811181218131814181518161817181818191820182118221823182418251826182718281829183018311832183318341835183618371838183918401841184218431844184518461847184818491850185118521853185418551856185718581859186018611862186318641865186618671868186918701871187218731874187518761877187818791880188118821883188418851886188718881889189018911892189318941895189618971898189919001901190219031904190519061907190819091910191119121913191419151916191719181919192019211922192319241925192619271928192919301931193219331934193519361937193819391940194119421943194419451946194719481949195019511952195319541955195619571958195919601961196219631964196519661967196819691970197119721973197419751976197719781979198019811982198319841985198619871988198919901991199219931994199519961997199819992000200120022003200420052006200720082009201020112012201320142015201620172018201920202021202220232024202520262027202820292030203120322033203420352036203720382039204020412042204320442045204620472048204920502051205220532054205520562057205820592060206120622063206420652066206720682069207020712072207320742075207620772078207920802081208220832084208520862087208820892090209120922093209420952096209720982099210021012102210321042105210621072108210921102111211221132114211521162117211821192120212121222123212421252126212721282129213021312132213321342135213621372138213921402141214221432144214521462147214821492150215121522153215421552156215721582159216021612162216321642165216621672168216921702171217221732174217521762177217821792180218121822183218421852186218721882189219021912192219321942195219621972198219922002201220222032204220522062207220822092210221122122213221422152216221722182219222022212222222322242225222622272228222922302231223222332234223522362237223822392240224122422243224422452246224722482249225022512252225322542255225622572258225922602261226222632264226522662267226822692270227122722273227422752276227722782279228022812282228322842285228622872288228922902291229222932294229522962297229822992300230123022303230423052306230723082309231023112312231323142315231623172318231923202321232223232324232523262327232823292330233123322333233423352336233723382339234023412342234323442345234623472348234923502351235223532354235523562357235823592360236123622363236423652366236723682369237023712372237323742375237623772378237923802381238223832384238523862387238823892390239123922393239423952396239723982399240024012402240324042405240624072408240924102411241224132414241524162417241824192420242124222423242424252426242724282429243024312432243324342435243624372438243924402441244224432444244524462447244824492450245124522453245424552456245724582459246024612462246324642465246624672468246924702471247224732474247524762477247824792480248124822483248424852486248724882489249024912492249324942495249624972498249925002501250225032504250525062507250825092510251125122513251425152516251725182519252025212522252325242525252625272528252925302531253225332534253525362537253825392540254125422543254425452546254725482549255025512552255325542555255625572558255925602561256225632564256525662567256825692570257125722573257425752576257725782579258025812582258325842585258625872588258925902591259225932594259525962597259825992600260126022603260426052606260726082609261026112612261326142615261626172618261926202621262226232624262526262627262826292630263126322633263426352636263726382639264026412642264326442645264626472648264926502651265226532654265526562657265826592660266126622663266426652666266726682669267026712672267326742675267626772678267926802681268226832684268526862687268826892690269126922693269426952696269726982699270027012702270327042705270627072708270927102711271227132714271527162717271827192720272127222723272427252726272727282729273027312732273327342735273627372738273927402741274227432744274527462747274827492750275127522753275427552756275727582759276027612762276327642765276627672768276927702771277227732774277527762777277827792780278127822783278427852786278727882789279027912792279327942795279627972798279928002801280228032804280528062807280828092810281128122813281428152816281728182819282028212822282328242825282628272828282928302831283228332834283528362837283828392840284128422843284428452846284728482849285028512852285328542855285628572858285928602861286228632864286528662867286828692870287128722873287428752876287728782879288028812882288328842885288628872888288928902891289228932894289528962897289828992900290129022903290429052906290729082909291029112912291329142915291629172918291929202921292229232924292529262927292829292930293129322933293429352936293729382939294029412942294329442945294629472948294929502951295229532954295529562957295829592960296129622963296429652966296729682969297029712972297329742975297629772978297929802981298229832984298529862987298829892990299129922993299429952996299729982999300030013002300330043005300630073008300930103011301230133014301530163017301830193020302130223023302430253026302730283029303030313032303330343035303630373038303930403041304230433044304530463047304830493050305130523053305430553056305730583059306030613062306330643065306630673068306930703071307230733074307530763077307830793080308130823083308430853086308730883089309030913092309330943095309630973098309931003101310231033104310531063107310831093110311131123113311431153116311731183119312031213122312331243125312631273128312931303131313231333134313531363137313831393140314131423143314431453146314731483149315031513152315331543155315631573158315931603161316231633164316531663167316831693170317131723173317431753176317731783179318031813182318331843185318631873188318931903191319231933194319531963197319831993200320132023203320432053206320732083209321032113212321332143215321632173218321932203221322232233224322532263227322832293230323132323233323432353236323732383239324032413242324332443245324632473248324932503251325232533254325532563257325832593260326132623263326432653266326732683269327032713272327332743275327632773278327932803281328232833284328532863287328832893290329132923293329432953296329732983299330033013302330333043305330633073308330933103311331233133314331533163317331833193320332133223323332433253326332733283329333033313332333333343335333633373338333933403341334233433344334533463347334833493350335133523353335433553356335733583359336033613362336333643365336633673368336933703371337233733374337533763377337833793380338133823383338433853386338733883389339033913392339333943395339633973398339934003401340234033404340534063407340834093410341134123413341434153416341734183419342034213422342334243425342634273428342934303431343234333434343534363437343834393440344134423443344434453446344734483449345034513452345334543455345634573458345934603461346234633464346534663467346834693470347134723473347434753476347734783479348034813482348334843485348634873488348934903491349234933494349534963497349834993500350135023503350435053506350735083509351035113512351335143515351635173518351935203521352235233524352535263527352835293530353135323533353435353536353735383539354035413542354335443545354635473548354935503551355235533554355535563557355835593560356135623563356435653566356735683569357035713572357335743575357635773578357935803581358235833584358535863587358835893590359135923593359435953596359735983599360036013602360336043605360636073608360936103611361236133614361536163617361836193620362136223623362436253626362736283629363036313632363336343635363636373638363936403641364236433644364536463647364836493650365136523653365436553656365736583659366036613662366336643665366636673668366936703671367236733674367536763677367836793680368136823683368436853686368736883689369036913692369336943695369636973698369937003701370237033704370537063707370837093710371137123713371437153716371737183719372037213722372337243725372637273728372937303731373237333734373537363737373837393740374137423743374437453746374737483749375037513752375337543755375637573758375937603761376237633764376537663767376837693770377137723773377437753776377737783779378037813782378337843785378637873788378937903791379237933794379537963797379837993800380138023803380438053806380738083809381038113812381338143815381638173818381938203821382238233824382538263827382838293830383138323833383438353836383738383839384038413842384338443845384638473848384938503851385238533854385538563857385838593860386138623863386438653866386738683869387038713872387338743875387638773878387938803881388238833884388538863887388838893890389138923893389438953896389738983899390039013902390339043905390639073908390939103911391239133914391539163917391839193920392139223923392439253926392739283929393039313932393339343935393639373938393939403941394239433944394539463947394839493950395139523953395439553956395739583959396039613962396339643965396639673968396939703971397239733974397539763977397839793980398139823983398439853986398739883989399039913992399339943995399639973998399940004001400240034004400540064007400840094010401140124013401440154016401740184019402040214022402340244025402640274028402940304031403240334034403540364037403840394040404140424043404440454046404740484049405040514052405340544055405640574058405940604061406240634064406540664067406840694070407140724073407440754076407740784079408040814082408340844085408640874088408940904091409240934094409540964097409840994100410141024103410441054106410741084109411041114112411341144115411641174118411941204121412241234124412541264127412841294130413141324133413441354136413741384139414041414142414341444145414641474148414941504151415241534154415541564157415841594160416141624163416441654166416741684169417041714172417341744175417641774178417941804181418241834184418541864187418841894190419141924193419441954196419741984199420042014202420342044205420642074208420942104211421242134214421542164217421842194220422142224223422442254226422742284229423042314232423342344235423642374238423942404241424242434244424542464247424842494250425142524253425442554256425742584259426042614262426342644265426642674268426942704271427242734274427542764277427842794280428142824283428442854286428742884289429042914292429342944295429642974298429943004301430243034304430543064307430843094310431143124313431443154316431743184319432043214322432343244325432643274328432943304331433243334334433543364337433843394340434143424343434443454346434743484349435043514352435343544355435643574358435943604361436243634364436543664367436843694370437143724373437443754376437743784379438043814382438343844385438643874388438943904391439243934394439543964397439843994400440144024403440444054406440744084409441044114412441344144415441644174418441944204421442244234424442544264427442844294430443144324433443444354436443744384439444044414442444344444445444644474448444944504451445244534454445544564457445844594460446144624463446444654466446744684469447044714472447344744475447644774478447944804481448244834484448544864487448844894490449144924493449444954496449744984499450045014502450345044505450645074508450945104511451245134514451545164517451845194520452145224523452445254526452745284529453045314532453345344535453645374538453945404541454245434544454545464547454845494550455145524553455445554556455745584559456045614562456345644565456645674568456945704571457245734574457545764577457845794580458145824583458445854586458745884589459045914592459345944595459645974598459946004601460246034604460546064607460846094610461146124613461446154616461746184619462046214622462346244625462646274628462946304631463246334634463546364637463846394640464146424643464446454646464746484649465046514652465346544655465646574658465946604661466246634664466546664667466846694670467146724673467446754676467746784679468046814682468346844685468646874688468946904691469246934694469546964697469846994700470147024703470447054706470747084709471047114712471347144715471647174718471947204721472247234724472547264727472847294730473147324733473447354736473747384739474047414742474347444745474647474748474947504751475247534754475547564757475847594760476147624763476447654766476747684769477047714772477347744775477647774778477947804781478247834784478547864787478847894790479147924793479447954796479747984799480048014802480348044805480648074808480948104811481248134814481548164817481848194820482148224823482448254826482748284829483048314832483348344835483648374838483948404841484248434844484548464847484848494850485148524853485448554856485748584859486048614862486348644865486648674868486948704871487248734874487548764877487848794880488148824883488448854886488748884889489048914892489348944895489648974898489949004901490249034904490549064907490849094910491149124913491449154916491749184919492049214922492349244925492649274928492949304931493249334934493549364937493849394940494149424943494449454946494749484949495049514952495349544955495649574958495949604961496249634964496549664967496849694970497149724973497449754976497749784979498049814982498349844985498649874988498949904991499249934994499549964997499849995000500150025003500450055006500750085009501050115012501350145015501650175018501950205021502250235024502550265027502850295030503150325033503450355036503750385039504050415042504350445045504650475048504950505051505250535054505550565057505850595060506150625063506450655066506750685069507050715072507350745075507650775078507950805081508250835084508550865087508850895090509150925093509450955096509750985099510051015102510351045105510651075108510951105111511251135114511551165117511851195120512151225123512451255126512751285129513051315132513351345135513651375138513951405141514251435144514551465147514851495150515151525153515451555156515751585159516051615162516351645165516651675168516951705171517251735174517551765177517851795180518151825183518451855186518751885189519051915192519351945195519651975198519952005201520252035204520552065207520852095210521152125213521452155216521752185219522052215222522352245225522652275228522952305231523252335234523552365237523852395240524152425243524452455246524752485249525052515252525352545255525652575258525952605261526252635264526552665267526852695270527152725273527452755276527752785279528052815282528352845285528652875288528952905291529252935294529552965297529852995300530153025303530453055306530753085309531053115312531353145315531653175318531953205321532253235324532553265327532853295330533153325333533453355336533753385339534053415342534353445345534653475348534953505351535253535354535553565357535853595360536153625363536453655366536753685369537053715372537353745375537653775378537953805381538253835384538553865387538853895390539153925393539453955396539753985399540054015402540354045405540654075408540954105411541254135414541554165417541854195420542154225423542454255426542754285429543054315432543354345435543654375438543954405441544254435444544554465447544854495450545154525453545454555456545754585459546054615462546354645465546654675468546954705471547254735474547554765477547854795480548154825483548454855486548754885489549054915492549354945495549654975498549955005501550255035504550555065507550855095510551155125513551455155516551755185519552055215522552355245525552655275528552955305531553255335534553555365537553855395540554155425543554455455546554755485549555055515552555355545555555655575558555955605561556255635564556555665567556855695570557155725573557455755576557755785579558055815582558355845585558655875588558955905591559255935594559555965597559855995600560156025603560456055606560756085609561056115612561356145615561656175618561956205621562256235624562556265627562856295630563156325633563456355636563756385639564056415642564356445645564656475648564956505651565256535654565556565657565856595660566156625663566456655666566756685669567056715672567356745675567656775678567956805681568256835684568556865687568856895690569156925693569456955696569756985699570057015702570357045705570657075708570957105711571257135714571557165717571857195720572157225723572457255726572757285729573057315732573357345735573657375738573957405741574257435744574557465747574857495750575157525753575457555756575757585759576057615762576357645765576657675768576957705771577257735774577557765777577857795780578157825783578457855786578757885789579057915792579357945795579657975798579958005801580258035804580558065807580858095810581158125813581458155816581758185819582058215822582358245825582658275828582958305831583258335834583558365837583858395840584158425843584458455846584758485849585058515852585358545855585658575858585958605861586258635864586558665867586858695870587158725873587458755876587758785879588058815882588358845885588658875888588958905891589258935894589558965897589858995900590159025903590459055906590759085909591059115912591359145915591659175918591959205921592259235924592559265927592859295930593159325933593459355936593759385939594059415942594359445945594659475948594959505951595259535954595559565957595859595960596159625963596459655966596759685969597059715972597359745975597659775978597959805981598259835984598559865987598859895990599159925993599459955996599759985999600060016002600360046005600660076008600960106011601260136014601560166017601860196020602160226023602460256026602760286029603060316032603360346035603660376038603960406041604260436044604560466047604860496050605160526053605460556056605760586059606060616062606360646065606660676068606960706071607260736074607560766077607860796080608160826083608460856086608760886089609060916092609360946095609660976098609961006101610261036104610561066107610861096110611161126113611461156116611761186119612061216122612361246125612661276128612961306131613261336134613561366137613861396140614161426143614461456146614761486149615061516152615361546155615661576158615961606161616261636164616561666167616861696170617161726173617461756176617761786179618061816182618361846185618661876188618961906191619261936194619561966197619861996200620162026203620462056206620762086209621062116212621362146215621662176218621962206221622262236224622562266227622862296230623162326233623462356236623762386239624062416242624362446245624662476248624962506251625262536254625562566257625862596260626162626263626462656266626762686269627062716272627362746275627662776278627962806281628262836284628562866287628862896290629162926293629462956296629762986299630063016302630363046305630663076308630963106311631263136314631563166317631863196320632163226323632463256326632763286329633063316332633363346335633663376338633963406341634263436344634563466347634863496350635163526353635463556356635763586359636063616362636363646365636663676368636963706371637263736374637563766377637863796380638163826383638463856386638763886389639063916392639363946395639663976398639964006401640264036404640564066407640864096410641164126413641464156416641764186419642064216422642364246425642664276428642964306431643264336434643564366437643864396440644164426443644464456446644764486449645064516452645364546455645664576458645964606461646264636464646564666467646864696470647164726473647464756476647764786479648064816482648364846485648664876488648964906491649264936494649564966497649864996500650165026503650465056506650765086509651065116512651365146515651665176518651965206521652265236524652565266527652865296530653165326533653465356536653765386539654065416542654365446545654665476548654965506551655265536554655565566557655865596560656165626563656465656566656765686569657065716572657365746575657665776578657965806581658265836584658565866587658865896590659165926593659465956596659765986599660066016602660366046605660666076608660966106611661266136614661566166617661866196620662166226623662466256626662766286629663066316632663366346635663666376638663966406641664266436644664566466647664866496650665166526653665466556656665766586659666066616662666366646665666666676668666966706671667266736674667566766677667866796680668166826683668466856686668766886689669066916692669366946695669666976698669967006701670267036704670567066707670867096710671167126713671467156716671767186719672067216722672367246725672667276728672967306731673267336734673567366737673867396740674167426743674467456746674767486749675067516752675367546755675667576758675967606761676267636764676567666767676867696770677167726773677467756776677767786779678067816782678367846785678667876788678967906791679267936794679567966797679867996800680168026803680468056806680768086809681068116812681368146815681668176818681968206821682268236824682568266827682868296830683168326833683468356836683768386839684068416842684368446845684668476848684968506851685268536854685568566857685868596860686168626863686468656866686768686869687068716872687368746875687668776878687968806881688268836884688568866887688868896890689168926893689468956896689768986899690069016902690369046905690669076908690969106911691269136914691569166917691869196920692169226923692469256926692769286929693069316932693369346935693669376938693969406941694269436944694569466947694869496950695169526953695469556956695769586959696069616962696369646965696669676968696969706971697269736974697569766977697869796980698169826983698469856986698769886989699069916992699369946995699669976998699970007001700270037004700570067007700870097010701170127013701470157016701770187019702070217022702370247025702670277028702970307031703270337034703570367037703870397040704170427043704470457046704770487049705070517052705370547055705670577058705970607061706270637064706570667067706870697070707170727073707470757076707770787079708070817082708370847085708670877088708970907091709270937094709570967097709870997100710171027103710471057106710771087109711071117112711371147115711671177118711971207121712271237124712571267127712871297130713171327133713471357136713771387139714071417142714371447145714671477148714971507151715271537154715571567157715871597160716171627163716471657166716771687169717071717172717371747175717671777178717971807181718271837184718571867187718871897190719171927193719471957196719771987199720072017202720372047205720672077208720972107211721272137214721572167217721872197220722172227223722472257226722772287229723072317232723372347235723672377238723972407241724272437244724572467247724872497250725172527253725472557256725772587259726072617262726372647265726672677268726972707271727272737274727572767277727872797280728172827283728472857286728772887289729072917292729372947295729672977298729973007301730273037304730573067307730873097310731173127313731473157316731773187319732073217322732373247325732673277328732973307331733273337334733573367337733873397340734173427343734473457346734773487349735073517352735373547355735673577358735973607361736273637364736573667367736873697370737173727373737473757376737773787379738073817382738373847385738673877388738973907391739273937394739573967397739873997400740174027403740474057406740774087409741074117412741374147415741674177418741974207421742274237424742574267427742874297430743174327433743474357436743774387439744074417442744374447445744674477448744974507451745274537454745574567457745874597460746174627463746474657466746774687469747074717472747374747475747674777478747974807481748274837484748574867487748874897490749174927493749474957496749774987499750075017502750375047505750675077508750975107511751275137514751575167517751875197520752175227523752475257526752775287529753075317532753375347535753675377538753975407541754275437544754575467547754875497550755175527553755475557556
  1. package service
  2. import (
  3. "XT_New/models"
  4. "encoding/json"
  5. "fmt"
  6. "github.com/jinzhu/gorm"
  7. "strconv"
  8. "time"
  9. )
  10. // func GetSchedualPatients(orgID int64) ([]*MDialysisScheduleVM, error) {
  11. // var vms []*MDialysisScheduleVM
  12. // err := readDb.
  13. // Table("xt_schedule as sch").
  14. // Preload("SchedualPatient", "status = 1 AND user_org_id = ?", orgID).
  15. // Preload("DeviceNumber", "status = 1 AND org_id = ?", orgID).
  16. // Preload("DeviceZone", "status = 1 AND org_id = ?", orgID).
  17. // Preload("TreatmentMode", "status = 1").
  18. // Preload("DialysisOrder", "status = 1 AND user_org_id = ?", orgID).
  19. // Preload("DialysisOrder.MonitoringRecords", "status = 1 AND user_org_id = ?", orgID).
  20. // Where("sch.status = 1 AND sch.user_org_id = ? AND schedule_date = 1536768000", orgID).
  21. // Find(&vms).
  22. // Error
  23. // return vms, err
  24. // }
  25. func MobileGetDialysisScheduals(orgID int64, scheduleDate int64, scheduleType int64) ([]*MDialysisScheduleVMForList, error) {
  26. var vms []*MDialysisScheduleVMForList
  27. db := readDb.
  28. Table("xt_schedule as sch").
  29. Where("sch.status = 1 AND sch.user_org_id = ?", orgID)
  30. if scheduleDate != 0 {
  31. db = db.Where("schedule_date = ?", scheduleDate)
  32. }
  33. if scheduleType != 0 {
  34. db = db.Where("schedule_type = ?", scheduleType)
  35. }
  36. err := db.Preload("DialysisLastOrder", func(db *gorm.DB) *gorm.DB {
  37. return db.Order("dialysis_date desc").Where(" status = 1 AND user_org_id = ? and dialysis_date>=1672502400 && dialysis_date < ?", orgID, scheduleDate)
  38. }).Preload("DialysisSolution", "status = 1 and user_org_id = ? and solution_status = 1", orgID).Find(&vms).Error
  39. return vms, err
  40. }
  41. func MobileGetWaitingScheduals(orgID int64, scheduleDate int64) ([]*MDialysisScheduleVM, error) {
  42. var vms []*MDialysisScheduleVM
  43. db := readDb.
  44. Table("xt_schedule as sch").
  45. Preload("SchedualPatient", "status = 1 AND user_org_id = ?", orgID).
  46. Preload("DeviceNumber", "status = 1 AND org_id = ?", orgID).
  47. Preload("DeviceNumber.Zone", "status = 1 AND org_id = ?", orgID).
  48. // Preload("DeviceZone", "status = 1 AND org_id = ?", orgID).
  49. Preload("Prescription", "status = 1 AND user_org_id = ? AND record_date = ?", orgID, scheduleDate).
  50. Preload("AssessmentBeforeDislysis", "status = 1 AND user_org_id = ? AND assessment_date = ? ", orgID, scheduleDate).
  51. Preload("DialysisOrder", "status = 1 AND user_org_id = ?", orgID).
  52. Preload("Advices", "status = 1 AND user_org_id = ? AND advice_type = 2 ", orgID).
  53. Preload("TreatmentMode", "status = 1").
  54. Preload("TreatmentSummary", "status = 1 AND user_org_id = ?", orgID).
  55. Where("sch.status = 1 AND sch.user_org_id = ?", orgID)
  56. if scheduleDate != 0 {
  57. db = db.Where("schedule_date = ?", scheduleDate)
  58. }
  59. err := db.Find(&vms).Error
  60. return vms, err
  61. }
  62. type VMTreatmentSummary struct {
  63. ID int64 `gorm:"column:id" json:"id"`
  64. UserOrgId int64 `gorm:"column:user_org_id" json:"user_org_id"`
  65. PatientId int64 `gorm:"column:patient_id" json:"patient_id"`
  66. AssessmentDate int64 `gorm:"column:assessment_date" json:"assessment_date"`
  67. DialysisSummary string `gorm:"column:dialysis_summary" json:"dialysis_summary" form:"dialysis_summary"`
  68. }
  69. func (VMTreatmentSummary) TableName() string {
  70. return "xt_treatment_summary"
  71. }
  72. type AssessmentAfterDislysis struct {
  73. ID int64 `gorm:"column:id" json:"id"`
  74. UserOrgId int64 `gorm:"column:user_org_id" json:"user_org_id"`
  75. PatientId int64 `gorm:"column:patient_id" json:"patient_id"`
  76. AssessmentDate int64 `gorm:"column:assessment_date" json:"assessment_date"`
  77. WeightAfter float64 `gorm:"column:weight_after" json:"weight_after"`
  78. Status int64 `gorm:"column:status" json:"status"`
  79. }
  80. func (AssessmentAfterDislysis) TableName() string {
  81. return "xt_assessment_after_dislysis"
  82. }
  83. type MDialysisScheduleVM struct {
  84. ID int64 `gorm:"column:id" json:"id"`
  85. UserOrgId int64 `gorm:"column:user_org_id" json:"user_org_id"`
  86. PartitionId int64 `gorm:"column:partition_id" json:"partition_id"`
  87. BedId int64 `gorm:"column:bed_id" json:"bed_id"`
  88. PatientId int64 `gorm:"column:patient_id" json:"patient_id"`
  89. ScheduleDate int64 `gorm:"column:schedule_date" json:"schedule_date"`
  90. ScheduleType int64 `gorm:"column:schedule_type" json:"schedule_type"`
  91. ScheduleWeek int64 `gorm:"column:schedule_week" json:"schedule_week"`
  92. ModeId int64 `gorm:"column:mode_id" json:"mode_id"`
  93. Status int64 `gorm:"column:status" json:"status"`
  94. SchedualPatient *MSchedualPatientVMList `gorm:"ForeignKey:PatientId" json:"patient"`
  95. DeviceNumber *MDeviceNumberVM `gorm:"ForeignKey:BedId" json:"device_number"`
  96. DialysisOrder *MDialysisOrderVMList `gorm:"ForeignKey:PatientId;AssociationForeignKey:PatientId" json:"dialysis_order"`
  97. Prescription *models.DialysisPrescriptionList `gorm:"ForeignKey:PatientId;AssociationForeignKey:PatientId" json:"prescription"`
  98. AssessmentBeforeDislysis *models.PredialysisEvaluationList `gorm:"ForeignKey:PatientId;AssociationForeignKey:PatientId" json:"assessment_before_dislysis"`
  99. AssessmentAfterDislysis *AssessmentAfterDislysis `gorm:"ForeignKey:PatientId;AssociationForeignKey:PatientId" json:"assessment_after_dislysis"`
  100. HisAdvices []*VMHisDoctorAdviceInfo `gorm:"ForeignKey:PatientId;AssociationForeignKey:PatientId" json:"his_doctor_advice"`
  101. Advices []*VMDoctorAdvice `gorm:"ForeignKey:PatientId;AssociationForeignKey:PatientId" json:"doctor_advice"`
  102. TreatmentSummary *VMTreatmentSummary `gorm:"ForeignKey:PatientId;AssociationForeignKey:PatientId" json:"treatment_summary"`
  103. NewDeviceInformation *NewDeviceInformation `gorm:"ForeignKey:PatientId;AssociationForeignKey:PatientId" json:"device_information"`
  104. }
  105. func (MDialysisScheduleVM) TableName() string {
  106. return "xt_schedule"
  107. }
  108. type MDialysisScheduleVMForList struct {
  109. ID int64 `gorm:"column:id" json:"id"`
  110. UserOrgId int64 `gorm:"column:user_org_id" json:"user_org_id"`
  111. PartitionId int64 `gorm:"column:partition_id" json:"partition_id"`
  112. BedId int64 `gorm:"column:bed_id" json:"bed_id"`
  113. PatientId int64 `gorm:"column:patient_id" json:"patient_id"`
  114. ScheduleDate int64 `gorm:"column:schedule_date" json:"schedule_date"`
  115. ScheduleType int64 `gorm:"column:schedule_type" json:"schedule_type"`
  116. ScheduleWeek int64 `gorm:"column:schedule_week" json:"schedule_week"`
  117. ModeId int64 `gorm:"column:mode_id" json:"mode_id"`
  118. Status int64 `gorm:"column:status" json:"status"`
  119. SchedualPatient *models.MSchedualPatientList `gorm:"ForeignKey:PatientId" json:"patient"`
  120. DeviceNumber *models.MDeviceNumberForList `gorm:"ForeignKey:BedId" json:"device_number"`
  121. DialysisOrder *models.MDialysisOrderForList `gorm:"ForeignKey:PatientId;AssociationForeignKey:PatientId" json:"dialysis_order"`
  122. DialysisLastOrder *models.MDialysisOrderForList `gorm:"ForeignKey:PatientId;AssociationForeignKey:PatientId" json:"last_order"`
  123. Prescription *models.DialysisPrescriptionList `gorm:"ForeignKey:PatientId;AssociationForeignKey:PatientId" json:"prescription"`
  124. AssessmentBeforeDislysis *models.PredialysisEvaluationList `gorm:"ForeignKey:PatientId;AssociationForeignKey:PatientId" json:"assessment_before_dislysis"`
  125. AssessmentAfterDislysis *models.VMAssessmentAfterDislysis `gorm:"ForeignKey:PatientId;AssociationForeignKey:PatientId" json:"assessment_after_dislysis"`
  126. HisAdvices []VMHisDoctorAdviceInfo `gorm:"ForeignKey:PatientId;AssociationForeignKey:PatientId" json:"his_doctor_advice"`
  127. Advices []models.VMDoctorAdviceForList `gorm:"ForeignKey:PatientId;AssociationForeignKey:PatientId" json:"doctor_advice"`
  128. TreatmentSummary *models.VMTreatmentSummaryForList `gorm:"ForeignKey:PatientId;AssociationForeignKey:PatientId" json:"treatment_summary"`
  129. DialysisSolution *models.DialysisSolution `gorm:"ForeignKey:PatientId,ModeId;AssociationForeignKey:PatientId,ModeId" json:"dialysis_solution"`
  130. DoubleCheck *models.DoubleCheck `gorm:"ForeignKey:PatientId;AssociationForeignKey:PatientId" json:"dobule_check"`
  131. NewDeviceInformation *NewDeviceInformation `gorm:"ForeignKey:PatientId;AssociationForeignKey:PatientId" json:"device_information"`
  132. }
  133. func (MDialysisScheduleVMForList) TableName() string {
  134. return "xt_schedule"
  135. }
  136. type MDeviceNumberVM struct {
  137. models.DeviceNumber
  138. Zone *models.DeviceZone `gorm:"ForeignKey:ZoneID" json:"zone"`
  139. }
  140. func (MDeviceNumberVM) TableName() string {
  141. return "xt_device_number"
  142. }
  143. type MSchedualPatientVMList struct {
  144. ID int64 `gorm:"column:id" json:"id" form:"id"`
  145. UserOrgId int64 `gorm:"column:user_org_id" json:"user_org_id" form:"user_org_id"`
  146. UserId int64 `gorm:"column:user_id" json:"user_id" form:"user_id"`
  147. PatientType int64 `gorm:"column:patient_type" json:"patient_type" form:"patient_type"`
  148. DialysisNo string `gorm:"column:dialysis_no" json:"dialysis_no" form:"dialysis_no"`
  149. Avatar string `gorm:"column:avatar" json:"avatar" form:"avatar"`
  150. Gender int64 `gorm:"column:gender" json:"gender" form:"gender"`
  151. Birthday int64 `gorm:"column:birthday" json:"birthday" form:"birthday"`
  152. Age int64 `gorm:"column:age" json:"age"`
  153. Name string `gorm:"column:name" json:"name" form:"name"`
  154. IdCardNo string `gorm:"column:id_card_no" json:"id_card_no" form:"id_card_no"`
  155. UserSysBeforeCount int64 `gorm:"column:user_sys_before_count" json:"user_sys_before_count" form:"user_sys_before_count"`
  156. TrobleShoot int64 `gorm:"column:troble_shoot" json:"troble_shoot" form:"troble_shoot"`
  157. SchRemark string `gorm:"column:sch_remark" json:"sch_remark" form:"sch_remark"`
  158. ScheduleRemark string `gorm:"column:schedule_remark" json:"schedule_remark" form:"schedule_remark"`
  159. }
  160. func (MSchedualPatientVMList) TableName() string {
  161. return "xt_patients"
  162. }
  163. type MSchedualPatientVM struct {
  164. ID int64 `gorm:"column:id" json:"id" form:"id"`
  165. UserOrgId int64 `gorm:"column:user_org_id" json:"user_org_id" form:"user_org_id"`
  166. UserId int64 `gorm:"column:user_id" json:"user_id" form:"user_id"`
  167. PatientType int64 `gorm:"column:patient_type" json:"patient_type" form:"patient_type"`
  168. Avatar string `gorm:"column:avatar" json:"avatar" form:"avatar"`
  169. DialysisNo string `gorm:"column:dialysis_no" json:"dialysis_no" form:"dialysis_no"`
  170. AdmissionNumber string `gorm:"column:admission_number" json:"admission_number" form:"admission_number"`
  171. Source int64 `gorm:"column:source" json:"source" form:"source"`
  172. Lapseto int64 `gorm:"column:lapseto" json:"lapseto" form:"lapseto"`
  173. PartitionId int64 `gorm:"column:partition_id" json:"partition_id" form:"partition_id"`
  174. BedId int64 `gorm:"column:bed_id" json:"bed_id" form:"bed_id"`
  175. Name string `gorm:"column:name" json:"name" form:"name"`
  176. Alias string `gorm:"column:alias" json:"alias" form:"alias"`
  177. Gender int64 `gorm:"column:gender" json:"gender" form:"gender"`
  178. Nation string `gorm:"column:nation" json:"nation" form:"nation"`
  179. NativePlace string `gorm:"column:native_place" json:"native_place" form:"native_place"`
  180. MaritalStatus int64 `gorm:"column:marital_status" json:"marital_status" form:"marital_status"`
  181. IdCardNo string `gorm:"column:id_card_no" json:"id_card_no" form:"id_card_no"`
  182. Birthday int64 `gorm:"column:birthday" json:"birthday" form:"birthday"`
  183. ReimbursementWayId int64 `gorm:"column:reimbursement_way_id" json:"reimbursement_way_id" form:"reimbursement_way_id"`
  184. HealthCareType int64 `gorm:"column:health_care_type" json:"health_care_type" form:"health_care_type"`
  185. HealthCareNo string `gorm:"column:health_care_no" json:"health_care_no" form:"health_care_no"`
  186. HealthCareDueDate int64 `gorm:"column:health_care_due_date" json:"health_care_due_date" form:"health_care_due_date"`
  187. Height int64 `gorm:"column:height" json:"height" form:"height"`
  188. BloodType int64 `gorm:"column:blood_type" json:"blood_type" form:"blood_type"`
  189. Rh int64 `gorm:"column:rh" json:"rh" form:"rh"`
  190. HealthCareDueAlertDate int64 `gorm:"column:health_care_due_alert_date" json:"health_care_due_alert_date" form:"health_care_due_alert_date"`
  191. EducationLevel int64 `gorm:"column:education_level" json:"education_level" form:"education_level"`
  192. Profession int64 `gorm:"column:profession" json:"profession" form:"profession"`
  193. Phone string `gorm:"column:phone" json:"phone" form:"phone"`
  194. HomeTelephone string `gorm:"column:home_telephone" json:"home_telephone" form:"home_telephone"`
  195. RelativePhone string `gorm:"column:relative_phone" json:"relative_phone" form:"relative_phone"`
  196. RelativeRelations string `gorm:"column:relative_relations" json:"relative_relations" form:"relative_relations"`
  197. HomeAddress string `gorm:"column:home_address" json:"home_address" form:"home_address"`
  198. WorkUnit string `gorm:"column:work_unit" json:"work_unit" form:"work_unit"`
  199. UnitAddress string `gorm:"column:unit_address" json:"unit_address" form:"unit_address"`
  200. Children int64 `gorm:"column:children" json:"children" form:"children"`
  201. ReceivingDate int64 `gorm:"column:receiving_date" json:"receiving_date" form:"receiving_date"`
  202. IsHospitalFirstDialysis int64 `gorm:"column:is_hospital_first_dialysis" json:"is_hospital_first_dialysis" form:"is_hospital_first_dialysis"`
  203. FirstDialysisDate int64 `gorm:"column:first_dialysis_date" json:"first_dialysis_date" form:"first_dialysis_date"`
  204. FirstDialysisHospital string `gorm:"column:first_dialysis_hospital" json:"first_dialysis_hospital" form:"first_dialysis_hospital"`
  205. InductionPeriod int64 `gorm:"column:induction_period" json:"induction_period" form:"induction_period"`
  206. InitialDialysis int64 `gorm:"column:initial_dialysis" json:"initial_dialysis" form:"initial_dialysis"`
  207. TotalDialysis int64 `gorm:"column:total_dialysis" json:"total_dialysis" form:"total_dialysis"`
  208. AttendingDoctorId int64 `gorm:"column:attending_doctor_id" json:"attending_doctor_id" form:"attending_doctor_id"`
  209. HeadNurseId int64 `gorm:"column:head_nurse_id" json:"head_nurse_id" form:"head_nurse_id"`
  210. Evaluate string `gorm:"column:evaluate" json:"evaluate" form:"evaluate"`
  211. Diagnose string `gorm:"column:diagnose" json:"diagnose" form:"diagnose"`
  212. Remark string `gorm:"column:remark" json:"remark" form:"remark"`
  213. RegistrarsId int64 `gorm:"column:registrars_id" json:"registrars_id" form:"registrars_id"`
  214. Registrars string `gorm:"column:registrars" json:"registrars" form:"registrars"`
  215. QrCode string `gorm:"column:qr_code" json:"qr_code" form:"qr_code"`
  216. BindingState int64 `gorm:"column:binding_state" json:"binding_state" form:"binding_state"`
  217. PatientComplains string `gorm:"column:patient_complains" json:"patient_complains"` // 主诉
  218. PresentHistory string `gorm:"column:present_history" json:"present_history"` // 现病史
  219. PastHistory string `gorm:"column:past_history" json:"past_history"` // 既往史
  220. Temperature float64 `gorm:"column:temperature" json:"temperature"` // 体格检查-体温
  221. Pulse int64 `gorm:"column:pulse" json:"pulse"` // 体格检查-脉搏
  222. Respiratory int64 `gorm:"column:respiratory" json:"respiratory"` // 体格检查-呼吸频率
  223. SBP int64 `gorm:"column:sbp" json:"sbp"` // 体格检查-收缩压
  224. DBP int64 `gorm:"column:dbp" json:"dbp"` // 体格检查-舒张压
  225. Status int64 `gorm:"column:status" json:"status" form:"status"`
  226. Age int64 `gorm:"column:age" json:"age"`
  227. IsOpenRemind int64 `gorm:"column:is_open_remind" json:"is_open_remind"`
  228. DialysisAge int64 `gorm:"column:dialysis_age" json:"dialysis_age" form:"dialysis_age"`
  229. ExpenseKind int64 `gorm:"column:expense_kind" json:"expense_kind" form:"expense_kind"`
  230. TellPhone string `gorm:"column:tell_phone" json:"tell_phone" form:"tell_phone"`
  231. FirstTreatmentDate int64 `gorm:"column:first_treatment_date" json:"first_treatment_date" form:"first_treatment_date"`
  232. ContactName string `gorm:"column:contact_name" json:"contact_name" form:"contact_name"`
  233. UserSysBeforeCount int64 `gorm:"column:user_sys_before_count" json:"user_sys_before_count" form:"user_sys_before_count"`
  234. }
  235. func (MSchedualPatientVM) TableName() string {
  236. return "xt_patients"
  237. }
  238. type MDialysisOrderVM struct {
  239. ID int64 `gorm:"column:id" json:"id"`
  240. DialysisDate int64 `gorm:"column:dialysis_date" json:"dialysis_date"`
  241. UserOrgId int64 `gorm:"column:user_org_id" json:"user_org_id"`
  242. PatientId int64 `gorm:"column:patient_id" json:"patient_id"`
  243. // PrescriptionId int64 `gorm:"column:prescription_id" json:"prescription_id"`
  244. Stage int64 `gorm:"column:stage" json:"stage"`
  245. // Remark string `gorm:"column:remark" json:"remark"`
  246. BedID int64 `gorm:"column:bed_id" json:"bed_id"`
  247. StartNurse int64 `gorm:"column:start_nurse" json:"start_nurse"`
  248. FinishNurse int64 `gorm:"column:finish_nurse" json:"finish_nurse"`
  249. Status int64 `gorm:"column:status" json:"status"`
  250. PunctureNurse int64 `gorm:"column:puncture_nurse" json:"puncture_nurse"`
  251. DeviceNumber *MDeviceNumberVM `gorm:"ForeignKey:BedID" json:"device_number"`
  252. MonitoringRecords []*models.MonitoringRecord `gorm:"ForeignKey:DialysisOrderId" json:"monitoring_records"`
  253. Creator int64 `gorm:"column:creator" json:"creator"`
  254. Modifier int64 `gorm:"column:modifier" json:"modifier"`
  255. FinishCreator int64 `gorm:"column:finish_creator" json:"finish_creator"`
  256. FinishModifier int64 `gorm:"column:finish_modifier" json:"finish_modifier"`
  257. SchedualType int64 `gorm:"column:schedual_type" json:"schedual_type"`
  258. WashpipeNurse int64 `gorm:"column:washpipe_nurse" json:"washpipe_nurse" form:"washpipe_nurse"`
  259. DialysisIrrigation string `gorm:"column:dialysis_irrigation" json:"dialysis_irrigation" form:"dialysis_irrigation"`
  260. DialysisDialyszers string `gorm:"column:dialysis_dialyszers" json:"dialysis_dialyszers" form:"dialysis_dialyszers"`
  261. }
  262. func (MDialysisOrderVM) TableName() string {
  263. return "xt_dialysis_order"
  264. }
  265. type MDialysisOrderVMList struct {
  266. ID int64 `gorm:"column:id" json:"id"`
  267. DialysisDate int64 `gorm:"column:dialysis_date" json:"dialysis_date"`
  268. UserOrgId int64 `gorm:"column:user_org_id" json:"user_org_id"`
  269. PatientId int64 `gorm:"column:patient_id" json:"patient_id"`
  270. // PrescriptionId int64 `gorm:"column:prescription_id" json:"prescription_id"`
  271. Stage int64 `gorm:"column:stage" json:"stage"`
  272. // Remark string `gorm:"column:remark" json:"remark"`
  273. BedID int64 `gorm:"column:bed_id" json:"bed_id"`
  274. StartNurse int64 `gorm:"column:start_nurse" json:"start_nurse"`
  275. Status int64 `gorm:"column:status" json:"status"`
  276. DeviceNumber *MDeviceNumberVM `gorm:"ForeignKey:BedID" json:"device_number"`
  277. Creator int64 `gorm:"column:creator" json:"creator"`
  278. WashpipeNurse int64 `gorm:"column:washpipe_nurse" json:"washpipe_nurse" form:"washpipe_nurse"`
  279. NucleinDate int64 `gorm:"column:nuclein_date" json:"nuclein_date" form:"nuclein_date"`
  280. DialysisIrrigation string `gorm:"column:dialysis_irrigation" json:"dialysis_irrigation" form:"dialysis_irrigation"`
  281. DialysisDialyszers string `gorm:"column:dialysis_dialyszers" json:"dialysis_dialyszers" form:"dialysis_dialyszers"`
  282. ScheduleRemark string `gorm:"column:schedule_remark" json:"schedule_remark" form:"schedule_remark"`
  283. }
  284. func (MDialysisOrderVMList) TableName() string {
  285. return "xt_dialysis_order"
  286. }
  287. type VMDoctorAdvice struct {
  288. ID int64 `gorm:"column:id" json:"id" form:"id"`
  289. GroupNo int64 `gorm:"column:groupno" json:"groupno" form:"groupno"`
  290. UserOrgId int64 `gorm:"column:user_org_id" json:"user_org_id" form:"user_org_id"`
  291. PatientId int64 `gorm:"column:patient_id" json:"patient_id" form:"patient_id"`
  292. AdviceDate int64 `gorm:"column:advice_date" json:"advice_date" form:"advice_date"`
  293. Status int64 `gorm:"column:status" json:"status" form:"status"`
  294. ExecutionState int64 `gorm:"column:execution_state" json:"execution_state" form:"execution_state"`
  295. RecordDate int64 `gorm:"column:record_date" json:"record_date"`
  296. CheckTime int64 `gorm:"column:check_time" json:"check_time" form:"check_time"`
  297. CheckState int64 `gorm:"column:check_state" json:"check_state" form:"check_state"`
  298. ParentId int64 `gorm:"column:parent_id" json:"parent_id" form:"parent_id"`
  299. }
  300. func (VMDoctorAdvice) TableName() string {
  301. return "xt_doctor_advice"
  302. }
  303. type VMHisDoctorAdviceInfo struct {
  304. ID int64 `gorm:"column:id" json:"id" form:"id"`
  305. UserOrgId int64 `gorm:"column:user_org_id" json:"user_org_id" form:"user_org_id"`
  306. PatientId int64 `gorm:"column:patient_id" json:"patient_id" form:"patient_id"`
  307. HisPatientId int64 `gorm:"column:his_patient_id" json:"his_patient_id" form:"his_patient_id"`
  308. ExecutionTime int64 `gorm:"column:execution_time" json:"execution_time" form:"execution_time"`
  309. ExecutionStaff int64 `gorm:"column:execution_staff" json:"execution_staff" form:"execution_staff"`
  310. ExecutionState int64 `gorm:"column:execution_state" json:"execution_state" form:"execution_state"`
  311. IsMedicine int64 `gorm:"column:is_medicine" json:"is_medicine" form:"is_medicine"`
  312. ExecutionFrequencyId int64 `gorm:"column:execution_frequency_id" json:"execution_frequency_id" form:"execution_frequency_id"`
  313. }
  314. func (VMHisDoctorAdviceInfo) TableName() string {
  315. return "his_doctor_advice_info"
  316. }
  317. type VMAssessmentAfterDislysis struct {
  318. ID int64 `gorm:"column:id" json:"id"`
  319. UserOrgId int64 `gorm:"column:user_org_id" json:"user_org_id"`
  320. PatientId int64 `gorm:"column:patient_id" json:"patient_id"`
  321. AssessmentDate int64 `gorm:"column:assessment_date" json:"assessment_date"`
  322. WeightAfter float64 `gorm:"column:weight_after" json:"weight_after"`
  323. Status int64 `gorm:"column:status" json:"status"`
  324. }
  325. func (VMAssessmentAfterDislysis) TableName() string {
  326. return "xt_assessment_after_dislysis"
  327. }
  328. type NewDeviceInformation struct {
  329. ID int64 `gorm:"column:id" json:"id" form:"id"`
  330. Date int64 `gorm:"column:date" json:"date" form:"date"`
  331. Class int64 `gorm:"column:class" json:"class" form:"class"`
  332. Zone int64 `gorm:"column:zone" json:"zone" form:"zone"`
  333. BedNumber int64 `gorm:"column:bed_number" json:"bed_number" form:"bed_number"`
  334. PatientId int64 `gorm:"column:patient_id" json:"patient_id" form:"patient_id"`
  335. Status int64 `gorm:"column:status" json:"status" form:"status"`
  336. UserOrgId int64 `gorm:"column:user_org_id" json:"user_org_id" form:"user_org_id"`
  337. EquimentId int64 `gorm:"column:equiment_id" json:"equiment_id" form:"equiment_id"`
  338. Bed string `gorm:"column:bed" json:"bed" form:"bed"`
  339. Stime int64 `gorm:"column:stime" json:"stime" form:"stime"`
  340. }
  341. func (NewDeviceInformation) TableName() string {
  342. return "xt_device_information"
  343. }
  344. // 获取透析记录
  345. func MobileGetDialysisRecord(orgID int64, patientID int64, recordDate int64) (*models.DialysisOrder, error) {
  346. var record models.DialysisOrder
  347. err := readDb.Model(&models.DialysisOrder{}).Where("user_org_id = ? AND patient_id = ? AND dialysis_date = ?", orgID, patientID, recordDate).First(&record).Error
  348. if err != nil {
  349. if err == gorm.ErrRecordNotFound {
  350. return nil, nil
  351. } else {
  352. return nil, err
  353. }
  354. }
  355. return &record, nil
  356. }
  357. // 用户基本信息
  358. func MobileGetPatientDetail(orgID int64, patientID int64) (*MPatient, error) {
  359. var patient MPatient
  360. //err := readDb.Model(&MPatient{}).Where("status = 1 AND user_org_id = ? AND id = ?", orgID, patientID).First(&patient).Error
  361. //if err != nil {
  362. // if err == gorm.ErrRecordNotFound {
  363. // return nil, nil
  364. // } else {
  365. // return nil, err
  366. // }
  367. //}
  368. //return &patient, nil
  369. redis := RedisClient()
  370. defer redis.Close()
  371. key := strconv.FormatInt(orgID, 10) + ":" + strconv.FormatInt(patientID, 10) + ":patient_info"
  372. patient_info_str, _ := redis.Get(key).Result()
  373. if len(patient_info_str) == 0 { //没有到缓存数据,从数据库中获取数据,进行缓存到redis
  374. err = readDb.Model(&patient).Where("id = ? and user_org_id=? and status=1", patientID, orgID).First(&patient).Error
  375. if err != nil {
  376. if err == gorm.ErrRecordNotFound {
  377. return &patient, nil
  378. } else {
  379. return &patient, err
  380. }
  381. } else {
  382. if patient.ID > 0 {
  383. //缓存数据
  384. patient_info_json, err := json.Marshal(&patient)
  385. if err == nil {
  386. redis.Set(key, patient_info_json, time.Second*60*60*18)
  387. }
  388. }
  389. return &patient, nil
  390. }
  391. } else { //缓存数据了数据,将redis缓存的json字符串转为map
  392. json.Unmarshal([]byte(patient_info_str), &patient)
  393. return &patient, nil
  394. }
  395. }
  396. func MobileGetSchedualDetailOne(orgID int64, patientID int64, schedualDate int64) (*MDialysisScheduleVM, error) {
  397. var vm MDialysisScheduleVM
  398. err := readDb.
  399. Table("xt_schedule").
  400. Preload("DeviceNumber", "status = 1 AND org_id = ?", orgID).
  401. Preload("DeviceNumber.Zone", "status = 1 AND org_id = ?", orgID).
  402. Where("status = 1 AND user_org_id = ? AND schedule_date = ? AND patient_id = ?", orgID, schedualDate, patientID).
  403. First(&vm).Error
  404. return &vm, err
  405. }
  406. // 用户排班信息
  407. func MobileGetSchedualDetailSix(orgID int64, patientID int64, schedualDate int64) (*MDialysisScheduleVM, error) {
  408. var vm MDialysisScheduleVM
  409. err := readDb.
  410. Table("xt_schedule").
  411. // Preload("SchedualPatient", "status = 1 AND user_org_id = ?", orgID).
  412. Preload("DeviceNumber", "status = 1 AND org_id = ?", orgID).
  413. Where("status = 1 AND user_org_id = ? AND schedule_date = ? AND patient_id = ?", orgID, schedualDate, patientID).
  414. First(&vm).Error
  415. if err != nil {
  416. if err == gorm.ErrRecordNotFound {
  417. return nil, nil
  418. } else {
  419. return nil, err
  420. }
  421. }
  422. return &vm, err
  423. }
  424. // 用户排班信息
  425. func MobileGetSchedualDetail(orgID int64, patientID int64, schedualDate int64) (*MDialysisScheduleVM, error) {
  426. redis := RedisClient()
  427. defer redis.Close()
  428. var vm MDialysisScheduleVM
  429. key := strconv.FormatInt(orgID, 10) + ":" + strconv.FormatInt(patientID, 10) + ":" + strconv.FormatInt(schedualDate, 10) + ":schedual_detail"
  430. redis.Set(key, "", time.Second)
  431. schedual_detail_str, _ := redis.Get(key).Result()
  432. if len(schedual_detail_str) == 0 { //没有到缓存数据,从数据库中获取数据,进行缓存到redis
  433. err := readDb.
  434. Table("xt_schedule").
  435. Preload("DeviceNumber", "status = 1 AND org_id = ?", orgID).
  436. Preload("DeviceNumber.Zone", "status = 1 AND org_id = ?", orgID).
  437. Where("status = 1 AND user_org_id = ? AND schedule_date = ? AND patient_id = ?", orgID, schedualDate, patientID).
  438. First(&vm).Error
  439. if err != nil {
  440. if err == gorm.ErrRecordNotFound {
  441. return nil, nil
  442. } else {
  443. return nil, err
  444. }
  445. } else {
  446. if vm.ID > 0 {
  447. //缓存数据
  448. schedual_detail_str, err := json.Marshal(vm)
  449. if err == nil {
  450. redis.Set(key, schedual_detail_str, time.Second*60*60*18)
  451. }
  452. } else {
  453. redis.Set(key, "null", time.Second*60*60*18)
  454. }
  455. return &vm, nil
  456. }
  457. } else { //缓存数据了数据,将redis缓存的json字符串转为map
  458. if schedual_detail_str == "null" {
  459. return &vm, nil
  460. }
  461. json.Unmarshal([]byte(schedual_detail_str), &vm)
  462. return &vm, nil
  463. }
  464. }
  465. // 用户排班信息
  466. func MobileGetPatientSchedual(orgID int64, patientID int64, schedualDate int64) (*models.Schedule, error) {
  467. var schedule models.Schedule
  468. err := readDb.
  469. Table("xt_schedule").
  470. Where("status = 1 AND user_org_id = ? AND schedule_date = ? AND patient_id = ?", orgID, schedualDate, patientID).
  471. First(&schedule).Error
  472. if err != nil {
  473. if err == gorm.ErrRecordNotFound {
  474. return nil, nil
  475. } else {
  476. return nil, err
  477. }
  478. }
  479. return &schedule, nil
  480. }
  481. type MPatient struct {
  482. ID int64 `gorm:"column:id" json:"id" form:"id"`
  483. UserOrgId int64 `gorm:"column:user_org_id" json:"user_org_id" form:"user_org_id"`
  484. UserId int64 `gorm:"column:user_id" json:"user_id" form:"user_id"`
  485. PatientType int64 `gorm:"column:patient_type" json:"patient_type" form:"patient_type"`
  486. Avatar string `gorm:"column:avatar" json:"avatar" form:"avatar"`
  487. DialysisNo string `gorm:"column:dialysis_no" json:"dialysis_no" form:"dialysis_no"`
  488. AdmissionNumber string `gorm:"column:admission_number" json:"admission_number" form:"admission_number"`
  489. Source int64 `gorm:"column:source" json:"source" form:"source"`
  490. Lapseto int64 `gorm:"column:lapseto" json:"lapseto" form:"lapseto"`
  491. PartitionId int64 `gorm:"column:partition_id" json:"partition_id" form:"partition_id"`
  492. BedId int64 `gorm:"column:bed_id" json:"bed_id" form:"bed_id"`
  493. Name string `gorm:"column:name" json:"name" form:"name"`
  494. Alias string `gorm:"column:alias" json:"alias" form:"alias"`
  495. Gender int64 `gorm:"column:gender" json:"gender" form:"gender"`
  496. Nation string `gorm:"column:nation" json:"nation" form:"nation"`
  497. NativePlace string `gorm:"column:native_place" json:"native_place" form:"native_place"`
  498. MaritalStatus int64 `gorm:"column:marital_status" json:"marital_status" form:"marital_status"`
  499. IdCardNo string `gorm:"column:id_card_no" json:"id_card_no" form:"id_card_no"`
  500. Birthday int64 `gorm:"column:birthday" json:"birthday" form:"birthday"`
  501. ReimbursementWayId int64 `gorm:"column:reimbursement_way_id" json:"reimbursement_way_id" form:"reimbursement_way_id"`
  502. HealthCareType int64 `gorm:"column:health_care_type" json:"health_care_type" form:"health_care_type"`
  503. HealthCareNo string `gorm:"column:health_care_no" json:"health_care_no" form:"health_care_no"`
  504. HealthCareDueDate int64 `gorm:"column:health_care_due_date" json:"health_care_due_date" form:"health_care_due_date"`
  505. Height int64 `gorm:"column:height" json:"height" form:"height"`
  506. BloodType int64 `gorm:"column:blood_type" json:"blood_type" form:"blood_type"`
  507. Rh int64 `gorm:"column:rh" json:"rh" form:"rh"`
  508. HealthCareDueAlertDate int64 `gorm:"column:health_care_due_alert_date" json:"health_care_due_alert_date" form:"health_care_due_alert_date"`
  509. EducationLevel int64 `gorm:"column:education_level" json:"education_level" form:"education_level"`
  510. Profession int64 `gorm:"column:profession" json:"profession" form:"profession"`
  511. Phone string `gorm:"column:phone" json:"phone" form:"phone"`
  512. HomeTelephone string `gorm:"column:home_telephone" json:"home_telephone" form:"home_telephone"`
  513. RelativePhone string `gorm:"column:relative_phone" json:"relative_phone" form:"relative_phone"`
  514. RelativeRelations string `gorm:"column:relative_relations" json:"relative_relations" form:"relative_relations"`
  515. HomeAddress string `gorm:"column:home_address" json:"home_address" form:"home_address"`
  516. WorkUnit string `gorm:"column:work_unit" json:"work_unit" form:"work_unit"`
  517. UnitAddress string `gorm:"column:unit_address" json:"unit_address" form:"unit_address"`
  518. Children int64 `gorm:"column:children" json:"children" form:"children"`
  519. ReceivingDate int64 `gorm:"column:receiving_date" json:"receiving_date" form:"receiving_date"`
  520. IsHospitalFirstDialysis int64 `gorm:"column:is_hospital_first_dialysis" json:"is_hospital_first_dialysis" form:"is_hospital_first_dialysis"`
  521. FirstDialysisDate int64 `gorm:"column:first_dialysis_date" json:"first_dialysis_date" form:"first_dialysis_date"`
  522. FirstDialysisHospital string `gorm:"column:first_dialysis_hospital" json:"first_dialysis_hospital" form:"first_dialysis_hospital"`
  523. InductionPeriod int64 `gorm:"column:induction_period" json:"induction_period" form:"induction_period"`
  524. InitialDialysis int64 `gorm:"column:initial_dialysis" json:"initial_dialysis" form:"initial_dialysis"`
  525. TotalDialysis int64 `gorm:"column:total_dialysis" json:"total_dialysis" form:"total_dialysis"`
  526. AttendingDoctorId int64 `gorm:"column:attending_doctor_id" json:"attending_doctor_id" form:"attending_doctor_id"`
  527. HeadNurseId int64 `gorm:"column:head_nurse_id" json:"head_nurse_id" form:"head_nurse_id"`
  528. Evaluate string `gorm:"column:evaluate" json:"evaluate" form:"evaluate"`
  529. Diagnose string `gorm:"column:diagnose" json:"diagnose" form:"diagnose"`
  530. Remark string `gorm:"column:remark" json:"remark" form:"remark"`
  531. RegistrarsId int64 `gorm:"column:registrars_id" json:"registrars_id" form:"registrars_id"`
  532. Registrars string `gorm:"column:registrars" json:"registrars" form:"registrars"`
  533. QrCode string `gorm:"column:qr_code" json:"qr_code" form:"qr_code"`
  534. BindingState int64 `gorm:"column:binding_state" json:"binding_state" form:"binding_state"`
  535. PatientComplains string `gorm:"column:patient_complains" json:"patient_complains"` // 主诉
  536. PresentHistory string `gorm:"column:present_history" json:"present_history"` // 现病史
  537. PastHistory string `gorm:"column:past_history" json:"past_history"` // 既往史
  538. Temperature float64 `gorm:"column:temperature" json:"temperature"` // 体格检查-体温
  539. Pulse int64 `gorm:"column:pulse" json:"pulse"` // 体格检查-脉搏
  540. Respiratory int64 `gorm:"column:respiratory" json:"respiratory"` // 体格检查-呼吸频率
  541. SBP int64 `gorm:"column:sbp" json:"sbp"` // 体格检查-收缩压
  542. DBP int64 `gorm:"column:dbp" json:"dbp"` // 体格检查-舒张压
  543. Status int64 `gorm:"column:status" json:"status" form:"status"`
  544. Age int64 `gorm:"column:age" json:"age"`
  545. IsOpenRemind int64 `gorm:"column:is_open_remind" json:"is_open_remind"`
  546. CreatedTime int64 `gorm:"column:created_time" json:"created_time" form:"created_time"`
  547. DialysisAge int64 `gorm:"column:dialysis_age" json:"dialysis_age" form:"dialysis_age"`
  548. ExpenseKind int64 `gorm:"column:expense_kind" json:"expense_kind" form:"expense_kind"`
  549. TellPhone string `gorm:"column:tell_phone" json:"tell_phone" form:"tell_phone"`
  550. FirstTreatmentDate int64 `gorm:"column:first_treatment_date" json:"first_treatment_date" form:"first_treatment_date"`
  551. ContactName string `gorm:"column:contact_name" json:"contact_name" form:"contact_name"`
  552. UserSysBeforeCount int64 `gorm:"column:user_sys_before_count" json:"user_sys_before_count" form:"user_sys_before_count"`
  553. }
  554. func (MPatient) TableName() string {
  555. return "xt_patients"
  556. }
  557. // 接诊评估
  558. func MobileGetReceiverTreatmentAccessRecord(orgID int64, patientID int64, recordDate int64) (*models.ReceiveTreatmentAsses, error) {
  559. var record models.ReceiveTreatmentAsses
  560. redis := RedisClient()
  561. defer redis.Close()
  562. key := strconv.FormatInt(orgID, 10) + ":" + strconv.FormatInt(patientID, 10) + ":" + strconv.FormatInt(recordDate, 10) + ":receive_treatment_asses"
  563. receive_treatment_asses_str, _ := redis.Get(key).Result()
  564. if len(receive_treatment_asses_str) == 0 { //没有到缓存数据,从数据库中获取数据,进行缓存到redis
  565. err = readDb.Model(&models.ReceiveTreatmentAsses{}).Where("patient_id = ? and user_org_id = ? and status = 1 and record_date = ?", patientID, orgID, recordDate).First(&record).Error
  566. if err != nil {
  567. if err == gorm.ErrRecordNotFound {
  568. if record.ID <= 0 {
  569. redis.Set(key, "", time.Second*60*60*18)
  570. }
  571. return nil, nil
  572. } else {
  573. return nil, err
  574. }
  575. } else {
  576. if record.ID > 0 {
  577. //缓存数据
  578. receive_treatment_asses_str, err := json.Marshal(record)
  579. if err == nil {
  580. redis.Set(key, receive_treatment_asses_str, time.Second*60*60*18)
  581. }
  582. } else {
  583. redis.Set(key, "null", time.Second*60*60*18)
  584. }
  585. return &record, nil
  586. }
  587. } else { //缓存数据了数据,将redis缓存的json字符串转为map
  588. if receive_treatment_asses_str == "null" {
  589. return &record, nil
  590. }
  591. json.Unmarshal([]byte(receive_treatment_asses_str), &record)
  592. return &record, nil
  593. }
  594. }
  595. // 透前评估
  596. func MobileGetPredialysisEvaluationOne(orgID int64, patientID int64, recordDate int64) (*models.PredialysisEvaluation, error) {
  597. var record models.PredialysisEvaluation
  598. err := readDb.Model(&models.PredialysisEvaluation{}).Where("patient_id = ? and user_org_id = ? and status = 1 and assessment_date = ?", patientID, orgID, recordDate).First(&record).Error
  599. if err != nil {
  600. if err == gorm.ErrRecordNotFound {
  601. return nil, nil
  602. } else {
  603. return nil, err
  604. }
  605. }
  606. return &record, nil
  607. }
  608. func MobileGetPredialysisEvaluationTwo(orgID int64, patientID int64, recordDate int64) (models.PredialysisEvaluation, error) {
  609. var record models.PredialysisEvaluation
  610. err := readDb.Model(&models.PredialysisEvaluation{}).Where("patient_id = ? and user_org_id = ? and status = 1 and assessment_date = ?", patientID, orgID, recordDate).First(&record).Error
  611. return record, err
  612. }
  613. // 透前评估
  614. func MobileGetPredialysisEvaluation(orgID int64, patientID int64, recordDate int64) (*models.PredialysisEvaluation, error) {
  615. var record models.PredialysisEvaluation
  616. redis := RedisClient()
  617. defer redis.Close()
  618. key := strconv.FormatInt(orgID, 10) + ":" + strconv.FormatInt(patientID, 10) + ":" + strconv.FormatInt(recordDate, 10) + ":assessment_before_dislysis"
  619. assessment_before_dislysis_str, _ := redis.Get(key).Result()
  620. redis.Set(key, "", time.Second)
  621. if len(assessment_before_dislysis_str) == 0 { //没有到缓存数据,从数据库中获取数据,进行缓存到redis
  622. err := readDb.Model(&models.PredialysisEvaluation{}).Where("patient_id = ? and user_org_id = ? and status = 1 and assessment_date = ?", patientID, orgID, recordDate).First(&record).Error
  623. if err != nil {
  624. if err == gorm.ErrRecordNotFound {
  625. if record.ID <= 0 {
  626. redis.Set(key, "", time.Second*60*60*18)
  627. }
  628. return nil, nil
  629. } else {
  630. return nil, err
  631. }
  632. } else {
  633. if record.ID > 0 {
  634. //缓存数据
  635. assessment_before_dislysis_str, err := json.Marshal(record)
  636. if err == nil {
  637. redis.Set(key, assessment_before_dislysis_str, time.Second*60*60*18)
  638. }
  639. } else {
  640. redis.Set(key, "null", time.Second*60*60*18)
  641. }
  642. return &record, nil
  643. }
  644. } else { //缓存数据了数据,将redis缓存的json字符串转为map
  645. if assessment_before_dislysis_str == "null" {
  646. return &record, nil
  647. } else {
  648. json.Unmarshal([]byte(assessment_before_dislysis_str), &record)
  649. return &record, nil
  650. }
  651. }
  652. }
  653. // 获取 maxDate 之前一次的透前评估记录
  654. func MobileGetLastTimePredialysisEvaluationOne(orgID int64, patientID int64, maxDate int64) (*models.PredialysisEvaluation, error) {
  655. var record models.PredialysisEvaluation
  656. err := readDb.Model(&models.PredialysisEvaluation{}).Where("patient_id = ? and user_org_id = ? and status = 1 and assessment_date < ?", patientID, orgID, maxDate).Order("assessment_date desc").First(&record).Error
  657. if err != nil {
  658. if err == gorm.ErrRecordNotFound {
  659. return nil, nil
  660. } else {
  661. return nil, err
  662. }
  663. }
  664. return &record, nil
  665. }
  666. // 获取 maxDate 之前一次的透前评估记录
  667. func MobileGetLastTimePredialysisEvaluation(orgID int64, patientID int64, maxDate int64) (*models.PredialysisEvaluation, error) {
  668. var record models.PredialysisEvaluation
  669. redis := RedisClient()
  670. defer redis.Close()
  671. // cur_date := time.Now().Format("2006-01-02")
  672. key := strconv.FormatInt(orgID, 10) + ":" + strconv.FormatInt(patientID, 10) + ":" + strconv.FormatInt(maxDate, 10) + ":assessment_before_dislysis_last"
  673. assessment_before_dislysis_last_str, _ := redis.Get(key).Result()
  674. if len(assessment_before_dislysis_last_str) == 0 { //没有到缓存数据,从数据库中获取数据,进行缓存到redis
  675. err := readDb.Model(&models.PredialysisEvaluation{}).Where("patient_id = ? and user_org_id = ? and status = 1 and assessment_date < ?", patientID, orgID, maxDate).Order("assessment_date desc").First(&record).Error
  676. if err != nil {
  677. if err == gorm.ErrRecordNotFound {
  678. if record.ID <= 0 {
  679. redis.Set(key, "", time.Second*60*60*18)
  680. }
  681. return nil, nil
  682. } else {
  683. return nil, err
  684. }
  685. } else {
  686. if record.ID > 0 {
  687. //缓存数据
  688. assessment_before_dislysis_last_str, err := json.Marshal(record)
  689. if err == nil {
  690. redis.Set(key, assessment_before_dislysis_last_str, time.Second*60*60*4)
  691. }
  692. } else {
  693. redis.Set(key, "null", time.Second*60*60*18)
  694. }
  695. return &record, nil
  696. }
  697. } else { //缓存数据了数据,将redis缓存的json字符串转为map
  698. if assessment_before_dislysis_last_str == "null" {
  699. return &record, nil
  700. } else {
  701. json.Unmarshal([]byte(assessment_before_dislysis_last_str), &record)
  702. return &record, nil
  703. }
  704. }
  705. }
  706. // 临时医嘱
  707. func MobileGetDoctorAdvices(orgID int64, patientID int64, recordDate int64) ([]*models.DoctorAdvice, error) {
  708. var records []*models.DoctorAdvice
  709. // err := readDb.Model(&models.DoctorAdvice{}).Where("patient_id = ? and user_org_id = ? and status = 1 and record_date = ?", patientID, orgID, recordDate).Find(&records).Error
  710. err := readDb.
  711. Model(&models.DoctorAdvice{}).
  712. Where("patient_id = ? and user_org_id = ? and status = 1 and record_date = ? and (advice_type = 2 or advice_type = 3)", patientID, orgID, recordDate).
  713. Select("id,user_org_id,patient_id,advice_type,advice_date,record_date,start_time,advice_name,advice_desc,reminder_date, drug_spec, drug_spec_unit,single_dose,single_dose_unit,prescribing_number,prescribing_number_unit,delivery_way,execution_frequency,advice_doctor,status,created_time,updated_time,advice_affirm,remark,stop_time,stop_reason,stop_doctor,stop_state,parent_id,execution_time,execution_staff,execution_state,checker, check_state, check_time,way,drug_id,drug_name_id,IF(parent_id>0, parent_id, id) as advice_order,groupno,is_medicine").
  714. Order("start_time asc, groupno desc, advice_order desc, id").
  715. Scan(&records).Error
  716. if err != nil {
  717. return nil, err
  718. }
  719. return records, nil
  720. }
  721. func MobileGetDoctorAdvicesByGroups(orgID int64, patientID int64, recordDate int64) ([]*models.DoctorAdvice, error) {
  722. var records []*models.DoctorAdvice
  723. redis := RedisClient()
  724. defer redis.Close()
  725. // cur_date := time.Now().Format("2006-01-02")
  726. key := strconv.FormatInt(orgID, 10) + ":" + strconv.FormatInt(patientID, 10) + ":" + strconv.FormatInt(recordDate, 10) + ":doctor_advices"
  727. //fmt.Println("key23233232323323wi", key)
  728. redis.Set(key, "", time.Second)
  729. doctor_advices_str, _ := redis.Get(key).Result()
  730. if len(doctor_advices_str) == 0 { //没有到缓存数据,从数据库中获取数据,进行缓存到redis
  731. err := readDb.Model(&models.DoctorAdvice{}).
  732. Where("patient_id = ? and user_org_id = ? and status = 1 and record_date = ? and (advice_type = 2 || advice_type = 3)", patientID, orgID, recordDate).
  733. Select("id, user_org_id, patient_id, advice_type, advice_date, record_date, start_time, advice_name,advice_desc, reminder_date, drug_spec, drug_spec_unit, single_dose, single_dose_unit, prescribing_number, prescribing_number_unit, delivery_way, execution_frequency, advice_doctor, status, created_time,updated_time, advice_affirm, remark, stop_time, stop_reason, stop_doctor, stop_state, parent_id, execution_time, execution_staff, execution_state, checker, check_state, check_time, groupno,way,drug_id,is_medicine,drug_name_id, IF(parent_id > 0, parent_id, id) as advice_order").
  734. Order("start_time asc, groupno desc, advice_order desc, id asc").
  735. Scan(&records).Error
  736. if err != nil {
  737. if err == gorm.ErrRecordNotFound {
  738. if len(records) <= 0 {
  739. redis.Set(key, "", time.Second*60*60*18)
  740. }
  741. return nil, nil
  742. } else {
  743. return nil, err
  744. }
  745. } else {
  746. if len(records) > 0 {
  747. //缓存数据
  748. doctor_advices_str, err := json.Marshal(records)
  749. if err == nil {
  750. redis.Set(key, doctor_advices_str, time.Second*60*60*18)
  751. return records, nil
  752. }
  753. } else {
  754. redis.Set(key, "null", time.Second*60*60*18)
  755. return records, nil
  756. }
  757. return records, nil
  758. }
  759. } else { //缓存数据了数据,将redis缓存的json字符串转为map
  760. if doctor_advices_str == "null" {
  761. return records, nil
  762. } else {
  763. json.Unmarshal([]byte(doctor_advices_str), &records)
  764. return records, nil
  765. }
  766. }
  767. }
  768. // 透析记录
  769. func MobileGetSchedualDialysisRecordTen(orgID int64, patientID int64, recordDate int64) (*models.DialysisOrder, error) {
  770. var record models.DialysisOrder
  771. err := readDb.Model(&models.DialysisOrder{}).Preload("DeviceNumber", "org_id = ?", orgID).Where("user_org_id = ? AND patient_id = ? AND dialysis_date = ?", orgID, patientID, recordDate).First(&record).Error
  772. if err != nil {
  773. if err == gorm.ErrRecordNotFound {
  774. return nil, nil
  775. } else {
  776. return nil, err
  777. }
  778. }
  779. return &record, nil
  780. }
  781. //func MobileGetSchedualDialysisRecord(orgID int64, patientID int64, recordDate int64) (*models.DialysisOrder, error) {
  782. // var record models.DialysisOrder
  783. //
  784. // err := readDb.Model(&models.DialysisOrder{}).Preload("DeviceNumber", "org_id = ? AND status = 1", orgID).Where("user_org_id = ? AND patient_id = ? AND dialysis_date = ?", orgID, patientID, recordDate).First(&record).Error
  785. //
  786. //
  787. // return &record,err
  788. //}
  789. // 透析记录
  790. func MobileGetSchedualDialysisRecord(orgID int64, patientID int64, recordDate int64) (*models.DialysisOrder, error) {
  791. var record models.DialysisOrder
  792. redis := RedisClient()
  793. defer redis.Close()
  794. key := strconv.FormatInt(orgID, 10) + ":" + strconv.FormatInt(patientID, 10) + ":" + strconv.FormatInt(recordDate, 10) + ":dialysis_order"
  795. dialysis_order_str, _ := redis.Get(key).Result()
  796. if len(dialysis_order_str) == 0 { //没有到缓存数据,从数据库中获取数据,进行缓存到redis
  797. err := readDb.Model(&models.DialysisOrder{}).Preload("DeviceNumber", "org_id = ? AND status = 1", orgID).Where("user_org_id = ? AND patient_id = ? AND dialysis_date = ?", orgID, patientID, recordDate).First(&record).Error
  798. if err != nil {
  799. if err == gorm.ErrRecordNotFound {
  800. return nil, nil
  801. } else {
  802. return nil, err
  803. }
  804. } else {
  805. if record.ID > 0 {
  806. //缓存数据
  807. dialysis_order_str, err := json.Marshal(record)
  808. if err == nil {
  809. redis.Set(key, dialysis_order_str, time.Second*60*60*18)
  810. }
  811. } else {
  812. redis.Set(key, "null", time.Second*60*60*18)
  813. }
  814. return &record, nil
  815. }
  816. } else { //缓存数据了数据,将redis缓存的json字符串转为map
  817. if dialysis_order_str == "null" {
  818. err = readDb.Model(&models.DialysisOrder{}).Preload("DeviceNumber", "org_id = ? AND status = 1", orgID).Where("user_org_id = ? AND patient_id = ? AND dialysis_date = ?", orgID, patientID, recordDate).First(&record).Error
  819. return &record, nil
  820. } else {
  821. json.Unmarshal([]byte(dialysis_order_str), &record)
  822. return &record, nil
  823. }
  824. }
  825. }
  826. // 双人核对
  827. func MobileGetDoubleCheck(orgID int64, patientID int64, recordDate int64) (*models.DoubleCheck, error) {
  828. var record models.DoubleCheck
  829. redis := RedisClient()
  830. defer redis.Close()
  831. // cur_date := time.Now().Format("2006-01-02")
  832. key := strconv.FormatInt(orgID, 10) + ":" + strconv.FormatInt(patientID, 10) + ":" + strconv.FormatInt(recordDate, 10) + ":double_check"
  833. double_check_str, _ := redis.Get(key).Result()
  834. if len(double_check_str) == 0 { //没有到缓存数据,从数据库中获取数据,进行缓存到redis
  835. err := readDb.Model(&models.DoubleCheck{}).Where("patient_id = ? and user_org_id = ? and status = 1 and check_date = ?", patientID, orgID, recordDate).First(&record).Error
  836. if err != nil {
  837. if err == gorm.ErrRecordNotFound {
  838. if record.ID <= 0 {
  839. redis.Set(key, "null", time.Second*60*60*18)
  840. }
  841. return nil, nil
  842. } else {
  843. return nil, err
  844. }
  845. } else {
  846. if record.ID > 0 {
  847. //缓存数据
  848. double_check_str, err := json.Marshal(record)
  849. if err == nil {
  850. redis.Set(key, double_check_str, time.Second*60*60*18)
  851. }
  852. } else {
  853. redis.Set(key, "null", time.Second*60*60*18)
  854. }
  855. return &record, nil
  856. }
  857. } else { //缓存数据了数据,将redis缓存的json字符串转为map
  858. if double_check_str == "null" {
  859. return &record, nil
  860. } else {
  861. json.Unmarshal([]byte(double_check_str), &record)
  862. return &record, nil
  863. }
  864. }
  865. }
  866. // 透析监测记录
  867. func MobileGetMonitorRecords(orgID int64, patientID int64, recordDate int64) ([]*models.MonitoringRecord, error) {
  868. var records []*models.MonitoringRecord
  869. redis := RedisClient()
  870. defer redis.Close()
  871. // cur_date := time.Now().Format("2006-01-02")
  872. key := strconv.FormatInt(orgID, 10) + ":" + strconv.FormatInt(patientID, 10) + ":" + strconv.FormatInt(recordDate, 10) + ":monitor_records"
  873. redis.Set(key, "", time.Second)
  874. monitor_records_str, _ := redis.Get(key).Result()
  875. if len(monitor_records_str) == 0 { //没有到缓存数据,从数据库中获取数据,进行缓存到redis
  876. err := readDb.Model(&models.MonitoringRecord{}).Where("patient_id = ? and user_org_id = ? and status = 1 and monitoring_date = ?", patientID, orgID, recordDate).Order("operate_time asc").Find(&records).Error
  877. if err != nil {
  878. if err == gorm.ErrRecordNotFound {
  879. //if len(records) <= 0 {
  880. // redis.Set(key, "null", time.Second*60*60*18)
  881. //}
  882. return nil, nil
  883. } else {
  884. return nil, err
  885. }
  886. } else {
  887. if len(records) > 0 {
  888. //缓存数据
  889. monitor_records_str, err := json.Marshal(records)
  890. if err == nil {
  891. redis.Set(key, monitor_records_str, time.Second*60*60*18)
  892. }
  893. } else {
  894. redis.Set(key, "null", time.Second*60*60*18)
  895. }
  896. return records, nil
  897. }
  898. } else { //缓存数据了数据,将redis缓存的json字符串转为map
  899. if monitor_records_str == "null" {
  900. return records, nil
  901. } else {
  902. json.Unmarshal([]byte(monitor_records_str), &records)
  903. return records, nil
  904. }
  905. }
  906. }
  907. func MobileGetMonitorRecordFirst(orgID int64, patientID int64, recordDate int64) (*models.MonitoringRecord, error) {
  908. var records models.MonitoringRecord
  909. err := readDb.Model(&models.MonitoringRecord{}).Where("patient_id = ? and user_org_id = ? and status = 1 and monitoring_date = ?", patientID, orgID, recordDate).Order("operate_time asc").First(&records).Error
  910. if err != nil {
  911. return nil, err
  912. }
  913. return &records, nil
  914. }
  915. func MobileGetLastMonitorRecordOne(orgID int64, patientID int64, beforeDate int64) (*models.MonitoringRecord, error) {
  916. var record models.MonitoringRecord
  917. err := readDb.Model(&models.MonitoringRecord{}).Where("patient_id = ? and user_org_id = ? and status = 1 and monitoring_date = ?", patientID, orgID, beforeDate).Order("operate_time desc").First(&record).Error
  918. if err != nil {
  919. if err == gorm.ErrRecordNotFound {
  920. return nil, nil
  921. } else {
  922. return nil, err
  923. }
  924. }
  925. return &record, nil
  926. }
  927. func MobileGetLastMonitorRecord(orgID int64, patientID int64, beforeDate int64) (*models.MonitoringRecord, error) {
  928. var record models.MonitoringRecord
  929. redis := RedisClient()
  930. defer redis.Close()
  931. // cur_date := time.Now().Format("2006-01-02")
  932. key := strconv.FormatInt(orgID, 10) + ":" + strconv.FormatInt(patientID, 10) + ":" + strconv.FormatInt(beforeDate, 10) + ":monitor_record_last"
  933. monitor_record_last_str, _ := redis.Get(key).Result()
  934. if len(monitor_record_last_str) == 0 { //没有到缓存数据,从数据库中获取数据,进行缓存到redis
  935. err := readDb.Model(&models.MonitoringRecord{}).Where("patient_id = ? and user_org_id = ? and status = 1 and monitoring_date = ?", patientID, orgID, beforeDate).Order("operate_time desc").First(&record).Error
  936. if err != nil {
  937. if err == gorm.ErrRecordNotFound {
  938. if record.ID <= 0 {
  939. redis.Set(key, "null", time.Second*60*60*18)
  940. }
  941. return nil, nil
  942. } else {
  943. return nil, err
  944. }
  945. } else {
  946. if record.ID > 0 {
  947. //缓存数据
  948. monitor_record_last_str, err := json.Marshal(record)
  949. if err == nil {
  950. redis.Set(key, monitor_record_last_str, time.Second*60*60*18)
  951. }
  952. } else {
  953. redis.Set(key, "null", time.Second*60*60*18)
  954. }
  955. return &record, nil
  956. }
  957. } else { //缓存数据了数据,将redis缓存的json字符串转为map
  958. if monitor_record_last_str == "null" {
  959. return &record, nil
  960. } else {
  961. json.Unmarshal([]byte(monitor_record_last_str), &record)
  962. return &record, nil
  963. }
  964. }
  965. }
  966. func MobileGetAssessmentAfterDislysisOne(orgID int64, patientID int64, recordDate int64) (*models.AssessmentAfterDislysis, error) {
  967. var record models.AssessmentAfterDislysis
  968. err := readDb.Model(&models.AssessmentAfterDislysis{}).Where("patient_id = ? and user_org_id = ? and status = 1 and assessment_date = ?", patientID, orgID, recordDate).First(&record).Error
  969. if err != nil {
  970. if err == gorm.ErrRecordNotFound {
  971. return nil, nil
  972. } else {
  973. return nil, err
  974. }
  975. }
  976. return &record, nil
  977. }
  978. // 透后评估
  979. func MobileGetAssessmentAfterDislysis(orgID int64, patientID int64, recordDate int64) (*models.AssessmentAfterDislysis, error) {
  980. var record models.AssessmentAfterDislysis
  981. redis := RedisClient()
  982. defer redis.Close()
  983. key := strconv.FormatInt(orgID, 10) + ":" + strconv.FormatInt(patientID, 10) + ":" + strconv.FormatInt(recordDate, 10) + ":assessment_after_dislysis"
  984. redis.Set(key, "", time.Second)
  985. assessment_after_dislysis_str, _ := redis.Get(key).Result()
  986. if len(assessment_after_dislysis_str) == 0 { //没有到缓存数据,从数据库中获取数据,进行缓存到redis
  987. err := readDb.Model(&models.AssessmentAfterDislysis{}).Where("patient_id = ? and user_org_id = ? and status = 1 and assessment_date = ?", patientID, orgID, recordDate).First(&record).Error
  988. if err != nil {
  989. if err == gorm.ErrRecordNotFound {
  990. if record.ID <= 0 {
  991. redis.Set(key, "null", time.Second*60*60*18)
  992. }
  993. return nil, nil
  994. } else {
  995. return nil, err
  996. }
  997. } else {
  998. if record.ID > 0 {
  999. //缓存数据
  1000. assessment_after_dislysis_str, err := json.Marshal(record)
  1001. if err == nil {
  1002. redis.Set(key, assessment_after_dislysis_str, time.Second*60*60*18)
  1003. }
  1004. } else {
  1005. redis.Set(key, "null", time.Second*60*60*18)
  1006. }
  1007. return &record, nil
  1008. }
  1009. } else { //缓存数据了数据,将redis缓存的json字符串转为map
  1010. if assessment_after_dislysis_str == "null" {
  1011. return &record, nil
  1012. } else {
  1013. json.Unmarshal([]byte(assessment_after_dislysis_str), &record)
  1014. return &record, nil
  1015. }
  1016. }
  1017. }
  1018. // 获取 maxDate 之前一次的透后评估记录
  1019. func MobileGetLastTimeAssessmentAfterDislysis(orgID int64, patientID int64, maxDate int64) (*models.AssessmentAfterDislysis, error) {
  1020. var record models.AssessmentAfterDislysis
  1021. redis := RedisClient()
  1022. defer redis.Close()
  1023. // cur_date := time.Now().Format("2006-01-02")
  1024. key := strconv.FormatInt(orgID, 10) + ":" + strconv.FormatInt(patientID, 10) + ":" + strconv.FormatInt(maxDate, 10) + ":assessment_after_dislysis_last"
  1025. assessment_after_dislysis_last_str, _ := redis.Get(key).Result()
  1026. if len(assessment_after_dislysis_last_str) == 0 { //没有到缓存数据,从数据库中获取数据,进行缓存到redis
  1027. err := readDb.Model(&models.AssessmentAfterDislysis{}).Where("patient_id = ? and user_org_id = ? and status = 1 and assessment_date < ?", patientID, orgID, maxDate).Order("assessment_date desc").First(&record).Error
  1028. if err != nil {
  1029. if err == gorm.ErrRecordNotFound {
  1030. if record.ID <= 0 {
  1031. redis.Set(key, "null", time.Second*60*60*18)
  1032. }
  1033. return nil, nil
  1034. } else {
  1035. return nil, err
  1036. }
  1037. } else {
  1038. if record.ID > 0 {
  1039. //缓存数据
  1040. assessment_after_dislysis_last_str, err := json.Marshal(record)
  1041. if err == nil {
  1042. redis.Set(key, assessment_after_dislysis_last_str, time.Second*60*60*18)
  1043. }
  1044. } else {
  1045. redis.Set(key, "null", time.Second*60*60*18)
  1046. }
  1047. return &record, nil
  1048. }
  1049. } else { //缓存数据了数据,将redis缓存的json字符串转为map
  1050. if assessment_after_dislysis_last_str == "null" {
  1051. return &record, nil
  1052. } else {
  1053. json.Unmarshal([]byte(assessment_after_dislysis_last_str), &record)
  1054. return &record, nil
  1055. }
  1056. }
  1057. }
  1058. func MobileGetLastTimeAssessmentAfterDislysisOne(orgID int64, patientID int64, maxDate int64) (*models.AssessmentAfterDislysis, error) {
  1059. var record models.AssessmentAfterDislysis
  1060. err := readDb.Model(&models.AssessmentAfterDislysis{}).Where("patient_id = ? and user_org_id = ? and status = 1 and assessment_date < ?", patientID, orgID, maxDate).Order("assessment_date desc").First(&record).Error
  1061. if err != nil {
  1062. if err == gorm.ErrRecordNotFound {
  1063. return nil, nil
  1064. } else {
  1065. return nil, err
  1066. }
  1067. }
  1068. return &record, nil
  1069. }
  1070. func MobileGetLast(orgID int64, patientID int64, maxDate int64) (models.AssessmentAfterDislysis, error) {
  1071. dislysis := models.AssessmentAfterDislysis{}
  1072. err := readDb.Model(&models.AssessmentAfterDislysis{}).Where("patient_id = ? and user_org_id = ? and status = 1 and assessment_date < ?", patientID, orgID, maxDate).Order("assessment_date desc").First(&dislysis).Error
  1073. return dislysis, err
  1074. }
  1075. // 治疗小结
  1076. func MobileGetTreatmentSummary(orgID int64, patientID int64, recordDate int64) (*models.TreatmentSummary, error) {
  1077. var record models.TreatmentSummary
  1078. redis := RedisClient()
  1079. defer redis.Close()
  1080. // cur_date := time.Now().Format("2006-01-02")
  1081. key := strconv.FormatInt(orgID, 10) + ":" + strconv.FormatInt(patientID, 10) + ":" + strconv.FormatInt(recordDate, 10) + ":treatment_summary"
  1082. treatment_summary_str, _ := redis.Get(key).Result()
  1083. if len(treatment_summary_str) == 0 { //没有到缓存数据,从数据库中获取数据,进行缓存到redis
  1084. err := readDb.Model(&models.TreatmentSummary{}).Where("patient_id = ? and user_org_id = ? and status = 1 and assessment_date = ?", patientID, orgID, recordDate).First(&record).Error
  1085. if err != nil {
  1086. if err == gorm.ErrRecordNotFound {
  1087. if record.ID <= 0 {
  1088. redis.Set(key, "null", time.Second*60*60*18)
  1089. }
  1090. return nil, nil
  1091. } else {
  1092. return nil, err
  1093. }
  1094. } else {
  1095. if record.ID > 0 {
  1096. //缓存数据
  1097. treatment_summary_str, err := json.Marshal(record)
  1098. if err == nil {
  1099. redis.Set(key, treatment_summary_str, time.Second*60*60*18)
  1100. }
  1101. } else {
  1102. redis.Set(key, "null", time.Second*60*60*18)
  1103. }
  1104. return &record, nil
  1105. }
  1106. } else { //缓存数据了数据,将redis缓存的json字符串转为map
  1107. if treatment_summary_str == "null" {
  1108. return &record, nil
  1109. } else {
  1110. json.Unmarshal([]byte(treatment_summary_str), &record)
  1111. return &record, nil
  1112. }
  1113. }
  1114. }
  1115. // 透析处方
  1116. func MobileGetDialysisPrescribe(orgID int64, patientID int64, recordDate int64) (*models.DialysisPrescription, error) {
  1117. var record models.DialysisPrescription
  1118. err := readDb.Model(&models.DialysisPrescription{}).Where("patient_id = ? and user_org_id = ? and status = 1 and record_date = ?", patientID, orgID, recordDate).Find(&record).Error
  1119. if err != nil {
  1120. if err == gorm.ErrRecordNotFound {
  1121. return nil, nil
  1122. } else {
  1123. return nil, err
  1124. }
  1125. }
  1126. return &record, nil
  1127. }
  1128. func MobileGetDialysisSchedual(orgID int64, patientID int64, scheduleDate int64) (*models.XtSchedule, error) {
  1129. var schedule models.XtSchedule
  1130. err := readDb.Model(&models.XtSchedule{}).Where("patient_id = ? and user_org_id = ? and status = 1 and schedule_date = ?", patientID, orgID, scheduleDate).First(&schedule).Error
  1131. if err != nil {
  1132. if err == gorm.ErrRecordNotFound {
  1133. return nil, nil
  1134. } else {
  1135. return nil, err
  1136. }
  1137. }
  1138. return &schedule, nil
  1139. }
  1140. // 透析方案
  1141. func MobileGetDialysisSolution(orgID int64, patientID int64) (*models.DialysisSolution, error) {
  1142. var record models.DialysisSolution
  1143. err := readDb.Model(&models.DialysisSolution{}).Where("patient_id = ? and user_org_id = ? and status = 1", patientID, orgID).Last(&record).Error
  1144. if err != nil {
  1145. if err == gorm.ErrRecordNotFound {
  1146. return nil, nil
  1147. } else {
  1148. return nil, err
  1149. }
  1150. }
  1151. return &record, nil
  1152. }
  1153. func MobileGetPatientById(orgID int64, patientID int64) (*models.Patients, error) {
  1154. var patient models.Patients
  1155. err := readDb.Model(&models.Patients{}).Where("id = ? and user_org_id = ? and status = 1", patientID, orgID).First(&patient).Error
  1156. if err != nil {
  1157. if err == gorm.ErrRecordNotFound {
  1158. return nil, nil
  1159. } else {
  1160. return nil, err
  1161. }
  1162. }
  1163. return &patient, nil
  1164. }
  1165. func DisableMonitor(orgID int64, patientID int64, recordID int64, admin_user_id int64) error {
  1166. fmt.Println()
  1167. tx := writeDb.Begin()
  1168. updateTime := time.Now().Unix()
  1169. err := tx.Model(&models.MonitoringRecord{}).Where("user_org_id = ? AND patient_id = ? AND id = ? AND status = 1 ", orgID, patientID, recordID).Updates(map[string]interface{}{"status": 0, "updated_time": updateTime, "modify": admin_user_id}).Error
  1170. if err != nil {
  1171. tx.Rollback()
  1172. return err
  1173. }
  1174. tx.Commit()
  1175. return nil
  1176. }
  1177. func GetMonitor(orgID int64, patientID int64, id int64) (*models.MonitoringRecord, error) {
  1178. var monitor models.MonitoringRecord
  1179. var err error
  1180. err = readDb.Model(&models.MonitoringRecord{}).Where("id = ? AND user_org_id = ? AND patient_id = ? AND status = 1 ", id, orgID, patientID).Find(&monitor).Error
  1181. if err == gorm.ErrRecordNotFound {
  1182. return nil, nil
  1183. }
  1184. if err != nil {
  1185. return nil, err
  1186. }
  1187. return &monitor, nil
  1188. }
  1189. type MScheduleDoctorAdviceVM struct {
  1190. ID int64 `gorm:"column:id" json:"id"`
  1191. UserOrgId int64 `gorm:"column:user_org_id" json:"user_org_id"`
  1192. PartitionId int64 `gorm:"column:partition_id" json:"partition_id"`
  1193. BedId int64 `gorm:"column:bed_id" json:"bed_id"`
  1194. PatientId int64 `gorm:"column:patient_id" json:"patient_id"`
  1195. ScheduleDate int64 `gorm:"column:schedule_date" json:"schedule_date"`
  1196. ScheduleType int64 `gorm:"column:schedule_type" json:"schedule_type"`
  1197. ModeId int64 `gorm:"column:mode_id" json:"mode_id"`
  1198. Status int64 `gorm:"column:status" json:"status"`
  1199. DialysisOrder *MDialysisOrderVM `gorm:"ForeignKey:PatientId;AssociationForeignKey:PatientId" json:"dialysis_order"`
  1200. SchedualPatient *MSchedualPatientVM `gorm:"ForeignKey:PatientId;AssociationForeignKey:ID" json:"patient"`
  1201. DeviceNumber *MDeviceNumberVM `gorm:"ForeignKey:BedId" json:"device_number"`
  1202. DoctorAdvices []*MDoctorAdviceVM `gorm:"ForeignKey:PatientId;AssociationForeignKey:PatientId" json:"doctor_advice"`
  1203. Prescription *models.DialysisPrescriptionTwenty `gorm:"ForeignKey:PatientId;AssociationForeignKey:PatientId" json:"prescription"`
  1204. DialysisAssesmentBefor *models.DialysisAssesmentBefor `gorm:"ForeignKey:PatientId;AssociationForeignKey:PatientId" json:"dialysisassesmentbefor"`
  1205. }
  1206. func (MScheduleDoctorAdviceVM) TableName() string {
  1207. return "xt_schedule"
  1208. }
  1209. type MScheduleDoctorAdviceVMOne struct {
  1210. ID int64 `gorm:"column:id" json:"id"`
  1211. UserOrgId int64 `gorm:"column:user_org_id" json:"user_org_id"`
  1212. PartitionId int64 `gorm:"column:partition_id" json:"partition_id"`
  1213. BedId int64 `gorm:"column:bed_id" json:"bed_id"`
  1214. PatientId int64 `gorm:"column:patient_id" json:"patient_id"`
  1215. ScheduleDate int64 `gorm:"column:schedule_date" json:"schedule_date"`
  1216. ScheduleType int64 `gorm:"column:schedule_type" json:"schedule_type"`
  1217. ModeId int64 `gorm:"column:mode_id" json:"mode_id"`
  1218. Status int64 `gorm:"column:status" json:"status"`
  1219. DialysisOrder *MDialysisOrderVM `gorm:"ForeignKey:PatientId;AssociationForeignKey:PatientId" json:"dialysis_order"`
  1220. SchedualPatient *MSchedualPatientVM `gorm:"ForeignKey:PatientId;AssociationForeignKey:ID" json:"patient"`
  1221. DeviceNumber *MDeviceNumberVM `gorm:"ForeignKey:BedId" json:"device_number"`
  1222. DoctorAdvices []*MDoctorAdviceVM `gorm:"ForeignKey:PatientId;AssociationForeignKey:PatientId" json:"doctor_advice"`
  1223. Prescription *models.DialysisPrescriptionTwenty `gorm:"ForeignKey:PatientId;AssociationForeignKey:PatientId" json:"prescription"`
  1224. DialysisAssesmentBefor *models.DialysisAssesmentBefor `gorm:"ForeignKey:PatientId;AssociationForeignKey:PatientId" json:"dialysisassesmentbefor"`
  1225. }
  1226. func (MScheduleDoctorAdviceVMOne) TableName() string {
  1227. return "xt_schedule"
  1228. }
  1229. type MDoctorAdviceVM struct {
  1230. ID int64 `gorm:"column:id" json:"id"`
  1231. UserOrgId int64 `gorm:"column:user_org_id" json:"user_org_id"`
  1232. PatientId int64 `gorm:"column:patient_id" json:"patient_id"`
  1233. AdviceType int64 `gorm:"column:advice_type" json:"advice_type"`
  1234. AdviceDate int64 `gorm:"column:advice_date" json:"advice_date"`
  1235. StartTime int64 `gorm:"column:start_time" json:"start_time"`
  1236. AdviceName string `gorm:"column:advice_name" json:"advice_name"`
  1237. AdviceDesc string `gorm:"column:advice_desc" json:"advice_desc"`
  1238. ReminderDate int64 `gorm:"column:reminder_date" json:"reminder_date"`
  1239. SingleDose float64 `gorm:"column:single_dose" json:"single_dose"`
  1240. SingleDoseUnit string `gorm:"column:single_dose_unit" json:"single_dose_unit"`
  1241. PrescribingNumber float64 `gorm:"column:prescribing_number" json:"prescribing_number"`
  1242. PrescribingNumberUnit string `gorm:"column:prescribing_number_unit" json:"prescribing_number_unit"`
  1243. DeliveryWay string `gorm:"column:delivery_way" json:"delivery_way"`
  1244. ExecutionFrequency string `gorm:"column:execution_frequency" json:"execution_frequency"`
  1245. AdviceDoctor int64 `gorm:"column:advice_doctor" json:"advice_doctor"`
  1246. Status int64 `gorm:"column:status" json:"status"`
  1247. CreatedTime int64 `gorm:"column:created_time" json:"created_time"`
  1248. UpdatedTime int64 `gorm:"column:updated_time" json:"updated_time"`
  1249. AdviceAffirm string `gorm:"column:advice_affirm" json:"advice_affirm"`
  1250. Remark string `gorm:"column:remark" json:"remark"`
  1251. StopTime int64 `gorm:"column:stop_time" json:"stop_time"`
  1252. StopReason string `gorm:"column:stop_reason" json:"stop_reason"`
  1253. StopDoctor int64 `gorm:"column:stop_doctor" json:"stop_doctor"`
  1254. StopState int64 `gorm:"column:stop_state" json:"stop_state"`
  1255. ParentId int64 `gorm:"column:parent_id" json:"parent_id"`
  1256. ExecutionTime int64 `gorm:"column:execution_time" json:"execution_time"`
  1257. ExecutionStaff int64 `gorm:"column:execution_staff" json:"execution_staff"`
  1258. ExecutionState int64 `gorm:"column:execution_state" json:"execution_state"`
  1259. Checker int64 `gorm:"column:checker" json:"checker"`
  1260. RecordDate int64 `gorm:"column:record_date" json:"record_date"`
  1261. DialysisOrderId int64 `gorm:"column:dialysis_order_id" json:"dialysis_order_id"`
  1262. CheckTime int64 `gorm:"column:check_time" json:"check_time"`
  1263. CheckState int64 `gorm:"column:check_state" json:"check_state"`
  1264. DrugSpec float64 `gorm:"column:drug_spec" json:"drug_spec"`
  1265. DrugSpecUnit string `gorm:"column:drug_spec_unit" json:"drug_spec_unit"`
  1266. Groupno int64 `gorm:"column:groupno" json:"groupno"`
  1267. RemindType int64 `gorm:"column:remind_type" json:"remind_type"`
  1268. FrequencyType int64 `gorm:"column:frequency_type" json:"frequency_type"`
  1269. DayCount int64 `gorm:"column:day_count" json:"day_count"`
  1270. WeekDay string `gorm:"column:week_day" json:"week_day"`
  1271. TemplateId string `gorm:"column:template_id" json:"template_id"`
  1272. Modifier int64 `gorm:"column:modifier" json:"modifier" form:"modifier"`
  1273. IsMedicine int64 `gorm:"column:is_medicine" json:"is_medicine" form:"is_medicine"`
  1274. IsSettle int64 `gorm:"column:is_settle" json:"is_settle" form:"is_settle"`
  1275. }
  1276. func (MDoctorAdviceVM) TableName() string {
  1277. return "xt_doctor_advice"
  1278. }
  1279. func MobileGetScheduleDoctorAdvices(orgID int64, scheduleDate int64, adviceType int, patientType int, adminUserId int64, deliverWay string) ([]*MScheduleDoctorAdviceVM, error) {
  1280. var vms []*MScheduleDoctorAdviceVM
  1281. adviceWhere := ""
  1282. adviceCondition := []interface{}{}
  1283. if adviceType == 0 {
  1284. if patientType == 0 {
  1285. adviceWhere = "status = 1 AND user_org_id = ? AND record_date = ? AND (advice_type = 3 OR advice_type = 1)"
  1286. adviceCondition = append(adviceCondition, adviceWhere, orgID, scheduleDate)
  1287. } else if patientType == 1 {
  1288. adviceWhere = "status = 1 AND user_org_id = ? AND record_date = ? AND advice_doctor = ? AND(advice_type = 3 OR advice_type = 1)"
  1289. adviceCondition = append(adviceCondition, adviceWhere, orgID, scheduleDate, adminUserId)
  1290. } else if patientType == 2 {
  1291. adviceWhere = "status = 1 AND user_org_id = ? AND record_date = ? AND execution_staff = 0 AND(advice_type = 3 OR advice_type = 1)"
  1292. adviceCondition = append(adviceCondition, adviceWhere, orgID, scheduleDate)
  1293. }
  1294. } else if adviceType == 1 {
  1295. if patientType == 0 {
  1296. adviceWhere = "status = 1 AND user_org_id = ? AND advice_type = 1 AND record_date = ? "
  1297. adviceCondition = append(adviceCondition, adviceWhere, orgID, scheduleDate)
  1298. } else if patientType == 1 {
  1299. adviceWhere = "status = 1 AND user_org_id = ? AND advice_type = 1 AND record_date = ? AND advice_doctor = ? "
  1300. adviceCondition = append(adviceCondition, adviceWhere, orgID, scheduleDate, adminUserId)
  1301. } else if patientType == 2 {
  1302. adviceWhere = "status = 1 AND user_org_id = ? AND advice_type = 1 AND record_date = ? AND execution_staff = 0"
  1303. adviceCondition = append(adviceCondition, adviceWhere, orgID, scheduleDate)
  1304. }
  1305. } else if adviceType == 3 {
  1306. if patientType == 0 {
  1307. adviceWhere = "status = 1 AND user_org_id = ? AND advice_type = 3 AND record_date = ? "
  1308. adviceCondition = append(adviceCondition, adviceWhere, orgID, scheduleDate)
  1309. } else if patientType == 1 {
  1310. adviceWhere = "status = 1 AND user_org_id = ? AND record_date = ? AND advice_type = 3 AND advice_doctor = ? "
  1311. adviceCondition = append(adviceCondition, adviceWhere, orgID, scheduleDate, adminUserId)
  1312. } else if patientType == 2 {
  1313. adviceWhere = "status = 1 AND user_org_id = ? AND record_date = ? AND advice_type = 3 AND execution_staff = 0"
  1314. adviceCondition = append(adviceCondition, adviceWhere, orgID, scheduleDate)
  1315. }
  1316. } else if adviceType == 2 && len(deliverWay) > 0 {
  1317. if patientType == 0 {
  1318. adviceWhere = "status = 1 AND user_org_id = ? AND advice_type = 2 AND record_date = ? and delivery_way = ?"
  1319. adviceCondition = append(adviceCondition, adviceWhere, orgID, scheduleDate, deliverWay)
  1320. } else if patientType == 1 {
  1321. adviceWhere = "status = 1 AND user_org_id = ? AND record_date = ? AND advice_type = 2 AND advice_doctor = ? and delivery_way = ? "
  1322. adviceCondition = append(adviceCondition, adviceWhere, orgID, scheduleDate, adminUserId, deliverWay)
  1323. } else if patientType == 2 {
  1324. adviceWhere = "status = 1 AND user_org_id = ? AND record_date = ? AND advice_type = 2 AND execution_staff = 0 and delivery_way = ?"
  1325. adviceCondition = append(adviceCondition, adviceWhere, orgID, scheduleDate, deliverWay)
  1326. }
  1327. } else if adviceType == 2 && len(deliverWay) <= 0 {
  1328. if patientType == 0 {
  1329. adviceWhere = "status = 1 AND user_org_id = ? AND advice_type = 2 AND record_date = ?"
  1330. adviceCondition = append(adviceCondition, adviceWhere, orgID, scheduleDate)
  1331. } else if patientType == 1 {
  1332. adviceWhere = "status = 1 AND user_org_id = ? AND record_date = ? AND advice_type = 2 AND (advice_doctor = ? or execution_staff = ?)"
  1333. adviceCondition = append(adviceCondition, adviceWhere, orgID, scheduleDate, adminUserId, adminUserId)
  1334. } else if patientType == 2 {
  1335. adviceWhere = "status = 1 AND user_org_id = ? AND record_date = ? AND advice_type = 2 AND execution_staff = 0"
  1336. adviceCondition = append(adviceCondition, adviceWhere, orgID, scheduleDate)
  1337. }
  1338. }
  1339. db := readDb.
  1340. Table("xt_schedule").
  1341. Preload("SchedualPatient", "status = 1 AND user_org_id = ?", orgID).
  1342. Preload("DialysisOrder", func(db *gorm.DB) *gorm.DB {
  1343. return db.Where("status = 1 AND user_org_id = ? AND dialysis_date = ?", orgID, scheduleDate).Preload("DeviceNumber", "status = 1 AND org_id= ?", orgID)
  1344. }).
  1345. Preload("DeviceNumber", "status = 1 AND org_id = ?", orgID).
  1346. Preload("DeviceNumber.Zone", "status = 1 AND org_id = ?", orgID).
  1347. Preload("Prescription", "status = 1 AND user_org_id = ? AND record_date = ?", orgID, scheduleDate).
  1348. Preload("DialysisAssesmentBefor", "status =1 AND user_org_id = ? and assessment_date =?", orgID, scheduleDate).
  1349. Preload("DoctorAdvices", adviceCondition...).
  1350. Where("status = 1 AND user_org_id = ?", orgID)
  1351. if scheduleDate != 0 {
  1352. db = db.Where("schedule_date = ?", scheduleDate)
  1353. }
  1354. err := db.Find(&vms).Error
  1355. return vms, err
  1356. }
  1357. func MobileGetScheduleDoctorAdvicesTwo(orgID int64, scheduleDate int64, adviceType int, patientType int, adminUserId int64, deliverWay string) ([]*MScheduleDoctorAdviceVMOne, error) {
  1358. var vms []*MScheduleDoctorAdviceVMOne
  1359. adviceWhere := ""
  1360. adviceCondition := []interface{}{}
  1361. if adviceType == 0 {
  1362. if patientType == 0 {
  1363. adviceWhere = "status = 1 AND user_org_id = ? AND record_date = ? AND (advice_type = 3 OR advice_type = 1)"
  1364. adviceCondition = append(adviceCondition, adviceWhere, orgID, scheduleDate)
  1365. } else if patientType == 1 {
  1366. adviceWhere = "status = 1 AND user_org_id = ? AND record_date = ? AND advice_doctor = ? AND(advice_type = 3 OR advice_type = 1)"
  1367. adviceCondition = append(adviceCondition, adviceWhere, orgID, scheduleDate, adminUserId)
  1368. } else if patientType == 2 {
  1369. adviceWhere = "status = 1 AND user_org_id = ? AND record_date = ? AND execution_staff = 0 AND(advice_type = 3 OR advice_type = 1)"
  1370. adviceCondition = append(adviceCondition, adviceWhere, orgID, scheduleDate)
  1371. } else if patientType == 3 {
  1372. adviceWhere = "status = 1 AND user_org_id = ? AND record_date = ? AND execution_staff = 0 AND(advice_type = 3 OR advice_type = 1) and is_settle = 1"
  1373. adviceCondition = append(adviceCondition, adviceWhere, orgID, scheduleDate)
  1374. } else if patientType == 4 {
  1375. adviceWhere = "status = 1 AND user_org_id = ? AND record_date = ? AND execution_staff = 0 AND(advice_type = 3 OR advice_type = 1) and (is_settle = 0 or is_settle = 2)"
  1376. adviceCondition = append(adviceCondition, adviceWhere, orgID, scheduleDate)
  1377. }
  1378. } else if adviceType == 1 {
  1379. if patientType == 0 {
  1380. adviceWhere = "status = 1 AND user_org_id = ? AND advice_type = 1 AND record_date = ? "
  1381. adviceCondition = append(adviceCondition, adviceWhere, orgID, scheduleDate)
  1382. } else if patientType == 1 {
  1383. adviceWhere = "status = 1 AND user_org_id = ? AND advice_type = 1 AND record_date = ? AND advice_doctor = ? "
  1384. adviceCondition = append(adviceCondition, adviceWhere, orgID, scheduleDate, adminUserId)
  1385. } else if patientType == 2 {
  1386. adviceWhere = "status = 1 AND user_org_id = ? AND advice_type = 1 AND record_date = ? AND execution_staff = 0"
  1387. adviceCondition = append(adviceCondition, adviceWhere, orgID, scheduleDate)
  1388. } else if patientType == 3 {
  1389. adviceWhere = "status = 1 AND user_org_id = ? AND advice_type = 1 AND record_date = ? and is_settle = 1"
  1390. adviceCondition = append(adviceCondition, adviceWhere, orgID, scheduleDate)
  1391. } else if patientType == 4 {
  1392. adviceWhere = "status = 1 AND user_org_id = ? AND advice_type = 1 AND record_date = ? and (is_settle = 0 or is_settle = 2)"
  1393. adviceCondition = append(adviceCondition, adviceWhere, orgID, scheduleDate)
  1394. }
  1395. } else if adviceType == 3 {
  1396. if patientType == 0 {
  1397. adviceWhere = "status = 1 AND user_org_id = ? AND advice_type = 3 AND record_date = ? "
  1398. adviceCondition = append(adviceCondition, adviceWhere, orgID, scheduleDate)
  1399. } else if patientType == 1 {
  1400. adviceWhere = "status = 1 AND user_org_id = ? AND record_date = ? AND advice_type = 3 AND advice_doctor = ? "
  1401. adviceCondition = append(adviceCondition, adviceWhere, orgID, scheduleDate, adminUserId)
  1402. } else if patientType == 2 {
  1403. adviceWhere = "status = 1 AND user_org_id = ? AND record_date = ? AND advice_type = 3 AND execution_staff = 0"
  1404. adviceCondition = append(adviceCondition, adviceWhere, orgID, scheduleDate)
  1405. } else if patientType == 3 {
  1406. adviceWhere = "status = 1 AND user_org_id = ? AND record_date = ? AND advice_type = 3 and is_settle = 1"
  1407. adviceCondition = append(adviceCondition, adviceWhere, orgID, scheduleDate)
  1408. } else if patientType == 4 {
  1409. adviceWhere = "status = 1 AND user_org_id = ? AND record_date = ? AND advice_type = 3 and (is_settle = 0 or is_settle = 2)"
  1410. adviceCondition = append(adviceCondition, adviceWhere, orgID, scheduleDate)
  1411. }
  1412. } else if adviceType == 2 && len(deliverWay) > 0 {
  1413. if patientType == 0 {
  1414. adviceWhere = "status = 1 AND user_org_id = ? AND advice_type = 2 AND record_date = ? and delivery_way = ?"
  1415. adviceCondition = append(adviceCondition, adviceWhere, orgID, scheduleDate, deliverWay)
  1416. } else if patientType == 1 {
  1417. adviceWhere = "status = 1 AND user_org_id = ? AND record_date = ? AND advice_type = 2 AND advice_doctor = ? and delivery_way = ? "
  1418. adviceCondition = append(adviceCondition, adviceWhere, orgID, scheduleDate, adminUserId, deliverWay)
  1419. } else if patientType == 2 {
  1420. adviceWhere = "status = 1 AND user_org_id = ? AND record_date = ? AND advice_type = 2 AND execution_staff = 0 and delivery_way = ?"
  1421. adviceCondition = append(adviceCondition, adviceWhere, orgID, scheduleDate, deliverWay)
  1422. } else if patientType == 3 {
  1423. adviceWhere = "status = 1 AND user_org_id = ? AND record_date = ? AND advice_type = 2 and delivery_way = ? and is_settle = 1"
  1424. adviceCondition = append(adviceCondition, adviceWhere, orgID, scheduleDate, deliverWay)
  1425. } else if patientType == 4 {
  1426. adviceWhere = "status = 1 AND user_org_id = ? AND record_date = ? AND advice_type = 2 and delivery_way = ? and (is_settle = 0 or is_settle =2)"
  1427. adviceCondition = append(adviceCondition, adviceWhere, orgID, scheduleDate, deliverWay)
  1428. }
  1429. } else if adviceType == 2 && len(deliverWay) <= 0 {
  1430. if patientType == 0 {
  1431. adviceWhere = "status = 1 AND user_org_id = ? AND advice_type = 2 AND record_date = ?"
  1432. adviceCondition = append(adviceCondition, adviceWhere, orgID, scheduleDate)
  1433. } else if patientType == 1 {
  1434. adviceWhere = "status = 1 AND user_org_id = ? AND record_date = ? AND advice_type = 2 AND (advice_doctor = ? or execution_staff = ?)"
  1435. adviceCondition = append(adviceCondition, adviceWhere, orgID, scheduleDate, adminUserId, adminUserId)
  1436. } else if patientType == 2 {
  1437. adviceWhere = "status = 1 AND user_org_id = ? AND record_date = ? AND advice_type = 2 AND execution_staff = 0"
  1438. adviceCondition = append(adviceCondition, adviceWhere, orgID, scheduleDate)
  1439. } else if patientType == 3 {
  1440. adviceWhere = "status = 1 AND user_org_id = ? AND record_date = ? AND advice_type = 2 and is_settle = 1"
  1441. adviceCondition = append(adviceCondition, adviceWhere, orgID, scheduleDate)
  1442. } else if patientType == 4 {
  1443. adviceWhere = "status = 1 AND user_org_id = ? AND record_date = ? AND advice_type = 2 and (is_settle = 0 or is_settle = 2)"
  1444. adviceCondition = append(adviceCondition, adviceWhere, orgID, scheduleDate)
  1445. }
  1446. }
  1447. db := readDb.
  1448. Table("xt_schedule").
  1449. //Preload("SchedualPatient", "status = 1 AND user_org_id = ?", orgID).
  1450. //Preload("DialysisOrder", func(db *gorm.DB) *gorm.DB {
  1451. // return db.Where("status = 1 AND user_org_id = ? AND dialysis_date = ?", orgID, scheduleDate).Preload("DeviceNumber", "status = 1 AND org_id= ?", orgID)
  1452. //}).
  1453. Preload("DeviceNumber", "status = 1 AND org_id = ?", orgID).
  1454. Preload("DeviceNumber.Zone", "status = 1 AND org_id = ?", orgID).
  1455. Preload("DialysisAssesmentBefor", "status = 1 AND user_org_id = ? AND assessment_date = ?", orgID, scheduleDate).
  1456. Preload("DoctorAdvices", adviceCondition...).
  1457. Where("status = 1 AND user_org_id = ?", orgID)
  1458. if scheduleDate != 0 {
  1459. db = db.Where("schedule_date = ?", scheduleDate)
  1460. }
  1461. err := db.Find(&vms).Error
  1462. return vms, err
  1463. }
  1464. func GetHisDoctorAdvices(orgID int64, scheduleDate int64, deliverWay string, patientType int, adminUserId int64) ([]*HisMScheduleDoctorAdviceVM, error) {
  1465. var vms []*HisMScheduleDoctorAdviceVM
  1466. if len(deliverWay) > 0 {
  1467. if patientType == 0 {
  1468. db := readDb.
  1469. Table("xt_schedule").
  1470. Preload("HisDoctorAdviceInfo", "status = 1 AND user_org_id = ? AND advice_date = ? and delivery_way = ?", orgID, scheduleDate, deliverWay).
  1471. Preload("Prescription", "status = 1 AND user_org_id = ? AND record_date = ?", orgID, scheduleDate).
  1472. Preload("SchedualPatient", "status = 1 AND user_org_id = ?", orgID).
  1473. Preload("HisPrescriptionProject", "status = 1 AND user_org_id = ? AND record_date = ?", orgID, scheduleDate).
  1474. Preload("DialysisOrder", func(db *gorm.DB) *gorm.DB {
  1475. return db.Where("status = 1 AND user_org_id = ? AND dialysis_date = ?", orgID, scheduleDate).Preload("DeviceNumber", "status = 1 AND org_id= ?", orgID)
  1476. }).
  1477. Preload("DeviceNumber", "status = 1 AND org_id = ?", orgID).
  1478. Preload("DeviceNumber.Zone", "status = 1 AND org_id = ?", orgID).
  1479. Where("status = 1 AND user_org_id = ?", orgID)
  1480. if scheduleDate != 0 {
  1481. db = db.Where("schedule_date = ?", scheduleDate)
  1482. }
  1483. err = db.Find(&vms).Error
  1484. }
  1485. if patientType > 0 {
  1486. db := readDb.
  1487. Table("xt_schedule").
  1488. Preload("Prescription", "status = 1 AND user_org_id = ? AND record_date = ?", orgID, scheduleDate).
  1489. Preload("SchedualPatient", "status = 1 AND user_org_id = ?", orgID).
  1490. Preload("HisDoctorAdviceInfo", "status = 1 AND user_org_id = ? AND advice_date = ? and delivery_way = ? and (advice_doctor = ? or execution_staff = ?) ", orgID, scheduleDate, deliverWay, adminUserId, adminUserId).
  1491. Preload("HisPrescriptionProject", "status = 1 AND user_org_id = ? AND record_date = ?", orgID, scheduleDate).
  1492. Preload("DeviceNumber", "status = 1 AND org_id = ?", orgID).
  1493. Preload("DeviceNumber.Zone", "status = 1 AND org_id = ?", orgID).
  1494. Preload("DialysisOrder", func(db *gorm.DB) *gorm.DB {
  1495. return db.Where("status = 1 AND user_org_id = ? AND dialysis_date = ?", orgID, scheduleDate).Preload("DeviceNumber", "status = 1 AND org_id= ?", orgID)
  1496. }).Where("status = 1 AND user_org_id = ?", orgID)
  1497. if scheduleDate != 0 {
  1498. db = db.Where("schedule_date = ?", scheduleDate)
  1499. }
  1500. err = db.Find(&vms).Error
  1501. }
  1502. } else {
  1503. if patientType == 0 {
  1504. db := readDb.
  1505. Table("xt_schedule").
  1506. Preload("HisDoctorAdviceInfo", "status = 1 AND user_org_id = ? AND advice_date = ? ", orgID, scheduleDate).
  1507. Preload("HisPrescriptionProject", "status = 1 AND user_org_id = ? AND record_date = ?", orgID, scheduleDate).
  1508. Preload("DialysisOrder", func(db *gorm.DB) *gorm.DB {
  1509. return db.Where("status = 1 AND user_org_id = ? and dialysis_date = ?", orgID, scheduleDate).Preload("DeviceNumber", "status = 1 AND org_id= ?", orgID)
  1510. }).
  1511. Preload("DeviceNumber", "status = 1 AND org_id = ?", orgID).
  1512. Preload("DeviceNumber.Zone", "status = 1 AND org_id = ?", orgID).
  1513. Preload("Prescription", "status = 1 AND user_org_id = ? AND record_date = ?", orgID, scheduleDate).
  1514. Preload("SchedualPatient", "status = 1 AND user_org_id = ?", orgID).
  1515. Where("status = 1 AND user_org_id = ?", orgID)
  1516. if scheduleDate != 0 {
  1517. db = db.Where("schedule_date = ?", scheduleDate)
  1518. }
  1519. err = db.Find(&vms).Error
  1520. }
  1521. if patientType > 0 {
  1522. db := readDb.
  1523. Table("xt_schedule").
  1524. Preload("Prescription", "status = 1 AND user_org_id = ? AND record_date = ?", orgID, scheduleDate).
  1525. Preload("HisDoctorAdviceInfo", "status = 1 AND user_org_id = ? AND advice_date = ? and (advice_doctor = ? or execution_staff = ?) ", orgID, scheduleDate, adminUserId, adminUserId).
  1526. Preload("HisPrescriptionProject", "status = 1 AND user_org_id = ? AND record_date = ?", orgID, scheduleDate).
  1527. Preload("SchedualPatient", "status = 1 AND user_org_id = ?", orgID).
  1528. Preload("DialysisOrder", func(db *gorm.DB) *gorm.DB {
  1529. return db.Where("status = 1 AND user_org_id = ? AND dialysis_date = ?", orgID, scheduleDate).Preload("DeviceNumber", "status = 1 AND org_id= ?", orgID)
  1530. }).Preload("DeviceNumber", "status = 1 AND org_id = ?", orgID).
  1531. Preload("DeviceNumber.Zone", "status = 1 AND org_id = ?", orgID).
  1532. Where("status = 1 AND user_org_id = ?", orgID)
  1533. if scheduleDate != 0 {
  1534. db = db.Where("schedule_date = ?", scheduleDate)
  1535. }
  1536. err = db.Find(&vms).Error
  1537. }
  1538. }
  1539. return vms, err
  1540. }
  1541. func GetHisDoctorAdvicesTwo(orgID int64, scheduleDate int64, deliverWay string, patientType int, adminUserId int64) ([]*HisMScheduleDoctorAdviceVMOne, error) {
  1542. var vms []*HisMScheduleDoctorAdviceVMOne
  1543. if len(deliverWay) > 0 {
  1544. if patientType == 0 {
  1545. db := readDb.
  1546. Table("xt_schedule").
  1547. Preload("HisDoctorAdviceInfo", "status = 1 AND user_org_id = ? AND advice_date = ? and delivery_way = ?", orgID, scheduleDate, deliverWay).
  1548. Preload("Prescription", "status = 1 AND user_org_id = ? AND record_date = ?", orgID, scheduleDate).
  1549. Preload("SchedualPatient", "status = 1 AND user_org_id = ?", orgID).
  1550. Preload("HisPrescriptionProject", "status = 1 AND user_org_id = ? AND record_date = ?", orgID, scheduleDate).
  1551. Preload("DialysisOrder", func(db *gorm.DB) *gorm.DB {
  1552. return db.Where("status = 1 AND user_org_id = ? AND dialysis_date = ?", orgID, scheduleDate).Preload("DeviceNumber", "status = 1 AND org_id= ?", orgID)
  1553. }).
  1554. Preload("DialysisAssesmentBefor", "status = 1 AND user_org_id = ? AND assessment_date = ?", orgID, scheduleDate).
  1555. Preload("DeviceNumber", "status = 1 AND org_id = ?", orgID).
  1556. Preload("DeviceNumber.Zone", "status = 1 AND org_id = ?", orgID).
  1557. Where("status = 1 AND user_org_id = ?", orgID)
  1558. if scheduleDate != 0 {
  1559. db = db.Where("schedule_date = ?", scheduleDate)
  1560. }
  1561. err = db.Find(&vms).Error
  1562. }
  1563. if patientType > 0 {
  1564. if patientType == 1 {
  1565. db := readDb.
  1566. Table("xt_schedule").
  1567. Preload("Prescription", "status = 1 AND user_org_id = ? AND record_date = ?", orgID, scheduleDate).
  1568. Preload("SchedualPatient", "status = 1 AND user_org_id = ?", orgID).
  1569. Preload("HisDoctorAdviceInfo", "status = 1 AND user_org_id = ? AND advice_date = ? and delivery_way = ? and (advice_doctor = ? or execution_staff = ?) ", orgID, scheduleDate, deliverWay, adminUserId, adminUserId).
  1570. Preload("HisPrescriptionProject", "status = 1 AND user_org_id = ? AND record_date = ?", orgID, scheduleDate).
  1571. Preload("DeviceNumber", "status = 1 AND org_id = ?", orgID).
  1572. Preload("DeviceNumber.Zone", "status = 1 AND org_id = ?", orgID).
  1573. Preload("DialysisOrder", func(db *gorm.DB) *gorm.DB {
  1574. return db.Where("status = 1 AND user_org_id = ? AND dialysis_date = ?", orgID, scheduleDate).Preload("DeviceNumber", "status = 1 AND org_id= ?", orgID)
  1575. }).Preload("DialysisAssesmentBefor", "status = 1 AND user_org_id = ? AND assessment_date = ?", orgID, scheduleDate).
  1576. Where("status = 1 AND user_org_id = ?", orgID)
  1577. if scheduleDate != 0 {
  1578. db = db.Where("schedule_date = ?", scheduleDate)
  1579. }
  1580. err = db.Find(&vms).Error
  1581. }
  1582. if patientType == 2 {
  1583. db := readDb.
  1584. Table("xt_schedule").
  1585. Preload("Prescription", "status = 1 AND user_org_id = ? AND record_date = ?", orgID, scheduleDate).
  1586. Preload("SchedualPatient", "status = 1 AND user_org_id = ?", orgID).
  1587. Preload("HisDoctorAdviceInfo", "status = 1 AND user_org_id = ? AND advice_date = ? and delivery_way = ? and (advice_doctor = ? or execution_staff = ?)", orgID, scheduleDate, deliverWay, adminUserId, adminUserId).
  1588. Preload("HisPrescriptionProject", "status = 1 AND user_org_id = ? AND record_date = ?", orgID, scheduleDate).
  1589. Preload("DeviceNumber", "status = 1 AND org_id = ?", orgID).
  1590. Preload("DeviceNumber.Zone", "status = 1 AND org_id = ?", orgID).
  1591. Preload("DialysisOrder", func(db *gorm.DB) *gorm.DB {
  1592. return db.Where("status = 1 AND user_org_id = ? AND dialysis_date = ?", orgID, scheduleDate).Preload("DeviceNumber", "status = 1 AND org_id= ?", orgID)
  1593. }).Preload("DialysisAssesmentBefor", "status = 1 AND user_org_id = ? AND assessment_date = ?", orgID, scheduleDate).Where("status = 1 AND user_org_id = ?", orgID)
  1594. if scheduleDate != 0 {
  1595. db = db.Where("schedule_date = ?", scheduleDate)
  1596. }
  1597. err = db.Find(&vms).Error
  1598. }
  1599. if patientType == 3 {
  1600. db := readDb.
  1601. Table("xt_schedule").
  1602. Preload("Prescription", "status = 1 AND user_org_id = ? AND record_date = ?", orgID, scheduleDate).
  1603. Preload("SchedualPatient", "status = 1 AND user_org_id = ?", orgID).
  1604. Preload("HisDoctorAdviceInfo", "status = 1 AND user_org_id = ? AND advice_date = ? and delivery_way = ? and (advice_doctor = ? or execution_staff = ?) and is_settle = 1", orgID, scheduleDate, deliverWay, adminUserId, adminUserId).
  1605. Preload("HisPrescriptionProject", "status = 1 AND user_org_id = ? AND record_date = ?", orgID, scheduleDate).
  1606. Preload("DeviceNumber", "status = 1 AND org_id = ?", orgID).
  1607. Preload("DeviceNumber.Zone", "status = 1 AND org_id = ?", orgID).
  1608. Preload("DialysisOrder", func(db *gorm.DB) *gorm.DB {
  1609. return db.Where("status = 1 AND user_org_id = ? AND dialysis_date = ?", orgID, scheduleDate).Preload("DeviceNumber", "status = 1 AND org_id= ?", orgID)
  1610. }).Preload("DialysisAssesmentBefor", "status = 1 AND user_org_id = ? AND assessment_date = ?", orgID, scheduleDate).Where("status = 1 AND user_org_id = ?", orgID)
  1611. if scheduleDate != 0 {
  1612. db = db.Where("schedule_date = ?", scheduleDate)
  1613. }
  1614. err = db.Find(&vms).Error
  1615. }
  1616. if patientType == 4 {
  1617. db := readDb.
  1618. Table("xt_schedule").
  1619. Preload("Prescription", "status = 1 AND user_org_id = ? AND record_date = ?", orgID, scheduleDate).
  1620. Preload("SchedualPatient", "status = 1 AND user_org_id = ?", orgID).
  1621. Preload("HisDoctorAdviceInfo", "status = 1 AND user_org_id = ? AND advice_date = ? and delivery_way = ? and (advice_doctor = ? or execution_staff = ?) and (is_settle = 0 or is_settle = 2)", orgID, scheduleDate, deliverWay, adminUserId, adminUserId).
  1622. Preload("HisPrescriptionProject", "status = 1 AND user_org_id = ? AND record_date = ?", orgID, scheduleDate).
  1623. Preload("DeviceNumber", "status = 1 AND org_id = ?", orgID).
  1624. Preload("DeviceNumber.Zone", "status = 1 AND org_id = ?", orgID).
  1625. Preload("DialysisOrder", func(db *gorm.DB) *gorm.DB {
  1626. return db.Where("status = 1 AND user_org_id = ? AND dialysis_date = ?", orgID, scheduleDate).Preload("DeviceNumber", "status = 1 AND org_id= ?", orgID)
  1627. }).Preload("DialysisAssesmentBefor", "status = 1 AND user_org_id = ? AND assessment_date = ?", orgID, scheduleDate).Where("status = 1 AND user_org_id = ?", orgID)
  1628. if scheduleDate != 0 {
  1629. db = db.Where("schedule_date = ?", scheduleDate)
  1630. }
  1631. err = db.Find(&vms).Error
  1632. }
  1633. }
  1634. } else {
  1635. if patientType == 0 {
  1636. db := readDb.
  1637. Table("xt_schedule").
  1638. Preload("HisDoctorAdviceInfo", "status = 1 AND user_org_id = ? AND advice_date = ? ", orgID, scheduleDate).
  1639. Preload("HisPrescriptionProject", "status = 1 AND user_org_id = ? AND record_date = ?", orgID, scheduleDate).
  1640. Preload("DialysisOrder", func(db *gorm.DB) *gorm.DB {
  1641. return db.Where("status = 1 AND user_org_id = ? and dialysis_date = ?", orgID, scheduleDate).Preload("DeviceNumber", "status = 1 AND org_id= ?", orgID)
  1642. }).
  1643. Preload("DeviceNumber", "status = 1 AND org_id = ?", orgID).
  1644. Preload("DeviceNumber.Zone", "status = 1 AND org_id = ?", orgID).
  1645. Preload("Prescription", "status = 1 AND user_org_id = ? AND record_date = ?", orgID, scheduleDate).
  1646. Preload("SchedualPatient", "status = 1 AND user_org_id = ?", orgID).
  1647. Preload("DialysisAssesmentBefor", "status = 1 AND user_org_id = ? AND assessment_date = ?", orgID, scheduleDate).
  1648. Where("status = 1 AND user_org_id = ?", orgID)
  1649. if scheduleDate != 0 {
  1650. db = db.Where("schedule_date = ?", scheduleDate)
  1651. }
  1652. err = db.Find(&vms).Error
  1653. }
  1654. if patientType > 0 {
  1655. if patientType == 1 {
  1656. db := readDb.
  1657. Table("xt_schedule").
  1658. Preload("Prescription", "status = 1 AND user_org_id = ? AND record_date = ?", orgID, scheduleDate).
  1659. Preload("HisDoctorAdviceInfo", "status = 1 AND user_org_id = ? AND advice_date = ? and (advice_doctor = ? or execution_staff = ?) ", orgID, scheduleDate, adminUserId, adminUserId).
  1660. Preload("HisPrescriptionProject", "status = 1 AND user_org_id = ? AND record_date = ?", orgID, scheduleDate).
  1661. Preload("SchedualPatient", "status = 1 AND user_org_id = ?", orgID).
  1662. Preload("DialysisOrder", func(db *gorm.DB) *gorm.DB {
  1663. return db.Where("status = 1 AND user_org_id = ? AND dialysis_date = ?", orgID, scheduleDate).Preload("DeviceNumber", "status = 1 AND org_id= ?", orgID)
  1664. }).Preload("DeviceNumber", "status = 1 AND org_id = ?", orgID).
  1665. Preload("DeviceNumber.Zone", "status = 1 AND org_id = ?", orgID).
  1666. Preload("DialysisAssesmentBefor", "status = 1 AND user_org_id = ? AND assessment_date = ?", orgID, scheduleDate).
  1667. Where("status = 1 AND user_org_id = ?", orgID)
  1668. if scheduleDate != 0 {
  1669. db = db.Where("schedule_date = ?", scheduleDate)
  1670. }
  1671. err = db.Find(&vms).Error
  1672. }
  1673. if patientType == 2 {
  1674. db := readDb.
  1675. Table("xt_schedule").
  1676. Preload("Prescription", "status = 1 AND user_org_id = ? AND record_date = ?", orgID, scheduleDate).
  1677. Preload("HisDoctorAdviceInfo", "status = 1 AND user_org_id = ? AND advice_date = ? and (advice_doctor = ? or execution_staff = ?) ", orgID, scheduleDate, adminUserId, adminUserId).
  1678. Preload("HisPrescriptionProject", "status = 1 AND user_org_id = ? AND record_date = ?", orgID, scheduleDate).
  1679. Preload("SchedualPatient", "status = 1 AND user_org_id = ?", orgID).
  1680. Preload("DialysisOrder", func(db *gorm.DB) *gorm.DB {
  1681. return db.Where("status = 1 AND user_org_id = ? AND dialysis_date = ?", orgID, scheduleDate).Preload("DeviceNumber", "status = 1 AND org_id= ?", orgID)
  1682. }).Preload("DeviceNumber", "status = 1 AND org_id = ?", orgID).
  1683. Preload("DeviceNumber.Zone", "status = 1 AND org_id = ?", orgID).
  1684. Preload("DialysisAssesmentBefor", "status = 1 AND user_org_id = ? AND assessment_date = ?", orgID, scheduleDate).
  1685. Where("status = 1 AND user_org_id = ?", orgID)
  1686. if scheduleDate != 0 {
  1687. db = db.Where("schedule_date = ?", scheduleDate)
  1688. }
  1689. err = db.Find(&vms).Error
  1690. }
  1691. if patientType == 3 {
  1692. db := readDb.
  1693. Table("xt_schedule").
  1694. Preload("Prescription", "status = 1 AND user_org_id = ? AND record_date = ?", orgID, scheduleDate).
  1695. Preload("HisDoctorAdviceInfo", "status = 1 AND user_org_id = ? AND advice_date = ? and (advice_doctor = ? or execution_staff = ?) and is_settle = 1", orgID, scheduleDate, adminUserId, adminUserId).
  1696. Preload("HisPrescriptionProject", "status = 1 AND user_org_id = ? AND record_date = ?", orgID, scheduleDate).
  1697. Preload("SchedualPatient", "status = 1 AND user_org_id = ?", orgID).
  1698. Preload("DialysisOrder", func(db *gorm.DB) *gorm.DB {
  1699. return db.Where("status = 1 AND user_org_id = ? AND dialysis_date = ?", orgID, scheduleDate).Preload("DeviceNumber", "status = 1 AND org_id= ?", orgID)
  1700. }).Preload("DeviceNumber", "status = 1 AND org_id = ?", orgID).
  1701. Preload("DeviceNumber.Zone", "status = 1 AND org_id = ?", orgID).
  1702. Preload("DialysisAssesmentBefor", "status = 1 AND user_org_id = ? AND assessment_date = ?", orgID, scheduleDate).
  1703. Where("status = 1 AND user_org_id = ?", orgID)
  1704. if scheduleDate != 0 {
  1705. db = db.Where("schedule_date = ?", scheduleDate)
  1706. }
  1707. err = db.Find(&vms).Error
  1708. }
  1709. if patientType == 4 {
  1710. db := readDb.
  1711. Table("xt_schedule").
  1712. Preload("Prescription", "status = 1 AND user_org_id = ? AND record_date = ?", orgID, scheduleDate).
  1713. Preload("HisDoctorAdviceInfo", "status = 1 AND user_org_id = ? AND advice_date = ? and (advice_doctor = ? or execution_staff = ?) and (is_settle = 0 or is_settle =2) ", orgID, scheduleDate, adminUserId, adminUserId).
  1714. Preload("HisPrescriptionProject", "status = 1 AND user_org_id = ? AND record_date = ?", orgID, scheduleDate).
  1715. Preload("SchedualPatient", "status = 1 AND user_org_id = ?", orgID).
  1716. Preload("DialysisOrder", func(db *gorm.DB) *gorm.DB {
  1717. return db.Where("status = 1 AND user_org_id = ? AND dialysis_date = ?", orgID, scheduleDate).Preload("DeviceNumber", "status = 1 AND org_id= ?", orgID)
  1718. }).Preload("DeviceNumber", "status = 1 AND org_id = ?", orgID).
  1719. Preload("DeviceNumber.Zone", "status = 1 AND org_id = ?", orgID).
  1720. Preload("DialysisAssesmentBefor", "status = 1 AND user_org_id = ? AND assessment_date = ?", orgID, scheduleDate).
  1721. Where("status = 1 AND user_org_id = ?", orgID)
  1722. if scheduleDate != 0 {
  1723. db = db.Where("schedule_date = ?", scheduleDate)
  1724. }
  1725. err = db.Find(&vms).Error
  1726. }
  1727. }
  1728. }
  1729. return vms, err
  1730. }
  1731. func GetMobileHisPrescriptionProject(orgID int64, scheduleDate int64, deliverWay string, patientType int, adminUserId int64) ([]*HisMScheduleProjectVM, error) {
  1732. var vms []*HisMScheduleProjectVM
  1733. //if patientType == 0 {
  1734. // db := readDb.
  1735. // Table("xt_schedule").
  1736. // Preload("SchedualPatient", "status = 1 AND user_org_id = ?", orgID).
  1737. // Preload("DialysisOrder", func(db *gorm.DB) *gorm.DB {
  1738. // return db.Where("status = 1 AND user_org_id = ? AND dialysis_date = ?", orgID, scheduleDate).Preload("DeviceNumber", "status = 1 AND org_id= ?", orgID)
  1739. // }).
  1740. // Preload("DeviceNumber", "status = 1 AND org_id = ?", orgID).
  1741. // Preload("DeviceNumber.Zone", "status = 1 AND org_id = ?", orgID).
  1742. // Preload("Prescription", "status = 1 AND user_org_id = ? AND record_date = ?", orgID, scheduleDate).
  1743. // Preload("HisPrescriptionProject", func(db *gorm.DB) *gorm.DB {
  1744. // return db.Where("status = 1 AND user_org_id = ? AND record_date = ?", orgID, scheduleDate).Preload("HisProject").Preload("GoodInfo", "status=1")
  1745. // }).
  1746. // Where("status = 1 AND user_org_id = ?", orgID)
  1747. // if scheduleDate != 0 {
  1748. // db = db.Where("schedule_date = ?", scheduleDate)
  1749. // }
  1750. // err = db.Find(&vms).Error
  1751. //}
  1752. //if patientType > 0 {
  1753. // db := readDb.
  1754. // Table("xt_schedule").
  1755. // Preload("SchedualPatient", "status = 1 AND user_org_id = ?", orgID).
  1756. // Preload("DialysisOrder", func(db *gorm.DB) *gorm.DB {
  1757. // return db.Where("status = 1 AND user_org_id = ? AND dialysis_date = ?", orgID, scheduleDate).Preload("DeviceNumber", "status = 1 AND org_id= ?", orgID)
  1758. // }).
  1759. // Preload("DeviceNumber", "status = 1 AND org_id = ?", orgID).
  1760. // Preload("DeviceNumber.Zone", "status = 1 AND org_id = ?", orgID).
  1761. // Preload("Prescription", "status = 1 AND user_org_id = ? AND record_date = ?", orgID, scheduleDate).
  1762. // Preload("HisDoctorAdviceInfo", "status = 1 AND user_org_id = ? AND advice_date = ? and (advice_doctor = ? or execution_staff = ?) ", orgID, scheduleDate, adminUserId, adminUserId).
  1763. // Preload("HisPrescriptionProject", func(db *gorm.DB) *gorm.DB {
  1764. // return db.Where("status = 1 AND user_org_id = ? AND record_date = ?", orgID, scheduleDate).Preload("HisProject").Preload("GoodInfo", "status=1")
  1765. // }).
  1766. // Where("status = 1 AND user_org_id = ?", orgID)
  1767. // if scheduleDate != 0 {
  1768. // db = db.Where("schedule_date = ?", scheduleDate)
  1769. // }
  1770. // err = db.Find(&vms).Error
  1771. //}
  1772. db := readDb.Table("xt_schedule").Where("status = 1")
  1773. if orgID > 0 {
  1774. db = db.Where("user_org_id = ?", orgID)
  1775. }
  1776. if scheduleDate > 0 {
  1777. db = db.Where("schedule_date =?", scheduleDate)
  1778. }
  1779. err = db.Find(&vms).Error
  1780. if patientType == 0 {
  1781. db := readDb.
  1782. Table("xt_schedule").
  1783. Preload("SchedualPatient", "status = 1 AND user_org_id = ?", orgID).
  1784. Preload("DialysisOrder", func(db *gorm.DB) *gorm.DB {
  1785. return db.Where("status = 1 AND user_org_id = ? AND dialysis_date = ?", orgID, scheduleDate).Preload("DeviceNumber", "status = 1 AND org_id= ?", orgID)
  1786. }).
  1787. Preload("DeviceNumber", "status = 1 AND org_id = ?", orgID).
  1788. Preload("DeviceNumber.Zone", "status = 1 AND org_id = ?", orgID).
  1789. Preload("Prescription", "status = 1 AND user_org_id = ? AND record_date = ?", orgID, scheduleDate).
  1790. Preload("HisPrescriptionProject", func(db *gorm.DB) *gorm.DB {
  1791. return db.Where("status = 1 AND user_org_id = ? AND record_date = ? AND team_id = 0", orgID, scheduleDate).Preload("HisProject").Preload("GoodInfo", "status=1")
  1792. }).
  1793. Preload("HisPrescriptionTeamProject", func(db *gorm.DB) *gorm.DB {
  1794. return db.Where("status = 1 AND user_org_id = ? AND record_date = ? AND team_id > 0", orgID, scheduleDate).Preload("XtHisProjectTeam", "status = 1").Preload("HisProject").Preload("GoodInfo", "status=1")
  1795. }).
  1796. Where("status = 1 AND user_org_id = ?", orgID)
  1797. if scheduleDate != 0 {
  1798. db = db.Where("schedule_date = ?", scheduleDate)
  1799. }
  1800. err = db.Find(&vms).Error
  1801. }
  1802. if patientType > 0 {
  1803. db := readDb.
  1804. Table("xt_schedule").
  1805. Preload("SchedualPatient", "status = 1 AND user_org_id = ?", orgID).
  1806. Preload("DialysisOrder", func(db *gorm.DB) *gorm.DB {
  1807. return db.Where("status = 1 AND user_org_id = ? AND dialysis_date = ?", orgID, scheduleDate).Preload("DeviceNumber", "status = 1 AND org_id= ?", orgID)
  1808. }).
  1809. Preload("DeviceNumber", "status = 1 AND org_id = ?", orgID).
  1810. Preload("DeviceNumber.Zone", "status = 1 AND org_id = ?", orgID).
  1811. Preload("Prescription", "status = 1 AND user_org_id = ? AND record_date = ?", orgID, scheduleDate).
  1812. Preload("HisPrescriptionProject", func(db *gorm.DB) *gorm.DB {
  1813. return db.Where("status = 1 AND user_org_id = ? AND record_date = ? AND team_id = 0", orgID, scheduleDate).Preload("HisProject").Preload("GoodInfo", "status=1")
  1814. }).
  1815. Preload("HisPrescriptionTeamProject", func(db *gorm.DB) *gorm.DB {
  1816. return db.Where("status = 1 AND user_org_id = ? AND record_date = ? AND team_id > 0", orgID, scheduleDate).Preload("XtHisProjectTeam", "status = 1").Preload("HisProject").Preload("GoodInfo", "status=1")
  1817. }).
  1818. Where("status = 1 AND user_org_id = ?", orgID)
  1819. if scheduleDate != 0 {
  1820. db = db.Where("schedule_date = ?", scheduleDate)
  1821. }
  1822. err = db.Find(&vms).Error
  1823. }
  1824. return vms, err
  1825. }
  1826. func MobileCreateDialysisOrder(orgID int64, patientID int64, order *models.DialysisOrder) error {
  1827. now := time.Now()
  1828. tx := writeDb.Begin()
  1829. if createOrderErr := tx.Model(&models.DialysisOrder{}).Create(order).Error; createOrderErr != nil {
  1830. tx.Rollback()
  1831. return createOrderErr
  1832. }
  1833. // 更新透析记录 ID
  1834. // 透析处方
  1835. if err := tx.Model(&models.DialysisPrescription{}).Where("user_org_id = ? AND patient_id = ? AND record_date = ? AND status = 1", orgID, patientID, order.DialysisDate).Updates(map[string]interface{}{"record_id": order.ID, "updated_time": now.Unix()}).Error; err != nil {
  1836. tx.Rollback()
  1837. return err
  1838. }
  1839. // 接诊评估
  1840. if err := tx.Model(&models.ReceiveTreatmentAsses{}).Where("user_org_id = ? AND patient_id = ? AND record_date = ? AND status = 1", orgID, patientID, order.DialysisDate).Updates(map[string]interface{}{"record_id": order.ID, "update_time": now.Unix()}).Error; err != nil {
  1841. tx.Rollback()
  1842. return err
  1843. }
  1844. // 透前评估
  1845. if err := tx.Model(&models.PredialysisEvaluation{}).Where("user_org_id = ? AND patient_id = ? AND assessment_date = ? AND status = 1", orgID, patientID, order.DialysisDate).Updates(map[string]interface{}{"dialysis_order_id": order.ID, "updated_time": now.Unix()}).Error; err != nil {
  1846. tx.Rollback()
  1847. return err
  1848. }
  1849. // 临时医嘱
  1850. if err := tx.Model(&models.DoctorAdvice{}).Where("user_org_id = ? AND patient_id = ? AND record_date = ? AND status = 1 AND advice_type = 2", orgID, patientID, order.DialysisDate).Updates(map[string]interface{}{"dialysis_order_id": order.ID, "updated_time": now.Unix()}).Error; err != nil {
  1851. tx.Rollback()
  1852. return err
  1853. }
  1854. // 双人核对
  1855. if err := tx.Model(&models.DoubleCheck{}).Where("user_org_id = ? AND patient_id = ? AND check_date = ? AND status = 1", orgID, patientID, order.DialysisDate).Updates(map[string]interface{}{"dialysis_order_id": order.ID, "updated_time": now.Unix()}).Error; err != nil {
  1856. tx.Rollback()
  1857. return err
  1858. }
  1859. // 透后评估
  1860. if err := tx.Model(&models.AssessmentAfterDislysis{}).Where("user_org_id = ? AND patient_id = ? AND assessment_date = ? AND status = 1", orgID, patientID, order.DialysisDate).Updates(map[string]interface{}{"dialysis_order_id": order.ID, "updated_time": now.Unix()}).Error; err != nil {
  1861. tx.Rollback()
  1862. return err
  1863. }
  1864. // 治疗小结
  1865. if err := tx.Model(&models.TreatmentSummary{}).Where("user_org_id = ? AND patient_id = ? AND assessment_date = ? AND status = 1", orgID, patientID, order.DialysisDate).Updates(map[string]interface{}{"dialysis_order_id": order.ID, "updated_time": now.Unix()}).Error; err != nil {
  1866. tx.Rollback()
  1867. return err
  1868. }
  1869. // 透析监测
  1870. if err := tx.Model(&models.MonitoringRecord{}).Where("patient_id = ? and user_org_id=? and status=1 and monitoring_date = ?", patientID, orgID, order.DialysisDate).Update(map[string]interface{}{"dialysis_order_id": order.ID, "updated_time": now.Unix()}).Error; err != nil {
  1871. tx.Rollback()
  1872. return err
  1873. }
  1874. tx.Commit()
  1875. return nil
  1876. }
  1877. type MobileUrgentSchedulePatientVM struct {
  1878. ID int64 `gorm:"column:id" json:"id"`
  1879. Name string `gorm:"column:name" json:"name"`
  1880. DialysisNo string `gorm:"column:dialysis_no" json:"dialysis_no"`
  1881. }
  1882. func (MobileUrgentSchedulePatientVM) TableName() string {
  1883. return "xt_patients"
  1884. }
  1885. type MobileUrgentScheduleTreatmentModeVM struct {
  1886. ID int64 `gorm:"column:id" json:"id"`
  1887. Name string `gorm:"column:name" json:"name"`
  1888. }
  1889. func (MobileUrgentScheduleTreatmentModeVM) TableName() string {
  1890. return "xt_treatment_mode"
  1891. }
  1892. func MobileGetAllPatientsForUrgentSchedule(orgID int64, record_date int64) ([]*MobileUrgentSchedulePatientVM, error) {
  1893. var vms []*MobileUrgentSchedulePatientVM = make([]*MobileUrgentSchedulePatientVM, 0)
  1894. rows, err := readDb.Raw("SELECT p.* FROM xt_patients as p WHERE (p.user_org_id = ? AND p.status = 1 AND p.lapseto = 1) AND NOT EXISTS (Select * FROM `xt_dialysis_order` as d Where d.`dialysis_date` = ? AND d.`status` = 1 AND d.`patient_id` = p.id AND d.user_org_id = p.user_org_id )", orgID, record_date).Rows()
  1895. defer rows.Close()
  1896. if err != nil {
  1897. return nil, err
  1898. }
  1899. for rows.Next() {
  1900. var vm MobileUrgentSchedulePatientVM
  1901. readDb.ScanRows(rows, &vm)
  1902. vms = append(vms, &vm)
  1903. }
  1904. return vms, nil
  1905. }
  1906. func MobileGetAllTrearmentModesForUrgentSchedule() ([]*MobileUrgentScheduleTreatmentModeVM, error) {
  1907. var modes []*MobileUrgentScheduleTreatmentModeVM
  1908. err := readDb.Model(&MobileUrgentScheduleTreatmentModeVM{}).Where("status = 1").Find(&modes).Error
  1909. if err != nil {
  1910. return nil, err
  1911. }
  1912. return modes, nil
  1913. }
  1914. type MobileUrgentScheduleScheduleListVM struct {
  1915. ID int64 `gorm:"column:id" json:"id"`
  1916. // ZoneID int64 `gorm:"column:partition_id" json:"zone_id"`
  1917. DeviceNumberID int64 `gorm:"column:bed_id" json:"bed_id"`
  1918. PatientID int64 `gorm:"column:patient_id" json:"patient_id"`
  1919. ScheduleType int `gorm:"column:schedule_type" json:"schedule_type"`
  1920. DeviceNumber *models.DeviceNumber `gorm:"ForeignKey:DeviceNumberID" json:"device_number"`
  1921. // DeviceZone *models.DeviceZone `gorm:"ForeignKey:ZoneID" json:"device_zone"`
  1922. }
  1923. func (MobileUrgentScheduleScheduleListVM) TableName() string {
  1924. return "xt_schedule"
  1925. }
  1926. func MobileGetSchedulesForUrgentSchedule(orgID int64, scheduleDate int64, schedule_type int) (schedules []*MobileUrgentScheduleScheduleListVM, err error) {
  1927. db := readDb.
  1928. Model(&MobileUrgentScheduleScheduleListVM{}).
  1929. Preload("DeviceNumber", "status = 1 AND org_id = ?", orgID).
  1930. Where("status = 1 AND user_org_id = ? AND schedule_date = ? AND schedule_type = ? ", orgID, scheduleDate, schedule_type)
  1931. err = db.Find(&schedules).Error
  1932. if err != nil {
  1933. return nil, err
  1934. }
  1935. return schedules, nil
  1936. }
  1937. func MobileGetOtherSchedulesForUrgentSchedule(orgID int64, scheduleDate int64, schedule_type int) ([]*MobileUrgentScheduleScheduleListVM, error) {
  1938. var vms []*MobileUrgentScheduleScheduleListVM = make([]*MobileUrgentScheduleScheduleListVM, 0)
  1939. rows, err := readDb.Raw("SELECT * FROM xt_schedule as s WHERE s.user_org_id = ? AND s.status = 1 AND s.schedule_date = ? ", orgID, scheduleDate).Rows()
  1940. defer rows.Close()
  1941. if err != nil {
  1942. return nil, err
  1943. }
  1944. for rows.Next() {
  1945. var vm MobileUrgentScheduleScheduleListVM
  1946. readDb.ScanRows(rows, &vm)
  1947. vms = append(vms, &vm)
  1948. }
  1949. return vms, nil
  1950. }
  1951. type MobileUrgentScheduleDeviceNumberVM struct {
  1952. ID int64 `gorm:"column:id" json:"id"`
  1953. Number string `gorm:"column:number" json:"number"`
  1954. ZoneID int64 `gorm:"column:zone_id" json:"zone_id"`
  1955. Zone *models.DeviceZone `gorm:"ForeignKey:ZoneID" json:"zone"`
  1956. }
  1957. func (MobileUrgentScheduleDeviceNumberVM) TableName() string {
  1958. return "xt_device_number"
  1959. }
  1960. func MobileGetAllDeviceNumbersForUrgentSchedule(orgID int64, record_date int64, schedule_type int) ([]*DeviceNumberViewModel, error) {
  1961. var vms []*DeviceNumberViewModel = make([]*DeviceNumberViewModel, 0)
  1962. rows, err := readDb.Raw("SELECT n.*, z.name as zone_name, g.name as group_name FROM xt_device_number as n join xt_device_zone as z on z.id = n.zone_id join xt_device_group as g on g.id = n.group_id WHERE (n.org_id = ? AND n.status = 1) AND NOT EXISTS (Select * FROM xt_schedule as s Where s.`schedule_date` = ? AND s.user_org_id = n.org_id AND s.`bed_id` = n.id AND s.`schedule_type` = ? AND s.status = 1 )", orgID, record_date, schedule_type).Rows()
  1963. defer rows.Close()
  1964. if err != nil {
  1965. return nil, err
  1966. }
  1967. for rows.Next() {
  1968. var vm DeviceNumberViewModel
  1969. readDb.ScanRows(rows, &vm)
  1970. vms = append(vms, &vm)
  1971. }
  1972. return vms, nil
  1973. //var deviceNumbers []*MobileUrgentScheduleDeviceNumberVM
  1974. //db := readDb.
  1975. // Model(&MobileUrgentScheduleDeviceNumberVM{}).
  1976. // Preload("Zone", "status = 1 AND org_id = ?", orgID).
  1977. // Where("status = 1 AND org_id = ?", orgID)
  1978. //err := db.Order("zone_id asc").Find(&deviceNumbers).Error
  1979. //if err != nil {
  1980. // return nil, err
  1981. //}
  1982. //return deviceNumbers, nil
  1983. }
  1984. func GetValidScheduleMonitorRecordCount() (int64, error) {
  1985. var total int64
  1986. err := readDb.Model(&models.MonitoringRecord{}).Where("status = 1 AND operate_time = 0 AND monitoring_date <> 0").Count(&total).Error
  1987. return total, err
  1988. }
  1989. func GetTop1000ValidScheduleMonitorRecord() ([]*models.MonitoringRecord, error) {
  1990. var monitors []*models.MonitoringRecord
  1991. err := readDb.Model(&models.MonitoringRecord{}).Where("status = 1 AND operate_time = 0 AND monitoring_date <> 0").Order("id asc").Limit(100).Find(&monitors).Error
  1992. if err != nil {
  1993. return nil, err
  1994. }
  1995. return monitors, nil
  1996. }
  1997. func BatchUpdateMonitors(monitors []*models.MonitoringRecord) error {
  1998. tx := writeDb.Begin()
  1999. for index := 0; index < len(monitors); index++ {
  2000. tx.Save(monitors[index])
  2001. }
  2002. return tx.Commit().Error
  2003. }
  2004. func ModifyStartDialysisOrder(order *models.DialysisOrder) error {
  2005. tx := writeDb.Begin()
  2006. updateTime := time.Now().Unix()
  2007. err := tx.Model(&models.DialysisOrder{}).Where("user_org_id = ? AND id = ? AND status = 1 ", order.UserOrgId, order.ID).Updates(map[string]interface{}{"start_nurse": order.StartNurse, "updated_time": updateTime, "bed_id": order.BedID, "puncture_nurse": order.PunctureNurse, "start_time": order.StartTime, "modifier": order.Modifier, "schedual_type": order.SchedualType, "washpipe_nurse": order.WashpipeNurse, "change_nurse": order.ChangeNurse, "difficult_puncture_nurse": order.DifficultPunctureNurse, "new_fistula_nurse": order.NewFistulaNurse, "quality_nurse_id": order.QualityNurseId, "puncture_needle": order.PunctureNeedle, "puncture_way": order.PunctureWay, "dialysis_dialyszers": order.DialysisDialyszers, "dialysis_irrigation": order.DialysisIrrigation, "blood_access_id": order.BloodAccessId, "nuclein_date": order.NucleinDate, "schedule_remark": order.ScheduleRemark, "order_remark": order.OrderRemark, "catheter_operation": order.CatheterOperation}).Error
  2008. if err != nil {
  2009. tx.Rollback()
  2010. return err
  2011. }
  2012. tx.Commit()
  2013. return err
  2014. }
  2015. func ModifyFinishDialysisOrder(order *models.DialysisOrder) error {
  2016. tx := writeDb.Begin()
  2017. updateTime := time.Now().Unix()
  2018. err := tx.Model(&models.DialysisOrder{}).Where("user_org_id = ? AND id = ? AND status = 1 ", order.UserOrgId, order.ID).Updates(map[string]interface{}{"finish_nurse": order.FinishNurse, "updated_time": updateTime, "end_time": order.EndTime, "finish_modifier": order.FinishModifier, "puncture_point_haematoma": order.PuncturePointHaematoma, "blood_access_internal_fistula": order.BloodAccessInternalFistula, "catheter": order.Catheter, "cruor": order.Cruor, "mission": order.Mission}).Error
  2019. if err != nil {
  2020. tx.Rollback()
  2021. return err
  2022. }
  2023. tx.Commit()
  2024. return err
  2025. }
  2026. func MobileGetLastDryWeight(orgID int64, patientID int64) (*models.SgjPatientDryweight, error) {
  2027. var record models.SgjPatientDryweight
  2028. err := readDb.Model(&models.SgjPatientDryweight{}).Where("patient_id = ? and user_org_id = ? and status = 1", patientID, orgID).Last(&record).Error
  2029. if err != nil {
  2030. if err == gorm.ErrRecordNotFound {
  2031. return nil, nil
  2032. } else {
  2033. return nil, err
  2034. }
  2035. }
  2036. return &record, nil
  2037. }
  2038. //func MobileGetLastDryWeight(orgID int64, patientID int64) (*models.SgjPatientDryweight, error) {
  2039. // var record models.SgjPatientDryweight
  2040. // redis := RedisClient()
  2041. // defer redis.Close()
  2042. //
  2043. // key := strconv.FormatInt(orgID, 10) + ":" + strconv.FormatInt(patientID, 10) + ":last_dry_weight"
  2044. // last_dry_weight_str, _ := redis.Get(key).Result()
  2045. //
  2046. // if len(last_dry_weight_str) == 0 { //没有到缓存数据,从数据库中获取数据,进行缓存到redis
  2047. // err := readDb.Model(&models.SgjPatientDryweight{}).Where("patient_id = ? and user_org_id = ? and status = 1", patientID, orgID).Last(&record).Error
  2048. // if err != nil {
  2049. // if err == gorm.ErrRecordNotFound {
  2050. // if record.ID <= 0 {
  2051. // redis.Set(key, "null", time.Second*60*60*18)
  2052. // }
  2053. // return nil, nil
  2054. // } else {
  2055. // return nil, err
  2056. // }
  2057. // } else {
  2058. // if record.ID > 0 {
  2059. // //缓存数据
  2060. // last_dry_weight_str, err := json.Marshal(record)
  2061. // if err == nil {
  2062. // redis.Set(key, last_dry_weight_str, time.Second*60*60*18)
  2063. // return nil, err
  2064. // }
  2065. // } else {
  2066. // redis.Set(key, "null", time.Second*60*60*18)
  2067. // return nil, err
  2068. // }
  2069. // return &record, nil
  2070. // }
  2071. // } else { //缓存数据了数据,将redis缓存的json字符串转为map
  2072. // if last_dry_weight_str == "null" {
  2073. // return &record, nil
  2074. // } else {
  2075. // json.Unmarshal([]byte(last_dry_weight_str), &record)
  2076. // return &record, nil
  2077. // }
  2078. //
  2079. // }
  2080. //}
  2081. // 透析方案
  2082. func MobileGetDialysisSolutionByModeIdSix(orgID int64, patientID int64, mode_id int64) (*models.DialysisSolution, error) {
  2083. var record models.DialysisSolution
  2084. err := readDb.Model(&models.DialysisSolution{}).Where("patient_id = ? and user_org_id = ? and status = 1 AND mode_id = ?", patientID, orgID, mode_id).Last(&record).Error
  2085. if err != nil {
  2086. if err == gorm.ErrRecordNotFound {
  2087. return nil, nil
  2088. } else {
  2089. return nil, err
  2090. }
  2091. }
  2092. return &record, nil
  2093. }
  2094. // 透析方案
  2095. func MobileGetDialysisSolutionByModeId(orgID int64, patientID int64, mode_id int64) (*models.DialysisSolution, error) {
  2096. var record models.DialysisSolution
  2097. redis := RedisClient()
  2098. defer redis.Close()
  2099. // cur_date := time.Now().Format("2006-01-02")
  2100. key := strconv.FormatInt(orgID, 10) + ":" + strconv.FormatInt(patientID, 10) + ":" + strconv.FormatInt(mode_id, 10) + ":dialysis_solution"
  2101. dialysis_solution_str, _ := redis.Get(key).Result()
  2102. if len(dialysis_solution_str) == 0 { //没有到缓存数据,从数据库中获取数据,进行缓存到redis
  2103. err := readDb.Model(&models.DialysisSolution{}).Where("patient_id = ? and user_org_id = ? and status = 1 AND mode_id = ?", patientID, orgID, mode_id).Last(&record).Error
  2104. if err != nil {
  2105. if err == gorm.ErrRecordNotFound {
  2106. if record.ID <= 0 {
  2107. redis.Set(key, "null", time.Second*60*60*18)
  2108. }
  2109. return nil, nil
  2110. } else {
  2111. return nil, err
  2112. }
  2113. } else {
  2114. if record.ID > 0 {
  2115. //缓存数据
  2116. dialysis_solution_str, err := json.Marshal(record)
  2117. if err == nil {
  2118. redis.Set(key, dialysis_solution_str, time.Second*60*60*18)
  2119. }
  2120. } else {
  2121. redis.Set(key, "null", time.Second*60*60*18)
  2122. }
  2123. return &record, nil
  2124. }
  2125. } else { //缓存数据了数据,将redis缓存的json字符串转为map
  2126. if dialysis_solution_str == "null" {
  2127. return &record, nil
  2128. } else {
  2129. json.Unmarshal([]byte(dialysis_solution_str), &record)
  2130. return &record, nil
  2131. }
  2132. }
  2133. }
  2134. // 透析处方
  2135. func MobileGetDialysisPrescribeByModeId(orgID int64, patientID int64, recordDate int64, mode_id int64) (*models.DialysisPrescription, error) {
  2136. var record models.DialysisPrescription
  2137. redis := RedisClient()
  2138. defer redis.Close()
  2139. // cur_date := time.Now().Format("2006-01-02")
  2140. key := strconv.FormatInt(orgID, 10) + ":" + strconv.FormatInt(patientID, 10) + ":" + strconv.FormatInt(recordDate, 10) + ":" + strconv.FormatInt(mode_id, 10) + ":dialysis_prescribe"
  2141. redis.Set(key, "", time.Second)
  2142. dialysis_prescribe_str, _ := redis.Get(key).Result()
  2143. if len(dialysis_prescribe_str) == 0 { //没有到缓存数据,从数据库中获取数据,进行缓存到redis
  2144. err := readDb.Model(&models.DialysisPrescription{}).Where("patient_id = ? and user_org_id = ? and status = 1 and record_date = ? AND mode_id = ?", patientID, orgID, recordDate, mode_id).First(&record).Error
  2145. if err != nil {
  2146. if err == gorm.ErrRecordNotFound {
  2147. if record.ID <= 0 {
  2148. redis.Set(key, "null", time.Second*60*60*18)
  2149. }
  2150. return nil, nil
  2151. } else {
  2152. return nil, err
  2153. }
  2154. } else {
  2155. if record.ID > 0 {
  2156. //缓存数据
  2157. dialysis_prescribe_str, err := json.Marshal(record)
  2158. if err == nil {
  2159. redis.Set(key, dialysis_prescribe_str, time.Second*60*60*18)
  2160. }
  2161. } else {
  2162. redis.Set(key, "null", time.Second*60*60*18)
  2163. }
  2164. return &record, nil
  2165. }
  2166. } else { //缓存数据了数据,将redis缓存的json字符串转为map
  2167. if dialysis_prescribe_str == "null" {
  2168. return &record, nil
  2169. } else {
  2170. json.Unmarshal([]byte(dialysis_prescribe_str), &record)
  2171. return &record, nil
  2172. }
  2173. }
  2174. }
  2175. func MobileGetDialysisPrescribeByModeIdSix(orgID int64, patientID int64, recordDate int64, mode_id int64) (*models.DialysisPrescription, error) {
  2176. var record models.DialysisPrescription
  2177. err := readDb.Model(&models.DialysisPrescription{}).Where("patient_id = ? and user_org_id = ? and status = 1 and record_date = ? AND mode_id = ?", patientID, orgID, recordDate, mode_id).First(&record).Error
  2178. if err != nil {
  2179. if err == gorm.ErrRecordNotFound {
  2180. return nil, nil
  2181. } else {
  2182. return nil, err
  2183. }
  2184. }
  2185. return &record, nil
  2186. }
  2187. func MobileGetDialysisPrescribeByModeIdOne(orgID int64, patientID int64, recordDate int64) (*models.DialysisPrescription, error) {
  2188. var record models.DialysisPrescription
  2189. err := readDb.Model(&models.DialysisPrescription{}).Where("patient_id = ? and user_org_id = ? and status = 1 and record_date = ?", patientID, orgID, recordDate).First(&record).Error
  2190. if err != nil {
  2191. if err == gorm.ErrRecordNotFound {
  2192. return nil, nil
  2193. } else {
  2194. return nil, err
  2195. }
  2196. }
  2197. return &record, nil
  2198. }
  2199. //func MobileGetDialysisPrescribeByModeIdOne(orgID int64, patientID int64, recordDate int64) (*models.DialysisPrescription, error) {
  2200. // var record models.DialysisPrescription
  2201. // redis := RedisClient()
  2202. // defer redis.Close()
  2203. //
  2204. // // cur_date := time.Now().Format("2006-01-02")
  2205. // key := strconv.FormatInt(orgID, 10) + ":" + strconv.FormatInt(patientID, 10) + ":" + strconv.FormatInt(recordDate, 10) + ":dialysis_prescribe_by_mode"
  2206. // dialysis_prescribe_by_mode_str, _ := redis.Get(key).Result()
  2207. //
  2208. // if len(dialysis_prescribe_by_mode_str) == 0 { //没有到缓存数据,从数据库中获取数据,进行缓存到redis
  2209. // err := readDb.Model(&models.DialysisPrescription{}).Where("patient_id = ? and user_org_id = ? and status = 1 and record_date = ?", patientID, orgID, recordDate).First(&record).Error
  2210. // if err != nil {
  2211. // if err == gorm.ErrRecordNotFound {
  2212. // if record.ID <= 0 {
  2213. // redis.Set(key, "null", time.Second*60*60*18)
  2214. // }
  2215. // return nil, nil
  2216. // } else {
  2217. // return nil, err
  2218. // }
  2219. // } else {
  2220. //
  2221. // if record.ID > 0 {
  2222. // //缓存数据
  2223. // dialysis_prescribe_by_mode_str, err := json.Marshal(record)
  2224. //
  2225. // if err == nil {
  2226. // redis.Set(key, dialysis_prescribe_by_mode_str, time.Second*60*60*18)
  2227. // return nil, err
  2228. // }
  2229. // } else {
  2230. // redis.Set(key, "null", time.Second*60*60*18)
  2231. // return nil, err
  2232. // }
  2233. // return &record, nil
  2234. // }
  2235. // } else { //缓存数据了数据,将redis缓存的json字符串转为map
  2236. // if dialysis_prescribe_by_mode_str == "null" {
  2237. // json.Unmarshal([]byte(dialysis_prescribe_by_mode_str), &record)
  2238. // return &record, nil
  2239. // } else {
  2240. // json.Unmarshal([]byte(dialysis_prescribe_by_mode_str), &record)
  2241. // return &record, nil
  2242. // }
  2243. //
  2244. // }
  2245. //}
  2246. func MobileGetLastDialysisPrescribe(orgID int64, patientID int64) (*models.DialysisPrescription, error) {
  2247. var record models.DialysisPrescription
  2248. err := readDb.Model(&models.DialysisPrescription{}).Where("patient_id = ? and user_org_id = ? and status = 1 ", patientID, orgID).Last(&record).Error
  2249. if err != nil {
  2250. if err == gorm.ErrRecordNotFound {
  2251. return nil, nil
  2252. } else {
  2253. return nil, err
  2254. }
  2255. }
  2256. return &record, nil
  2257. }
  2258. func MobileGetLastDialysisPrescribeByModeIdSix(orgID int64, patientID int64, mode_id int64) (*models.DialysisPrescription, error) {
  2259. var record models.DialysisPrescription
  2260. err := readDb.Model(&models.DialysisPrescription{}).Where("patient_id = ? and user_org_id = ? and status = 1 AND mode_id = ?", patientID, orgID, mode_id).Last(&record).Error
  2261. //if err != nil {
  2262. // if err == gorm.ErrRecordNotFound {
  2263. // return nil, nil
  2264. // } else {
  2265. // return nil, err
  2266. // }
  2267. //}
  2268. return &record, err
  2269. }
  2270. func MobileGetLastDialysisPrescribeByModeIdTen(orgID int64, patientID int64, mode_id int64) (*models.DialysisPrescription, error) {
  2271. var record models.DialysisPrescription
  2272. err := readDb.Model(&models.DialysisPrescription{}).Where("patient_id = ? and user_org_id = ? and status = 1 AND mode_id = ?", patientID, orgID, mode_id).Last(&record).Error
  2273. if err != nil {
  2274. if err == gorm.ErrRecordNotFound {
  2275. return nil, nil
  2276. } else {
  2277. return nil, err
  2278. }
  2279. }
  2280. return &record, err
  2281. }
  2282. func MobileGetLastDialysisPrescribeByModeId(orgID int64, patientID int64, mode_id int64) (*models.DialysisPrescription, error) {
  2283. var record models.DialysisPrescription
  2284. redis := RedisClient()
  2285. defer redis.Close()
  2286. key := strconv.FormatInt(orgID, 10) + ":" + strconv.FormatInt(patientID, 10) + ":" + strconv.FormatInt(mode_id, 10) + ":dialysis_prescribe_by_mode"
  2287. dialysis_prescribe_by_mode_id, _ := redis.Get(key).Result()
  2288. if len(dialysis_prescribe_by_mode_id) == 0 { //没有到缓存数据,从数据库中获取数据,进行缓存到redis
  2289. err := readDb.Model(&models.DialysisPrescription{}).Where("patient_id = ? and user_org_id = ? and status = 1 and mode_id = ?", patientID, orgID, mode_id).Last(&record).Error
  2290. if err != nil {
  2291. if err == gorm.ErrRecordNotFound {
  2292. if record.ID <= 0 {
  2293. redis.Set(key, "null", time.Second*60*60*18)
  2294. }
  2295. return nil, nil
  2296. } else {
  2297. return nil, err
  2298. }
  2299. } else {
  2300. if record.ID > 0 {
  2301. //缓存数据
  2302. dialysis_prescribe_by_mode_str, err := json.Marshal(record)
  2303. if err == nil {
  2304. redis.Set(key, dialysis_prescribe_by_mode_str, time.Second*60*60*18)
  2305. return nil, err
  2306. }
  2307. } else {
  2308. redis.Set(key, "null", time.Second*60*60*18)
  2309. return nil, err
  2310. }
  2311. return &record, nil
  2312. }
  2313. } else { //缓存数据了数据,将redis缓存的json字符串转为map
  2314. if dialysis_prescribe_by_mode_id == "null" {
  2315. return &record, nil
  2316. } else {
  2317. json.Unmarshal([]byte(dialysis_prescribe_by_mode_id), &record)
  2318. return &record, nil
  2319. }
  2320. }
  2321. }
  2322. func MobileGetLastDialysisPrescribeByModeIdOne(orgID int64, patientID int64, mode_id int64) (models.DialysisPrescription, error) {
  2323. var record models.DialysisPrescription
  2324. err := readDb.Model(&models.DialysisPrescription{}).Where("patient_id = ? and user_org_id = ? and status = 1 and mode_id = ?", patientID, orgID, mode_id).Last(&record).Error
  2325. return record, err
  2326. }
  2327. func GetAllAvaildDeviceNumbers(orgID int64, record_date int64, schedule_type int) ([]*DeviceNumberViewModel, error) {
  2328. var vms []*DeviceNumberViewModel = make([]*DeviceNumberViewModel, 0)
  2329. rows, err := readDb.Raw("SELECT n.*, z.name as zone_name, g.name as group_name FROM xt_device_number as n join xt_device_zone as z on z.id = n.zone_id join xt_device_group as g on g.id = n.group_id WHERE (n.org_id = ? AND n.status = 1) AND NOT EXISTS (Select * FROM xt_schedule as s Where s.`schedule_date` = ? AND s.user_org_id = n.org_id AND s.`bed_id` = n.id AND s.`schedule_type` = ? AND s.status = 1 )", orgID, record_date, schedule_type).Rows()
  2330. defer rows.Close()
  2331. if err != nil {
  2332. return nil, err
  2333. }
  2334. for rows.Next() {
  2335. var vm DeviceNumberViewModel
  2336. readDb.ScanRows(rows, &vm)
  2337. vms = append(vms, &vm)
  2338. }
  2339. return vms, nil
  2340. }
  2341. // 获取 maxDate 之前一次的透前评估记录
  2342. func GetLastTimePredialysisEvaluation(orgID int64, patientID int64, maxDate int64) (*models.PredialysisEvaluation, error) {
  2343. var record models.PredialysisEvaluation
  2344. err := readDb.Model(&models.PredialysisEvaluation{}).Where("patient_id = ? and user_org_id = ? and status = 1 and assessment_date < ?", patientID, orgID, maxDate).Order("assessment_date desc").First(&record).Error
  2345. if err != nil {
  2346. if err == gorm.ErrRecordNotFound {
  2347. return nil, nil
  2348. } else {
  2349. return nil, err
  2350. }
  2351. }
  2352. return &record, nil
  2353. }
  2354. func GetLastTimeOrder(orgID int64, patientID int64, maxDate int64) (*models.DialysisOrder, error) {
  2355. var record models.DialysisOrder
  2356. err := readDb.Model(&models.DialysisOrder{}).Where("patient_id = ? and user_org_id = ? and status = 1 and dialysis_date < ?", patientID, orgID, maxDate).Order("dialysis_date desc").First(&record).Error
  2357. if err != nil {
  2358. if err == gorm.ErrRecordNotFound {
  2359. return nil, nil
  2360. } else {
  2361. return nil, err
  2362. }
  2363. }
  2364. return &record, nil
  2365. }
  2366. func GetLastMonitorRecord(orgID int64, patientID int64, beforeDate int64) (*models.MonitoringRecord, error) {
  2367. var record models.MonitoringRecord
  2368. err := readDb.Model(&models.MonitoringRecord{}).Where("patient_id = ? and user_org_id = ? and status = 1 and monitoring_date = ?", patientID, orgID, beforeDate).Order("operate_time desc").First(&record).Error
  2369. if err != nil {
  2370. if err == gorm.ErrRecordNotFound {
  2371. return nil, nil
  2372. } else {
  2373. return nil, err
  2374. }
  2375. }
  2376. return &record, nil
  2377. }
  2378. // 获取 maxDate 之前一次的透后评估记录
  2379. func GetLastTimeAssessmentAfterDislysis(orgID int64, patientID int64, maxDate int64) (*models.AssessmentAfterDislysis, error) {
  2380. var record models.AssessmentAfterDislysis
  2381. err := readDb.Model(&models.AssessmentAfterDislysis{}).Where("patient_id = ? and user_org_id = ? and status = 1 and assessment_date < ?", patientID, orgID, maxDate).Order("assessment_date desc").First(&record).Error
  2382. if err != nil {
  2383. if err == gorm.ErrRecordNotFound {
  2384. return nil, nil
  2385. } else {
  2386. return nil, err
  2387. }
  2388. }
  2389. return &record, nil
  2390. }
  2391. // 透析处方
  2392. func GetDialysisPrescribe(orgID int64, patientID int64, recordDate int64) (*models.DialysisPrescription, error) {
  2393. var record models.DialysisPrescription
  2394. err := readDb.Model(&models.DialysisPrescription{}).Where("patient_id = ? and user_org_id = ? and status = 1 and record_date = ?", patientID, orgID, recordDate).First(&record).Error
  2395. if err != nil {
  2396. if err == gorm.ErrRecordNotFound {
  2397. return nil, nil
  2398. } else {
  2399. return nil, err
  2400. }
  2401. }
  2402. return &record, nil
  2403. }
  2404. // 透析方案
  2405. func GetDialysisSolution(orgID int64, patientID int64, mode_id int64) (models.DialysisSolution, error) {
  2406. var record models.DialysisSolution
  2407. err := readDb.Model(&models.DialysisSolution{}).Where("patient_id = ? and user_org_id = ? and status = 1 AND mode_id = ?", patientID, orgID, mode_id).Last(&record).Error
  2408. return record, err
  2409. }
  2410. func GetDialysisSolutionOne(orgID int64, mode_id int64) (*models.DialysisSolution, error) {
  2411. var record models.DialysisSolution
  2412. err := readDb.Model(&models.DialysisSolution{}).Where("user_org_id = ? and status = 1 AND mode_id = ?", orgID, mode_id).Last(&record).Error
  2413. if err != nil {
  2414. if err == gorm.ErrRecordNotFound {
  2415. return nil, nil
  2416. } else {
  2417. return nil, err
  2418. }
  2419. }
  2420. return &record, nil
  2421. }
  2422. func GetLastDialysisPrescribeByModeId(orgID int64, patientID int64, mode_id int64) (*models.DialysisPrescription, error) {
  2423. var record models.DialysisPrescription
  2424. err := readDb.Model(&models.DialysisPrescription{}).Where("patient_id = ? and user_org_id = ? and status = 1 AND mode_id = ?", patientID, orgID, mode_id).Last(&record).Error
  2425. if err != nil {
  2426. if err == gorm.ErrRecordNotFound {
  2427. return nil, nil
  2428. } else {
  2429. return nil, err
  2430. }
  2431. }
  2432. return &record, nil
  2433. }
  2434. func GetLastDryWeight(orgID int64, patientID int64) (*models.SgjPatientDryweight, error) {
  2435. var record models.SgjPatientDryweight
  2436. err := readDb.Model(&models.SgjPatientDryweight{}).Where("patient_id = ? and user_org_id = ? and status = 1", patientID, orgID).Last(&record).Error
  2437. if err != nil {
  2438. if err == gorm.ErrRecordNotFound {
  2439. return nil, nil
  2440. } else {
  2441. return nil, err
  2442. }
  2443. }
  2444. return &record, nil
  2445. }
  2446. func MobileGetSystemDialysisPrescribeByModeIdSix(orgID int64, mode_id int64) (*models.SystemPrescription, error) {
  2447. var record models.SystemPrescription
  2448. err := readDb.Model(&models.SystemPrescription{}).Where("user_org_id = ? and status = 1 AND mode_id = ?", orgID, mode_id).First(&record).Error
  2449. if err != nil {
  2450. if err == gorm.ErrRecordNotFound {
  2451. return nil, nil
  2452. } else {
  2453. return nil, err
  2454. }
  2455. }
  2456. return &record, nil
  2457. }
  2458. func MobileGetSystemDialysisPrescribeByModeId(orgID int64, mode_id int64) (*models.SystemPrescription, error) {
  2459. var record models.SystemPrescription
  2460. redis := RedisClient()
  2461. defer redis.Close()
  2462. // cur_date := time.Now().Format("2006-01-02")
  2463. key := strconv.FormatInt(orgID, 10) + ":" + strconv.FormatInt(mode_id, 10) + ":system_dialysis_prescribe"
  2464. system_dialysis_prescribe_str, _ := redis.Get(key).Result()
  2465. if len(system_dialysis_prescribe_str) == 0 { //没有到缓存数据,从数据库中获取数据,进行缓存到redis
  2466. err := readDb.Model(&models.SystemPrescription{}).Where("user_org_id = ? and status = 1 AND mode_id = ?", orgID, mode_id).Last(&record).Error
  2467. if err != nil {
  2468. if err == gorm.ErrRecordNotFound {
  2469. if record.ID <= 0 {
  2470. redis.Set(key, "null", time.Second*60*60*18)
  2471. }
  2472. return nil, nil
  2473. } else {
  2474. return nil, err
  2475. }
  2476. } else {
  2477. if record.ID > 0 {
  2478. //缓存数据
  2479. system_dialysis_prescribe_str, err := json.Marshal(record)
  2480. if err == nil {
  2481. redis.Set(key, system_dialysis_prescribe_str, time.Second*60*60*18)
  2482. }
  2483. } else {
  2484. redis.Set(key, "null", time.Second*60*60*18)
  2485. }
  2486. return &record, nil
  2487. }
  2488. } else { //缓存数据了数据,将redis缓存的json字符串转为map
  2489. if system_dialysis_prescribe_str == "null" {
  2490. return &record, nil
  2491. } else {
  2492. json.Unmarshal([]byte(system_dialysis_prescribe_str), &record)
  2493. return &record, nil
  2494. }
  2495. }
  2496. }
  2497. func MobileGetSystemDialysisPrescribeByModeIdOne(orgID int64, mode_id int64) (models.SystemPrescription, error) {
  2498. var record models.SystemPrescription
  2499. err := readDb.Model(&models.SystemPrescription{}).Where("user_org_id = ? and status = 1 AND mode_id = ?", orgID, mode_id).Last(&record).Error
  2500. return record, err
  2501. }
  2502. func GetSystemDialysisPrescribeByModeId(orgID int64, mode_id int64) (*models.SystemPrescription, error) {
  2503. var record models.SystemPrescription
  2504. err := readDb.Model(&models.SystemPrescription{}).Where("user_org_id = ? and status = 1 AND mode_id = ?", orgID, mode_id).Last(&record).Error
  2505. if err != nil {
  2506. if err == gorm.ErrRecordNotFound {
  2507. return nil, nil
  2508. } else {
  2509. return nil, err
  2510. }
  2511. }
  2512. return &record, nil
  2513. }
  2514. func GetDialysisOrderCount(orgID int64, patient_id int64, recordDate int64) (count int64, err error) {
  2515. err = readDb.Model(&models.DialysisOrder{}).Where("dialysis_date <= ? AND status = 1 AND stage = 2 AND user_org_id = ? AND patient_id = ?", recordDate, orgID, patient_id).Count(&count).Error
  2516. return
  2517. }
  2518. func GetDialysisOrderCountOne(orgID int64, patient_id int64, recordDate int64) (count int64, err error) {
  2519. err = readDb.Model(&models.DialysisOrder{}).Where("dialysis_date>=1640966400 and dialysis_date <= ? AND status = 1 AND stage = 2 AND user_org_id = ? AND patient_id = ?", recordDate, orgID, patient_id).Count(&count).Error
  2520. return
  2521. }
  2522. func GetDialysisOrderCountTwo(orgID int64, patient_id int64, recordDate int64) (count int64, err error) {
  2523. err = readDb.Model(&models.DialysisOrder{}).Where("dialysis_date>=1672502400 and dialysis_date <= ? AND status = 1 AND stage = 2 AND user_org_id = ? AND patient_id = ?", recordDate, orgID, patient_id).Count(&count).Error
  2524. return
  2525. }
  2526. func GetFirstDateOfMonth(d time.Time) time.Time {
  2527. d = d.AddDate(0, 0, -d.Day()+1)
  2528. return GetZeroTime(d)
  2529. }
  2530. func GetZeroTime(d time.Time) time.Time {
  2531. return time.Date(d.Year(), d.Month(), d.Day(), 0, 0, 0, 0, d.Location())
  2532. }
  2533. func GetDialysisCountByPatientId(startime int64, endtime int64, patientid int64, orgid int64) (order []*models.BloodDialysisOrderCount, err error) {
  2534. db := XTReadDB().Table("xt_dialysis_order as o")
  2535. err = db.Raw("select count(o.id) as count,o.patient_id from xt_dialysis_order as o left join xt_schedule AS x ON x.patient_id = o.patient_id where o.status = 1 and o.dialysis_date>=? and o.dialysis_date<=? and o.user_org_id = ? and x.schedule_date = o.dialysis_date and x.status = 1 and o.patient_id = ?", startime, endtime, orgid, patientid).Scan(&order).Group("o.patient_id").Error
  2536. return order, err
  2537. }
  2538. func FindConsumablesByDate(orgID int64, patient_id int64, recordDate int64) (consumables []*models.DialysisBeforePrepare, err error) {
  2539. err = readDb.Model(&models.DialysisBeforePrepare{}).Where("user_org_id = ? AND patient_id = ? AND record_date = ? AND status = 1 AND count<>0", orgID, patient_id, recordDate).Find(&consumables).Error
  2540. return
  2541. }
  2542. func FindConsumablesByDateTwo(orgID int64, patient_id int64, recordDate int64) (consumables []*models.DialysisBeforePrepare, err error) {
  2543. err = readDb.Model(&models.DialysisBeforePrepare{}).Where("user_org_id = ? AND patient_id = ? AND record_date = ? AND status = 1 AND count > 0", orgID, patient_id, recordDate).Find(&consumables).Error
  2544. return
  2545. }
  2546. func FindConsumablesByDateThree(orgID int64, patient_id int64, recordDate int64) (consumables []*models.BloodAutomaticReduceDetail, err error) {
  2547. err = readDb.Model(&models.BloodAutomaticReduceDetail{}).Where("org_id = ? AND patient_id = ? AND record_time = ? AND status = 1 AND count > 0", orgID, patient_id, recordDate).Find(&consumables).Error
  2548. return
  2549. }
  2550. //func FindLastConsumables(orgID int64, patient_id int64, recordDate int64) (consumables []*models.DialysisBeforePrepare, err error){
  2551. // err = readDb.Model(&models.DialysisBeforePrepare{}).Where("user_org_id = ? AND patient_id = ? AND record_date = ? AND status = 1", orgID, patient_id,recordDate).Find(&consumables).Error
  2552. // return
  2553. //}
  2554. //
  2555. func GetLastTimeConsumables(orgID int64, patientID int64, maxDate int64) (prepare []*models.DialysisBeforePrepare, err error) {
  2556. err = readDb.Model(&models.DialysisBeforePrepare{}).Where("patient_id = ? and user_org_id = ? and status = 1 and record_date < ?", patientID, orgID, maxDate).Order("record_date desc").Find(&prepare).Error
  2557. return
  2558. }
  2559. type GoodsType struct {
  2560. ID int64 `gorm:"column:id" json:"id"`
  2561. TypeName string `gorm:"column:type_name" json:"type_name"`
  2562. Remark string `gorm:"column:remark" json:"remark"`
  2563. OrgId int64 `gorm:"column:org_id" json:"org_id"`
  2564. Status int64 `gorm:"column:status" json:"status"`
  2565. Type int64 `gorm:"column:type" json:"type"`
  2566. }
  2567. func (GoodsType) TableName() string {
  2568. return "xt_goods_type"
  2569. }
  2570. type VMGoodInfo struct {
  2571. ID int64 `gorm:"column:id" json:"id"`
  2572. SpecificationName string `gorm:"column:specification_name" json:"specification_name"`
  2573. GoodTypeId int64 `gorm:"column:good_type_id" json:"good_type_id"`
  2574. OrgId int64 `gorm:"column:org_id" json:"org_id"`
  2575. GoodName string `gorm:"column:good_name" json:"good_name" form:"good_name"`
  2576. GoodUnit int64 `gorm:"column:good_unit" json:"good_unit" form:"good_unit"`
  2577. Total float64 `gorm:"column:total" json:"total" form:"total"`
  2578. PackingUnit string `gorm:"column:packing_unit" json:"packing_unit" form:"packing_unit"`
  2579. MedicalInsuranceNumber string `gorm:"column:medical_insurance_number" json:"medical_insurance_number" form:"medical_insurance_number"`
  2580. }
  2581. func (VMGoodInfo) TableName() string {
  2582. return "xt_good_information"
  2583. }
  2584. type AutomaticReduceDetail struct {
  2585. ID int64 `gorm:"column:id" json:"id"`
  2586. PatientId int64 `gorm:"column:patient_id" json:"patient_id"`
  2587. Status int64 `gorm:"column:status" json:"status"`
  2588. RecordTime int64 `gorm:"column:record_time" json:"record_time"`
  2589. OrgId int64 `gorm:"column:org_id" json:"org_id"`
  2590. GoodId int64 `gorm:"column:good_id" json:"good_id"`
  2591. GoodTypeId int64 `gorm:"column:good_type_id" json:"good_type_id"`
  2592. VMGoodInfo VMGoodInfo `gorm:"ForeignKey:GoodId;AssociationForeignKey:ID" json:"info"`
  2593. GoodsType GoodsType `gorm:"ForeignKey:GoodTypeId;AssociationForeignKey:ID" json:"type"`
  2594. Count int64 `gorm:"column:count" json:"count"`
  2595. }
  2596. func (AutomaticReduceDetail) TableName() string {
  2597. return "xt_automatic_reduce_detail"
  2598. }
  2599. type DialysisBeforePrepare struct {
  2600. ID int64 `gorm:"column:id" json:"id" form:"id"`
  2601. UserOrgId int64 `gorm:"column:user_org_id" json:"user_org_id" form:"user_org_id"`
  2602. PatientId int64 `gorm:"column:patient_id" json:"patient_id" form:"patient_id"`
  2603. RecordDate int64 `gorm:"column:record_date" json:"record_date" form:"record_date"`
  2604. GoodId int64 `gorm:"column:good_id" json:"good_id" form:"good_id"`
  2605. GoodTypeId int64 `gorm:"column:good_type_id" json:"good_type_id" form:"good_type_id"`
  2606. Count int64 `gorm:"column:count" json:"count" form:"count"`
  2607. Ctime int64 `gorm:"column:ctime" json:"ctime" form:"ctime"`
  2608. Mtime int64 `gorm:"column:mtime" json:"mtime" form:"mtime"`
  2609. Creater int64 `gorm:"column:creater" json:"creater" form:"creater"`
  2610. Modifier int64 `gorm:"column:modifier" json:"modifier" form:"modifier"`
  2611. VMGoodInfo VMGoodInfo `gorm:"ForeignKey:GoodId;AssociationForeignKey:ID" json:"info"`
  2612. GoodsType GoodsType `gorm:"ForeignKey:GoodTypeId;AssociationForeignKey:ID" json:"type"`
  2613. }
  2614. func (DialysisBeforePrepare) TableName() string {
  2615. return "dialysis_before_prepare"
  2616. }
  2617. type MDialysisGoodsVM struct {
  2618. ID int64 `gorm:"column:id" json:"id"`
  2619. UserOrgId int64 `gorm:"column:user_org_id" json:"user_org_id"`
  2620. PartitionId int64 `gorm:"column:partition_id" json:"partition_id"`
  2621. BedId int64 `gorm:"column:bed_id" json:"bed_id"`
  2622. PatientId int64 `gorm:"column:patient_id" json:"patient_id"`
  2623. ScheduleDate int64 `gorm:"column:schedule_date" json:"schedule_date"`
  2624. ScheduleType int64 `gorm:"column:schedule_type" json:"schedule_type"`
  2625. ScheduleWeek int64 `gorm:"column:schedule_week" json:"schedule_week"`
  2626. ModeId int64 `gorm:"column:mode_id" json:"mode_id"`
  2627. Status int64 `gorm:"column:status" json:"status"`
  2628. DeviceNumber *MDeviceNumberVM `gorm:"ForeignKey:BedId" json:"device_number"`
  2629. SchedualPatient *MSchedualPatientVMList `gorm:"ForeignKey:PatientId" json:"patient"`
  2630. AutomaticReduceDetail []*AutomaticReduceDetail `gorm:"ForeignKey:PatientId;AssociationForeignKey:PatientId" json:"good_user"`
  2631. LastAutomaticReduceDetail []*AutomaticReduceDetail `gorm:"-" json:"last_good_user"`
  2632. DialysisBeforePrepare []*DialysisBeforePrepare `gorm:"ForeignKey:PatientId,ScheduleDate;AssociationForeignKey:PatientId,RecordDate" json:"good_user_detail"`
  2633. LastDialysisBeforePrepare []*DialysisBeforePrepare `gorm:"-" json:"last_good_user_detail"`
  2634. Project []*models.HisPrescriptionProject `gorm:"-" json:"project"`
  2635. //WarehouseOutInfo []*models.WarehouseOutInfoSeven `gorm:"ForeignKey:PatientId,ScheduleDate;AssociationForeignKey:PatientId,SysRecordTime" json:"ware_house_out_info"`
  2636. }
  2637. func (MDialysisGoodsVM) TableName() string {
  2638. return "xt_schedule"
  2639. }
  2640. type VMWarehouseOutInfo struct {
  2641. ID int64 `gorm:"column:id" json:"id"`
  2642. WarehouseOutId int64 `gorm:"column:warehouse_out_id" json:"warehouse_out_id"`
  2643. GoodId int64 `gorm:"column:good_id" json:"good_id"`
  2644. GoodTypeId int64 `gorm:"column:good_type_id" json:"good_type_id"`
  2645. Count int64 `gorm:"column:count" json:"count"`
  2646. Price float64 `gorm:"column:price" json:"price"`
  2647. TotalPrice float64 `gorm:"column:total_price" json:"total_price"`
  2648. Status int64 `gorm:"column:status" json:"status"`
  2649. OrgId int64 `gorm:"column:org_id" json:"org_id"`
  2650. WarehouseOutOrderNumber string `gorm:"column:warehouse_out_order_number" json:"warehouse_out_order_number"`
  2651. GoodInfo VMGoodInfo `gorm:"ForeignKey:GoodId;AssociationForeignKey:ID" json:"good_info"`
  2652. GoodsType GoodsType `gorm:"ForeignKey:GoodTypeId;AssociationForeignKey:ID" json:"good_type"`
  2653. IsSys int64 `gorm:"column:is_sys" json:"is_sys"`
  2654. SysRecordTime int64 `gorm:"column:sys_record_time" json:"sys_record_time"`
  2655. Mtime int64 `gorm:"column:mtime" json:"mtime"`
  2656. Ctime int64 `gorm:"column:ctime" json:"ctime"`
  2657. }
  2658. func (VMWarehouseOutInfo) TableName() string {
  2659. return "xt_warehouse_out_info"
  2660. }
  2661. type DialysisGoodsDate struct {
  2662. RecordDate int64
  2663. }
  2664. type DialysisGoodsDetailDate struct {
  2665. RecordTime int64
  2666. }
  2667. func MobileGetDialysisGoods(orgID int64, scheduleDate int64, schedule_type int64, partition_id int64, page int, limit int, patient_id int64, keywords string, end_time int64) ([]*MDialysisGoodsVM, error, int64) {
  2668. var vms []*MDialysisGoodsVM
  2669. var total int64
  2670. db := readDb.
  2671. Table("xt_schedule as sch").
  2672. Preload("SchedualPatient", "status = 1 AND user_org_id = ?", orgID).
  2673. Preload("DeviceNumber", "status = 1 AND org_id = ?", orgID).
  2674. Preload("DeviceNumber.Zone", "status = 1 AND org_id = ?", orgID).
  2675. Preload("DialysisBeforePrepare", func(db *gorm.DB) *gorm.DB {
  2676. return db.Preload("VMGoodInfo", "status = 1 AND org_id = ? and find_in_set('停用',good_status) = 0", orgID).Preload("GoodsType", "status = 1 AND (org_id = ? OR org_id = 0) ", orgID).Where("status = 1 AND user_org_id = ? AND record_date = ? AND count > 0 ", orgID, scheduleDate)
  2677. }).
  2678. Preload("AutomaticReduceDetail", func(db *gorm.DB) *gorm.DB {
  2679. return db.Preload("VMGoodInfo", "status = 1 AND org_id = ? and find_in_set('停用',good_status) = 0", orgID).Preload("GoodsType", "status = 1 AND (org_id = ? OR org_id = 0) ", orgID).Where("status = 1 AND org_id = ? AND count > 0 AND record_time >= ? AND record_time <= ? ", orgID, scheduleDate, end_time).Group("patient_id,good_id")
  2680. }).Where("sch.status = 1 AND sch.user_org_id = ?", orgID)
  2681. if scheduleDate != 0 {
  2682. db = db.Where("schedule_date = ?", scheduleDate)
  2683. }
  2684. if schedule_type != 0 {
  2685. db = db.Where("schedule_type = ?", schedule_type)
  2686. }
  2687. if partition_id != 0 {
  2688. db = db.Where("partition_id = ?", partition_id)
  2689. }
  2690. if patient_id != 0 {
  2691. db = db.Where("patient_id = ?", patient_id)
  2692. }
  2693. err := db.Find(&vms).Error
  2694. return vms, err, total
  2695. }
  2696. func GetLastDialysisGoods(patient_id int64, orgID int64, record_time int64) (goodUser []*AutomaticReduceDetail, err error) {
  2697. var Id []*DialysisGoodsDetailDate
  2698. err = readDb.Model(&AutomaticReduceDetail{}).Where("patient_id = ? AND org_id = ? AND status=1 AND record_time < ? AND count > 0", patient_id, orgID, record_time).Select("record_time").Group("record_time").Order("record_time asc").Scan(&Id).Error
  2699. if len(Id) > 0 {
  2700. err = readDb.Model(&AutomaticReduceDetail{}).Where("patient_id = ? AND org_id = ? AND status=1 AND record_time = ? AND count > 0", patient_id, orgID, Id[len(Id)-1].RecordTime).Preload("VMGoodInfo", "status = 1 AND org_id = ? and find_in_set('停用',good_status) = 0", orgID).Preload("GoodsType", "status = 1 AND (org_id = ? OR org_id = 0) ", orgID).Find(&goodUser).Error
  2701. }
  2702. return
  2703. }
  2704. func GetLastDialysisBeforePrepare(patient_id int64, orgID int64, record_time int64) (goodUser []*DialysisBeforePrepare, err error) {
  2705. var Id []*DialysisGoodsDate
  2706. err = readDb.Model(&models.DialysisBeforePrepare{}).Where("patient_id = ? AND user_org_id = ? AND status=1 AND record_date < ? AND count > 0", patient_id, orgID, record_time).Select("record_date").Group("record_date").Order("record_date asc").Scan(&Id).Error
  2707. if len(Id) > 0 {
  2708. err = readDb.Model(&models.DialysisBeforePrepare{}).Where("patient_id = ? AND user_org_id = ? AND status=1 AND record_date = ? AND count > 0", patient_id, orgID, Id[len(Id)-1].RecordDate).Preload("VMGoodInfo", "status = 1 AND org_id = ? and find_in_set('停用',good_status) = 0", orgID).Preload("GoodsType", "status = 1 AND (org_id = ? OR org_id = 0) ", orgID).Find(&goodUser).Error
  2709. }
  2710. return
  2711. }
  2712. func GetAllWarehouseOutSumList(patient_id int64, orgID int64, record_time int64) (info []*models.WarehouseOutInfoSeven, err error) {
  2713. err = XTReadDB().Where("patient_id = ? and org_id = ? and sys_record_time = ? and status = 1", patient_id, orgID, record_time).Find(&info).Error
  2714. return info, err
  2715. }
  2716. func MobileGetGoodsStatistics(orgID int64, start_time int64, end_time int64) (list []*models.StockInfo, err error) {
  2717. db := readDb.Model(&models.StockInfo{})
  2718. db = db.Where("xt_good_information.org_id = ? AND xt_good_information.status = 1", orgID)
  2719. db = db.Joins("JOIN xt_warehouse_out_info AS info ON info.good_id=xt_good_information.id AND info.status = 1 AND info.org_id = ?", orgID).Group("xt_good_information.id")
  2720. db = db.Preload("QueryWarehouseOutInfo", func(db *gorm.DB) *gorm.DB {
  2721. return db.Where("xt_warehouse_out_info.org_id = ? AND xt_warehouse_out_info.status = 1 AND xt_warehouse_out_info.sys_record_time >= ? AND xt_warehouse_out_info.sys_record_time <= ?", orgID, start_time, end_time)
  2722. })
  2723. db = db.Preload("GoodsType", "org_id = ? AND status = 1", orgID)
  2724. err = db.Order("ctime desc").Find(&list).Error
  2725. return
  2726. }
  2727. func PCGetDialysisGoods(orgID int64, scheduleDate int64, schedule_type int64, partition_id int64, page int, limit int, patient_id int64, keywords string, end_time int64, good_type int64, ids []int64) ([]*MDialysisGoodsVM, error, int64) {
  2728. var vms []*MDialysisGoodsVM
  2729. var total int64
  2730. db := readDb.
  2731. Model(&models.Schedule{}).
  2732. Preload("SchedualPatient", "status = 1 AND user_org_id = ?", orgID).
  2733. Preload("DeviceNumber", "status = 1 AND org_id = ?", orgID).
  2734. Preload("DeviceNumber.Zone", "status = 1 AND org_id = ?", orgID).
  2735. Preload("DialysisBeforePrepare", func(db *gorm.DB) *gorm.DB {
  2736. return db.Preload("VMGoodInfo", "status = 1 AND org_id = ? ", orgID).Preload("GoodsType", "status = 1 AND (org_id = ? OR org_id = 0) ", orgID).Where("status = 1 AND user_org_id = ? AND record_date = ? AND count > 0 ", orgID, scheduleDate)
  2737. }).Preload("AutomaticReduceDetail", func(db *gorm.DB) *gorm.DB {
  2738. return db.Preload("VMGoodInfo", "status = 1 AND org_id = ? ", orgID).Preload("GoodsType", "status = 1 AND (org_id = ? OR org_id = 0) ", orgID).Where("status = 1 AND org_id = ? AND record_time >= ? AND record_time <=? AND count > 0", orgID, scheduleDate, end_time)
  2739. }).Where("xt_schedule.status = 1 AND xt_schedule.user_org_id = ?", orgID)
  2740. if scheduleDate != 0 {
  2741. db = db.Where("schedule_date = ?", scheduleDate)
  2742. }
  2743. if patient_id != 0 {
  2744. db = db.Where("patient_id = ?", patient_id)
  2745. }
  2746. if len(keywords) != 0 {
  2747. keywords = "%" + keywords + "%"
  2748. db = db.Joins("JOIN xt_patients AS patient ON patient.id=xt_schedule.patient_id AND patient.status = 1 AND patient.user_org_id = ? AND patient.name Like ?", orgID, keywords)
  2749. if schedule_type != 0 {
  2750. db = db.Where("schedule_type = ?", schedule_type)
  2751. }
  2752. if partition_id != 0 {
  2753. db = db.Where("partition_id = ?", partition_id)
  2754. }
  2755. if good_type == 1 {
  2756. db = db.Where("patient_id in(?)", ids)
  2757. }
  2758. if good_type == 2 {
  2759. if len(ids) > 0 {
  2760. db = db.Where("patient_id not in(?)", ids)
  2761. }
  2762. }
  2763. } else {
  2764. if schedule_type != 0 {
  2765. db = db.Where("schedule_type = ?", schedule_type)
  2766. }
  2767. if partition_id != 0 {
  2768. db = db.Where("partition_id = ?", partition_id)
  2769. }
  2770. if good_type == 1 {
  2771. db = db.Where("patient_id in(?)", ids)
  2772. }
  2773. if good_type == 2 {
  2774. if len(ids) > 0 {
  2775. db = db.Where("patient_id not in(?)", ids)
  2776. }
  2777. }
  2778. db = db.Count(&total)
  2779. offset := (page - 1) * limit
  2780. db = db.Offset(offset).Limit(limit)
  2781. }
  2782. err := db.Find(&vms).Error
  2783. return vms, err, total
  2784. }
  2785. func GetLastDialysisGoodsTwo(patient_id int64, orgID int64, record_time int64) (goodUser []*AutomaticReduceDetail, err error) {
  2786. var Id []*DialysisGoodsDetailDate
  2787. err = readDb.Model(&AutomaticReduceDetail{}).Where("patient_id = ? AND org_id = ? AND status=1 AND record_time < ? AND count > 0", patient_id, orgID, record_time).Select("record_time").Group("record_time").Order("record_time asc").Scan(&Id).Error
  2788. if len(Id) > 0 {
  2789. err = readDb.Model(&AutomaticReduceDetail{}).Where("patient_id = ? AND org_id = ? AND status=1 AND record_time = ? AND count > 0", patient_id, orgID, Id[len(Id)-1].RecordTime).Preload("VMGoodInfo", "status = 1 AND org_id = ? ", orgID).Preload("GoodsType", "status = 1 AND (org_id = ? OR org_id = 0) ", orgID).Find(&goodUser).Error
  2790. }
  2791. return
  2792. }
  2793. func GetLastDialysisBeforePrepareTwo(patient_id int64, orgID int64, record_time int64) (goodUser []*DialysisBeforePrepare, err error) {
  2794. var Id []*DialysisGoodsDate
  2795. err = readDb.Model(&models.DialysisBeforePrepare{}).Where("patient_id = ? AND user_org_id = ? AND status=1 AND record_date < ? AND count > 0", patient_id, orgID, record_time).Select("record_date").Group("record_date").Order("record_date asc").Scan(&Id).Error
  2796. if len(Id) > 0 {
  2797. err = readDb.Model(&models.DialysisBeforePrepare{}).Where("patient_id = ? AND user_org_id = ? AND status=1 AND record_date = ? AND count > 0", patient_id, orgID, Id[len(Id)-1].RecordDate).Preload("VMGoodInfo", "status = 1 AND org_id = ? ", orgID).Preload("GoodsType", "status = 1 AND (org_id = ? OR org_id = 0) ", orgID).Find(&goodUser).Error
  2798. }
  2799. return
  2800. }
  2801. func GetAssessmentBefor(orgid int64, patientid int64, recorddate int64) (*models.PredialysisEvaluation, error) {
  2802. evaluation := models.PredialysisEvaluation{}
  2803. err := XTReadDB().Model(&evaluation).Where("user_org_id = ? and patient_id = ? and assessment_date = ? and status = 1", orgid, patientid, recorddate).Find(&evaluation).Error
  2804. if err == gorm.ErrRecordNotFound {
  2805. return nil, err
  2806. }
  2807. if err != nil {
  2808. return nil, err
  2809. }
  2810. return &evaluation, nil
  2811. }
  2812. func GetAssessmentBeforThrity(orgid int64, patientid int64, recorddate int64) (models.PredialysisEvaluation, error) {
  2813. evaluation := models.PredialysisEvaluation{}
  2814. err := XTReadDB().Model(&evaluation).Where("user_org_id = ? and patient_id = ? and assessment_date = ? and status = 1", orgid, patientid, recorddate).Find(&evaluation).Error
  2815. return evaluation, err
  2816. }
  2817. func GetAllHisDoctorAdvice(orgid int64, patientid int64, recorddate int64) (his []*models.HisDoctorAdviceInfo, err error) {
  2818. redis := RedisClient()
  2819. defer redis.Close()
  2820. key := strconv.FormatInt(orgid, 10) + ":" + strconv.FormatInt(patientid, 10) + ":" + strconv.FormatInt(recorddate, 10) + ":his_doctor_advice"
  2821. his_doctor_advice_str, _ := redis.Get(key).Result()
  2822. redis.Set(key, "", time.Second)
  2823. if len(his_doctor_advice_str) == 0 { //没有到缓存数据,从数据库中获取数据,进行缓存到redis
  2824. err = readDb.Model(&models.HisDoctorAdviceInfo{}).Where("patient_id = ? AND user_org_id = ? AND status=1 AND record_date = ?", patientid, orgid, recorddate).Order("created_time asc").Find(&his).Error
  2825. if err != nil {
  2826. if err == gorm.ErrRecordNotFound {
  2827. if len(his) <= 0 {
  2828. redis.Set(key, "null", time.Second*60*60*18)
  2829. }
  2830. return his, nil
  2831. } else {
  2832. return his, err
  2833. }
  2834. } else {
  2835. if len(his) > 0 {
  2836. //缓存数据
  2837. his_doctor_advice_str, err := json.Marshal(his)
  2838. if err == nil {
  2839. redis.Set(key, his_doctor_advice_str, time.Second*60*60*18)
  2840. }
  2841. } else {
  2842. redis.Set(key, "null", time.Second*60*60*18)
  2843. }
  2844. return his, nil
  2845. }
  2846. } else { //缓存数据了数据,将redis缓存的json字符串转为map
  2847. json.Unmarshal([]byte(his_doctor_advice_str), &his)
  2848. return his, nil
  2849. }
  2850. }
  2851. func GetLastDialysisPrescriptionByPatientId(orgid int64, patientid int64, recorddate int64) (*models.DialysisPrescription, error) {
  2852. prescription := models.DialysisPrescription{}
  2853. err := readDb.Model(&models.DialysisPrescription{}).Where("user_org_id = ? and patient_id = ? and record_date = ? and status = 1", orgid, patientid, recorddate).Find(&prescription).Error
  2854. if err == gorm.ErrRecordNotFound {
  2855. return nil, err
  2856. }
  2857. if err != nil {
  2858. return nil, err
  2859. }
  2860. return &prescription, nil
  2861. }
  2862. func GetLastDialysisPrescriptionByPatientIdTwo(orgid int64, patientid int64, recorddate int64) (models.DialysisPrescription, error) {
  2863. prescription := models.DialysisPrescription{}
  2864. err := readDb.Model(&models.DialysisPrescription{}).Where("user_org_id = ? and patient_id = ? and record_date = ? and status = 1", orgid, patientid, recorddate).Find(&prescription).Error
  2865. return prescription, err
  2866. }
  2867. type HisMScheduleDoctorAdviceVM struct {
  2868. ID int64 `gorm:"column:id" json:"id"`
  2869. UserOrgId int64 `gorm:"column:user_org_id" json:"user_org_id"`
  2870. PartitionId int64 `gorm:"column:partition_id" json:"partition_id"`
  2871. BedId int64 `gorm:"column:bed_id" json:"bed_id"`
  2872. PatientId int64 `gorm:"column:patient_id" json:"patient_id"`
  2873. ScheduleDate int64 `gorm:"column:schedule_date" json:"schedule_date"`
  2874. ScheduleType int64 `gorm:"column:schedule_type" json:"schedule_type"`
  2875. ModeId int64 `gorm:"column:mode_id" json:"mode_id"`
  2876. Status int64 `gorm:"column:status" json:"status"`
  2877. DialysisOrder *MDialysisOrderVM `gorm:"ForeignKey:PatientId;AssociationForeignKey:PatientId" json:"dialysis_order"`
  2878. SchedualPatient *MSchedualPatientVM `gorm:"ForeignKey:PatientId;AssociationForeignKey:ID" json:"patient"`
  2879. DeviceNumber *MDeviceNumberVM `gorm:"ForeignKey:BedId" json:"device_number"`
  2880. Prescription *models.DialysisPrescriptionList `gorm:"ForeignKey:PatientId;AssociationForeignKey:PatientId" json:"prescription"`
  2881. HisDoctorAdviceInfo []*models.HisDoctorAdviceInfo `gorm:"ForeignKey:PatientId;AssociationForeignKey:PatientId" json:"doctor_advice"`
  2882. HisPrescriptionProject []*models.HisPrescriptionProject `gorm:"ForeignKey:PatientId;AssociationForeignKey:PatientId" json:"project"`
  2883. DialysisAssesmentBefor *models.DialysisAssesmentBefor `gorm:"ForeignKey:PatientId;AssociationForeignKey:PatientId" json:"dialysisassesmentbefor"`
  2884. }
  2885. func (HisMScheduleDoctorAdviceVM) TableName() string {
  2886. return "xt_schedule"
  2887. }
  2888. type HisMScheduleDoctorAdviceVMOne struct {
  2889. ID int64 `gorm:"column:id" json:"id"`
  2890. UserOrgId int64 `gorm:"column:user_org_id" json:"user_org_id"`
  2891. PartitionId int64 `gorm:"column:partition_id" json:"partition_id"`
  2892. BedId int64 `gorm:"column:bed_id" json:"bed_id"`
  2893. PatientId int64 `gorm:"column:patient_id" json:"patient_id"`
  2894. ScheduleDate int64 `gorm:"column:schedule_date" json:"schedule_date"`
  2895. ScheduleType int64 `gorm:"column:schedule_type" json:"schedule_type"`
  2896. ModeId int64 `gorm:"column:mode_id" json:"mode_id"`
  2897. Status int64 `gorm:"column:status" json:"status"`
  2898. DialysisOrder *MDialysisOrderVM `gorm:"ForeignKey:PatientId;AssociationForeignKey:PatientId" json:"dialysis_order"`
  2899. SchedualPatient *MSchedualPatientVM `gorm:"ForeignKey:PatientId;AssociationForeignKey:ID" json:"patient"`
  2900. DeviceNumber *MDeviceNumberVM `gorm:"ForeignKey:BedId" json:"device_number"`
  2901. Prescription *models.DialysisPrescriptionList `gorm:"ForeignKey:PatientId;AssociationForeignKey:PatientId" json:"prescription"`
  2902. HisDoctorAdviceInfo []*models.HisDoctorAdviceInfo `gorm:"ForeignKey:PatientId;AssociationForeignKey:PatientId" json:"doctor_advice"`
  2903. HisPrescriptionProject []*models.HisPrescriptionProject `gorm:"ForeignKey:PatientId;AssociationForeignKey:PatientId" json:"project"`
  2904. DialysisAssesmentBefor *models.DialysisAssesmentBefor `gorm:"ForeignKey:PatientId;AssociationForeignKey:PatientId" json:"dialysisassesmentbefor"`
  2905. }
  2906. func (HisMScheduleDoctorAdviceVMOne) TableName() string {
  2907. return "xt_schedule"
  2908. }
  2909. type HisMScheduleProjectVM struct {
  2910. ID int64 `gorm:"column:id" json:"id"`
  2911. UserOrgId int64 `gorm:"column:user_org_id" json:"user_org_id"`
  2912. PartitionId int64 `gorm:"column:partition_id" json:"partition_id"`
  2913. BedId int64 `gorm:"column:bed_id" json:"bed_id"`
  2914. PatientId int64 `gorm:"column:patient_id" json:"patient_id"`
  2915. ScheduleDate int64 `gorm:"column:schedule_date" json:"schedule_date"`
  2916. ScheduleType int64 `gorm:"column:schedule_type" json:"schedule_type"`
  2917. ModeId int64 `gorm:"column:mode_id" json:"mode_id"`
  2918. Status int64 `gorm:"column:status" json:"status"`
  2919. DialysisOrder *MDialysisOrderVM `gorm:"ForeignKey:PatientId;AssociationForeignKey:PatientId" json:"dialysis_order"`
  2920. SchedualPatient *MSchedualPatientVM `gorm:"ForeignKey:PatientId;AssociationForeignKey:ID" json:"patient"`
  2921. DeviceNumber *MDeviceNumberVM `gorm:"ForeignKey:BedId" json:"device_number"`
  2922. Prescription *models.DialysisPrescriptionTwenty `gorm:"ForeignKey:PatientId;AssociationForeignKey:PatientId" json:"prescription"`
  2923. HisPrescriptionProject []*models.HisPrescriptionProject `gorm:"ForeignKey:PatientId;AssociationForeignKey:PatientId" json:"project"`
  2924. HisPrescriptionTeamProject []*models.HisPrescriptionProject `gorm:"ForeignKey:PatientId;AssociationForeignKey:PatientId" json:"team_project"`
  2925. }
  2926. func (HisMScheduleProjectVM) TableName() string {
  2927. return "xt_schedule"
  2928. }
  2929. func GetHisDoctorConfig(orgid int64) (models.XtHisConfig, error) {
  2930. config := models.XtHisConfig{}
  2931. err := XTReadDB().Model(&config).Where("user_org_id = ? and status =1", orgid).Find(&config).Error
  2932. return config, err
  2933. }
  2934. func GetHisDoctorPatientById(orgid int64, patientid int64, recordtime int64) (advice []*models.HisDoctorAdviceInfo, err error) {
  2935. db := XTReadDB().Table("his_doctor_advice_info as x").Where("x.status = 1")
  2936. if orgid > 0 {
  2937. db = db.Where("x.user_org_id = ?", orgid)
  2938. }
  2939. if patientid > 0 {
  2940. db = db.Where("x.patient_id =?", patientid)
  2941. }
  2942. if recordtime > 0 {
  2943. db = db.Where("x.advice_date = ?", recordtime)
  2944. }
  2945. err = db.Select("x.id,x.user_org_id,x.patient_id,x.his_patient_id,x.advice_type,x.advice_date,x.start_time,x.advice_name,x.advice_desc,x.reminder_date,x.single_dose,x.single_dose_unit,x.single_dose_unit,x.prescribing_number_unit,x.prescribing_number,x.delivery_way,x.execution_frequency,x.advice_doctor,x.status,x.advice_affirm,x.remark,x.stop_time,x.stop_reason,x.stop_doctor,x.stop_state,x.parent_id,x.execution_time,x.execution_staff,x.checker,x.record_date,x.dialysis_order_id,x.check_time,x.check_state,x.drug_spec,x.drug_spec_unit,x.groupno,x.remind_type,x.frequency_type,x.day_count,x.week_day,x.template_id,x.modifier,x.drug_id,x.price,x.prescription_id,x.med_list_codg,x.feedetl_sn,x.day").Find(&advice).Error
  2946. return advice, err
  2947. }
  2948. func GetDoctorAdviceCount(startime int64, endtime int64, deliveway string, orgid int64) (advice []*models.BloodDoctorAdvice, err error) {
  2949. db := XTReadDB().Table("xt_doctor_advice as x").Where("x.status = 1 and x.advice_type =2")
  2950. if startime > 0 {
  2951. db = db.Where("x.advice_date >= ?", startime)
  2952. }
  2953. if endtime > 0 {
  2954. db = db.Where("x.advice_date<=?", endtime)
  2955. }
  2956. if orgid > 0 {
  2957. db = db.Where("x.user_org_id = ?", orgid)
  2958. }
  2959. if len(deliveway) > 0 {
  2960. db = db.Where("x.delivery_way = ?", deliveway)
  2961. }
  2962. err = db.Select("x.advice_name,x.advice_desc,x.delivery_way,count(x.id) as total").Group("x.advice_name,x.advice_desc").Scan(&advice).Error
  2963. return advice, err
  2964. }
  2965. func GetHisDoctorAdviceCount(startime int64, endtime int64, deliveway string, orgid int64) (advice []*models.BloodDoctorAdvice, err error) {
  2966. db := XTReadDB().Table("his_doctor_advice_info as x").Where("x.status = 1 and x.advice_type =2")
  2967. if startime > 0 {
  2968. db = db.Where("x.advice_date >= ?", startime)
  2969. }
  2970. if endtime > 0 {
  2971. db = db.Where("x.advice_date<=?", endtime)
  2972. }
  2973. if orgid > 0 {
  2974. db = db.Where("x.user_org_id = ?", orgid)
  2975. }
  2976. if len(deliveway) > 0 {
  2977. db = db.Where("x.delivery_way = ?", deliveway)
  2978. }
  2979. err = db.Select("x.advice_name,x.advice_desc,x.delivery_way,count(x.id) as total").Group("x.advice_name,x.advice_desc").Scan(&advice).Error
  2980. return advice, err
  2981. }
  2982. func MobileGetScheduleDoctorAdvicesSix(orgID int64, scheduleDate int64, adviceType int, patientType int, adminUserId int64, deliverWay string, scheduleType int64, partitonType int64, patient_id int64, execution_state int64) ([]*MScheduleDoctorAdviceVM, error) {
  2983. var vms []*MScheduleDoctorAdviceVM
  2984. adviceWhere := ""
  2985. adviceCondition := []interface{}{}
  2986. if adviceType == 0 {
  2987. if patientType == 0 {
  2988. if patient_id > 0 {
  2989. if execution_state > 0 {
  2990. adviceWhere = "status = 1 AND user_org_id = ? AND record_date = ? AND (advice_type = 3 OR advice_type = 1) and patient_id = ? and execution_state= ?"
  2991. adviceCondition = append(adviceCondition, adviceWhere, orgID, scheduleDate, patient_id, execution_state)
  2992. } else {
  2993. adviceWhere = "status = 1 AND user_org_id = ? AND record_date = ? AND (advice_type = 3 OR advice_type = 1) and patient_id = ?"
  2994. adviceCondition = append(adviceCondition, adviceWhere, orgID, scheduleDate, patient_id)
  2995. }
  2996. } else {
  2997. if execution_state > 0 {
  2998. adviceWhere = "status = 1 AND user_org_id = ? AND record_date = ? AND (advice_type = 3 OR advice_type = 1) and execution_state= ?"
  2999. adviceCondition = append(adviceCondition, adviceWhere, orgID, scheduleDate, execution_state)
  3000. } else {
  3001. adviceWhere = "status = 1 AND user_org_id = ? AND record_date = ? AND (advice_type = 3 OR advice_type = 1)"
  3002. adviceCondition = append(adviceCondition, adviceWhere, orgID, scheduleDate)
  3003. }
  3004. }
  3005. } else if patientType == 1 {
  3006. if patient_id > 0 {
  3007. if execution_state > 0 {
  3008. adviceWhere = "status = 1 AND user_org_id = ? AND record_date = ? AND advice_doctor = ? AND(advice_type = 3 OR advice_type = 1) and patient_id = ? and execution_state= ?"
  3009. adviceCondition = append(adviceCondition, adviceWhere, orgID, scheduleDate, adminUserId, patient_id, execution_state)
  3010. } else {
  3011. adviceWhere = "status = 1 AND user_org_id = ? AND record_date = ? AND advice_doctor = ? AND(advice_type = 3 OR advice_type = 1) and patient_id = ?"
  3012. adviceCondition = append(adviceCondition, adviceWhere, orgID, scheduleDate, adminUserId, patient_id)
  3013. }
  3014. } else {
  3015. if execution_state > 0 {
  3016. adviceWhere = "status = 1 AND user_org_id = ? AND record_date = ? AND advice_doctor = ? AND(advice_type = 3 OR advice_type = 1) and execution_state = ?"
  3017. adviceCondition = append(adviceCondition, adviceWhere, orgID, scheduleDate, adminUserId, execution_state)
  3018. } else {
  3019. adviceWhere = "status = 1 AND user_org_id = ? AND record_date = ? AND advice_doctor = ? AND(advice_type = 3 OR advice_type = 1)"
  3020. adviceCondition = append(adviceCondition, adviceWhere, orgID, scheduleDate, adminUserId)
  3021. }
  3022. }
  3023. } else if patientType == 2 {
  3024. if patient_id > 0 {
  3025. if execution_state > 0 {
  3026. adviceWhere = "status = 1 AND user_org_id = ? AND record_date = ? AND execution_staff = 0 AND(advice_type = 3 OR advice_type = 1 and patient_id = ?) and execution_state = ?"
  3027. adviceCondition = append(adviceCondition, adviceWhere, orgID, scheduleDate, patient_id, execution_state)
  3028. } else {
  3029. adviceWhere = "status = 1 AND user_org_id = ? AND record_date = ? AND execution_staff = 0 AND(advice_type = 3 OR advice_type = 1 and patient_id = ?)"
  3030. adviceCondition = append(adviceCondition, adviceWhere, orgID, scheduleDate, patient_id)
  3031. }
  3032. } else {
  3033. if execution_state > 0 {
  3034. adviceWhere = "status = 1 AND user_org_id = ? AND record_date = ? AND execution_staff = 0 AND(advice_type = 3 OR advice_type = 1) and execution_state = ?"
  3035. adviceCondition = append(adviceCondition, adviceWhere, orgID, scheduleDate, execution_state)
  3036. } else {
  3037. adviceWhere = "status = 1 AND user_org_id = ? AND record_date = ? AND execution_staff = 0 AND(advice_type = 3 OR advice_type = 1)"
  3038. adviceCondition = append(adviceCondition, adviceWhere, orgID, scheduleDate)
  3039. }
  3040. }
  3041. }
  3042. } else if adviceType == 1 {
  3043. if patientType == 0 {
  3044. if patient_id > 0 {
  3045. if execution_state > 0 {
  3046. adviceWhere = "status = 1 AND user_org_id = ? AND advice_type = 1 AND record_date = ? and patient_id = ? and execution_state = ?"
  3047. adviceCondition = append(adviceCondition, adviceWhere, orgID, scheduleDate, patient_id, execution_state)
  3048. } else {
  3049. adviceWhere = "status = 1 AND user_org_id = ? AND advice_type = 1 AND record_date = ? and patient_id = ? "
  3050. adviceCondition = append(adviceCondition, adviceWhere, orgID, scheduleDate, patient_id)
  3051. }
  3052. } else {
  3053. if execution_state > 0 {
  3054. adviceWhere = "status = 1 AND user_org_id = ? AND advice_type = 1 AND record_date = ? and execution_state = ?"
  3055. adviceCondition = append(adviceCondition, adviceWhere, orgID, scheduleDate, execution_state)
  3056. } else {
  3057. adviceWhere = "status = 1 AND user_org_id = ? AND advice_type = 1 AND record_date = ? "
  3058. adviceCondition = append(adviceCondition, adviceWhere, orgID, scheduleDate)
  3059. }
  3060. }
  3061. } else if patientType == 1 {
  3062. if patient_id > 0 {
  3063. if execution_state > 0 {
  3064. adviceWhere = "status = 1 AND user_org_id = ? AND advice_type = 1 AND record_date = ? AND advice_doctor = ? and patient_id = ? and execution_state = ?"
  3065. adviceCondition = append(adviceCondition, adviceWhere, orgID, scheduleDate, adminUserId, patient_id, execution_state)
  3066. } else {
  3067. adviceWhere = "status = 1 AND user_org_id = ? AND advice_type = 1 AND record_date = ? AND advice_doctor = ? and patient_id = ?"
  3068. adviceCondition = append(adviceCondition, adviceWhere, orgID, scheduleDate, adminUserId, patient_id)
  3069. }
  3070. } else {
  3071. if execution_state > 0 {
  3072. adviceWhere = "status = 1 AND user_org_id = ? AND advice_type = 1 AND record_date = ? AND advice_doctor = ? and execution_state=?"
  3073. adviceCondition = append(adviceCondition, adviceWhere, orgID, scheduleDate, adminUserId, execution_state)
  3074. } else {
  3075. adviceWhere = "status = 1 AND user_org_id = ? AND advice_type = 1 AND record_date = ? AND advice_doctor = ? "
  3076. adviceCondition = append(adviceCondition, adviceWhere, orgID, scheduleDate, adminUserId)
  3077. }
  3078. }
  3079. } else if patientType == 2 {
  3080. if patient_id > 0 {
  3081. if execution_state > 0 {
  3082. adviceWhere = "status = 1 AND user_org_id = ? AND advice_type = 1 AND record_date = ? AND execution_staff = 0 and patient_id = ? and execution_state = ?"
  3083. adviceCondition = append(adviceCondition, adviceWhere, orgID, scheduleDate, patient_id, execution_state)
  3084. } else {
  3085. adviceWhere = "status = 1 AND user_org_id = ? AND advice_type = 1 AND record_date = ? AND execution_staff = 0 and patient_id = ?"
  3086. adviceCondition = append(adviceCondition, adviceWhere, orgID, scheduleDate, patient_id)
  3087. }
  3088. } else {
  3089. if execution_state > 0 {
  3090. adviceWhere = "status = 1 AND user_org_id = ? AND advice_type = 1 AND record_date = ? AND execution_staff = 0 and execution_state = ?"
  3091. adviceCondition = append(adviceCondition, adviceWhere, orgID, scheduleDate, execution_state)
  3092. } else {
  3093. adviceWhere = "status = 1 AND user_org_id = ? AND advice_type = 1 AND record_date = ? AND execution_staff = 0"
  3094. adviceCondition = append(adviceCondition, adviceWhere, orgID, scheduleDate)
  3095. }
  3096. }
  3097. }
  3098. } else if adviceType == 3 {
  3099. if patientType == 0 {
  3100. if patient_id > 0 {
  3101. if execution_state > 0 {
  3102. adviceWhere = "status = 1 AND user_org_id = ? AND advice_type = 3 AND record_date = ? and patient_id = ? and execution_state = ?"
  3103. adviceCondition = append(adviceCondition, adviceWhere, orgID, scheduleDate, patient_id, execution_state)
  3104. } else {
  3105. adviceWhere = "status = 1 AND user_org_id = ? AND advice_type = 3 AND record_date = ? and patient_id = ? "
  3106. adviceCondition = append(adviceCondition, adviceWhere, orgID, scheduleDate, patient_id)
  3107. }
  3108. } else {
  3109. if execution_state > 0 {
  3110. adviceWhere = "status = 1 AND user_org_id = ? AND advice_type = 3 AND record_date = ? and execution_state =? "
  3111. adviceCondition = append(adviceCondition, adviceWhere, orgID, scheduleDate, execution_state)
  3112. } else {
  3113. adviceWhere = "status = 1 AND user_org_id = ? AND advice_type = 3 AND record_date = ? "
  3114. adviceCondition = append(adviceCondition, adviceWhere, orgID, scheduleDate)
  3115. }
  3116. }
  3117. } else if patientType == 1 {
  3118. if patient_id > 0 {
  3119. if execution_state > 0 {
  3120. adviceWhere = "status = 1 AND user_org_id = ? AND record_date = ? AND advice_type = 3 AND advice_doctor = ? and patient_id = ? and execution_state = ?"
  3121. adviceCondition = append(adviceCondition, adviceWhere, orgID, scheduleDate, adminUserId, patient_id, execution_state)
  3122. } else {
  3123. adviceWhere = "status = 1 AND user_org_id = ? AND record_date = ? AND advice_type = 3 AND advice_doctor = ? and patient_id = ?"
  3124. adviceCondition = append(adviceCondition, adviceWhere, orgID, scheduleDate, adminUserId, patient_id)
  3125. }
  3126. } else {
  3127. if execution_state > 0 {
  3128. adviceWhere = "status = 1 AND user_org_id = ? AND record_date = ? AND advice_type = 3 AND advice_doctor = ? and execution_state =? "
  3129. adviceCondition = append(adviceCondition, adviceWhere, orgID, scheduleDate, adminUserId, execution_state)
  3130. } else {
  3131. adviceWhere = "status = 1 AND user_org_id = ? AND record_date = ? AND advice_type = 3 AND advice_doctor = ? "
  3132. adviceCondition = append(adviceCondition, adviceWhere, orgID, scheduleDate, adminUserId)
  3133. }
  3134. }
  3135. } else if patientType == 2 {
  3136. if patient_id > 0 {
  3137. if execution_state > 0 {
  3138. adviceWhere = "status = 1 AND user_org_id = ? AND record_date = ? AND advice_type = 3 AND execution_staff = 0 and patient_id = ? and execution_state = ?"
  3139. adviceCondition = append(adviceCondition, adviceWhere, orgID, scheduleDate, patient_id, execution_state)
  3140. } else {
  3141. adviceWhere = "status = 1 AND user_org_id = ? AND record_date = ? AND advice_type = 3 AND execution_staff = 0 and patient_id = ?"
  3142. adviceCondition = append(adviceCondition, adviceWhere, orgID, scheduleDate, patient_id)
  3143. }
  3144. } else {
  3145. if execution_state > 0 {
  3146. adviceWhere = "status = 1 AND user_org_id = ? AND record_date = ? AND advice_type = 3 AND execution_staff = 0 and execution_state= ?"
  3147. adviceCondition = append(adviceCondition, adviceWhere, orgID, scheduleDate, execution_state)
  3148. } else {
  3149. adviceWhere = "status = 1 AND user_org_id = ? AND record_date = ? AND advice_type = 3 AND execution_staff = 0"
  3150. adviceCondition = append(adviceCondition, adviceWhere, orgID, scheduleDate)
  3151. }
  3152. }
  3153. }
  3154. } else if adviceType == 2 && len(deliverWay) > 0 {
  3155. if patientType == 0 {
  3156. if patient_id > 0 {
  3157. if execution_state > 0 {
  3158. adviceWhere = "status = 1 AND user_org_id = ? AND advice_type = 2 AND record_date = ? and delivery_way = ? and patient_id = ? and execution_state = ?"
  3159. adviceCondition = append(adviceCondition, adviceWhere, orgID, scheduleDate, deliverWay, patient_id, execution_state)
  3160. } else {
  3161. adviceWhere = "status = 1 AND user_org_id = ? AND advice_type = 2 AND record_date = ? and delivery_way = ? and patient_id = ?"
  3162. adviceCondition = append(adviceCondition, adviceWhere, orgID, scheduleDate, deliverWay, patient_id)
  3163. }
  3164. } else {
  3165. if execution_state > 0 {
  3166. adviceWhere = "status = 1 AND user_org_id = ? AND advice_type = 2 AND record_date = ? and delivery_way = ? and execution_state = ?"
  3167. adviceCondition = append(adviceCondition, adviceWhere, orgID, scheduleDate, deliverWay, execution_state)
  3168. } else {
  3169. adviceWhere = "status = 1 AND user_org_id = ? AND advice_type = 2 AND record_date = ? and delivery_way = ?"
  3170. adviceCondition = append(adviceCondition, adviceWhere, orgID, scheduleDate, deliverWay)
  3171. }
  3172. }
  3173. } else if patientType == 1 {
  3174. if patient_id > 0 {
  3175. if execution_state > 0 {
  3176. adviceWhere = "status = 1 AND user_org_id = ? AND record_date = ? AND advice_type = 2 AND advice_doctor = ? and delivery_way = ? and patient_id = ? and execution_state = ?"
  3177. adviceCondition = append(adviceCondition, adviceWhere, orgID, scheduleDate, adminUserId, deliverWay, patient_id, execution_state)
  3178. } else {
  3179. adviceWhere = "status = 1 AND user_org_id = ? AND record_date = ? AND advice_type = 2 AND advice_doctor = ? and delivery_way = ? and patient_id = ?"
  3180. adviceCondition = append(adviceCondition, adviceWhere, orgID, scheduleDate, adminUserId, deliverWay, patient_id)
  3181. }
  3182. } else {
  3183. if execution_state > 0 {
  3184. adviceWhere = "status = 1 AND user_org_id = ? AND record_date = ? AND advice_type = 2 AND advice_doctor = ? and delivery_way = ? and execution_state = ?"
  3185. adviceCondition = append(adviceCondition, adviceWhere, orgID, scheduleDate, adminUserId, deliverWay, execution_state)
  3186. } else {
  3187. adviceWhere = "status = 1 AND user_org_id = ? AND record_date = ? AND advice_type = 2 AND advice_doctor = ? and delivery_way = ? "
  3188. adviceCondition = append(adviceCondition, adviceWhere, orgID, scheduleDate, adminUserId, deliverWay)
  3189. }
  3190. }
  3191. } else if patientType == 2 {
  3192. if patient_id > 0 {
  3193. if execution_state > 0 {
  3194. adviceWhere = "status = 1 AND user_org_id = ? AND record_date = ? AND advice_type = 2 AND execution_staff = 0 and delivery_way = ? and patient_id = ? and execution_state = ?"
  3195. adviceCondition = append(adviceCondition, adviceWhere, orgID, scheduleDate, deliverWay, patient_id, execution_state)
  3196. } else {
  3197. adviceWhere = "status = 1 AND user_org_id = ? AND record_date = ? AND advice_type = 2 AND execution_staff = 0 and delivery_way = ? and patient_id = ?"
  3198. adviceCondition = append(adviceCondition, adviceWhere, orgID, scheduleDate, deliverWay, patient_id)
  3199. }
  3200. } else {
  3201. if execution_state > 0 {
  3202. adviceWhere = "status = 1 AND user_org_id = ? AND record_date = ? AND advice_type = 2 AND execution_staff = 0 and delivery_way = ? and execution_state = ?"
  3203. adviceCondition = append(adviceCondition, adviceWhere, orgID, scheduleDate, deliverWay, execution_state)
  3204. } else {
  3205. adviceWhere = "status = 1 AND user_org_id = ? AND record_date = ? AND advice_type = 2 AND execution_staff = 0 and delivery_way = ?"
  3206. adviceCondition = append(adviceCondition, adviceWhere, orgID, scheduleDate, deliverWay)
  3207. }
  3208. }
  3209. }
  3210. } else if adviceType == 2 && len(deliverWay) <= 0 {
  3211. if patientType == 0 {
  3212. if patient_id > 0 {
  3213. if execution_state > 0 {
  3214. adviceWhere = "status = 1 AND user_org_id = ? AND advice_type = 2 AND record_date = ? and patient_id = ? and execution_state = ?"
  3215. adviceCondition = append(adviceCondition, adviceWhere, orgID, scheduleDate, patient_id, execution_state)
  3216. } else {
  3217. adviceWhere = "status = 1 AND user_org_id = ? AND advice_type = 2 AND record_date = ? and patient_id = ?"
  3218. adviceCondition = append(adviceCondition, adviceWhere, orgID, scheduleDate, patient_id)
  3219. }
  3220. } else {
  3221. if execution_state > 0 {
  3222. adviceWhere = "status = 1 AND user_org_id = ? AND advice_type = 2 AND record_date = ? and execution_state = ?"
  3223. adviceCondition = append(adviceCondition, adviceWhere, orgID, scheduleDate, execution_state)
  3224. } else {
  3225. adviceWhere = "status = 1 AND user_org_id = ? AND advice_type = 2 AND record_date = ?"
  3226. adviceCondition = append(adviceCondition, adviceWhere, orgID, scheduleDate)
  3227. }
  3228. }
  3229. } else if patientType == 1 {
  3230. if patient_id > 0 {
  3231. if execution_state > 0 {
  3232. adviceWhere = "status = 1 AND user_org_id = ? AND record_date = ? AND advice_type = 2 AND advice_doctor = ? and patient_id = ? and execution_state = ?"
  3233. adviceCondition = append(adviceCondition, adviceWhere, orgID, scheduleDate, adminUserId, patient_id, execution_state)
  3234. } else {
  3235. adviceWhere = "status = 1 AND user_org_id = ? AND record_date = ? AND advice_type = 2 AND advice_doctor = ? and patient_id = ?"
  3236. adviceCondition = append(adviceCondition, adviceWhere, orgID, scheduleDate, adminUserId, patient_id)
  3237. }
  3238. } else {
  3239. if execution_state > 0 {
  3240. adviceWhere = "status = 1 AND user_org_id = ? AND record_date = ? AND advice_type = 2 AND advice_doctor = ? and execution_state = ?"
  3241. adviceCondition = append(adviceCondition, adviceWhere, orgID, scheduleDate, adminUserId, execution_state)
  3242. } else {
  3243. adviceWhere = "status = 1 AND user_org_id = ? AND record_date = ? AND advice_type = 2 AND advice_doctor = ?"
  3244. adviceCondition = append(adviceCondition, adviceWhere, orgID, scheduleDate, adminUserId)
  3245. }
  3246. }
  3247. } else if patientType == 2 {
  3248. if patient_id > 0 {
  3249. if execution_state > 0 {
  3250. adviceWhere = "status = 1 AND user_org_id = ? AND record_date = ? AND advice_type = 2 AND execution_staff = 0 and patient_id = ? and execution_state = ?"
  3251. adviceCondition = append(adviceCondition, adviceWhere, orgID, scheduleDate, patient_id, execution_state)
  3252. } else {
  3253. adviceWhere = "status = 1 AND user_org_id = ? AND record_date = ? AND advice_type = 2 AND execution_staff = 0 and patient_id = ?"
  3254. adviceCondition = append(adviceCondition, adviceWhere, orgID, scheduleDate, patient_id)
  3255. }
  3256. } else {
  3257. if execution_state > 0 {
  3258. adviceWhere = "status = 1 AND user_org_id = ? AND record_date = ? AND advice_type = 2 AND execution_staff = 0 and execution_state = ?"
  3259. adviceCondition = append(adviceCondition, adviceWhere, orgID, scheduleDate, execution_state)
  3260. } else {
  3261. adviceWhere = "status = 1 AND user_org_id = ? AND record_date = ? AND advice_type = 2 AND execution_staff = 0"
  3262. adviceCondition = append(adviceCondition, adviceWhere, orgID, scheduleDate)
  3263. }
  3264. }
  3265. }
  3266. }
  3267. db := readDb.Table("xt_schedule")
  3268. if scheduleType > 0 {
  3269. db = db.Where("schedule_type = ?", scheduleType)
  3270. }
  3271. if partitonType > 0 {
  3272. db = db.Where("partition_id = ?", partitonType)
  3273. }
  3274. db = db.Preload("SchedualPatient", "status = 1 AND user_org_id = ?", orgID).
  3275. Preload("DialysisOrder", func(db *gorm.DB) *gorm.DB {
  3276. return db.Where("status = 1 AND user_org_id = ?", orgID).Preload("DeviceNumber", "status = 1 AND org_id= ?", orgID)
  3277. }).
  3278. Preload("DeviceNumber", "status = 1 AND org_id = ?", orgID).
  3279. Preload("DeviceNumber.Zone", "status = 1 AND org_id = ?", orgID).
  3280. Preload("Prescription", "status = 1 AND user_org_id = ? AND record_date = ?", orgID, scheduleDate).
  3281. Preload("DialysisAssesmentBefor", "status =1 AND user_org_id = ? and assessment_date =?", orgID, scheduleDate).
  3282. Preload("DoctorAdvices", adviceCondition...).
  3283. Where("status = 1 AND user_org_id = ?", orgID)
  3284. if scheduleDate != 0 {
  3285. db = db.Where("schedule_date = ?", scheduleDate)
  3286. }
  3287. err := db.Find(&vms).Error
  3288. return vms, err
  3289. }
  3290. func GetHisDoctorAdvicesOne(orgID int64, scheduleDate int64, deliverWay string, scheduleType int64, partitionType int64, patient_id int64, execution_state int64, cost_type int64) ([]*HisMScheduleDoctorAdviceVM, error) {
  3291. var vms []*HisMScheduleDoctorAdviceVM
  3292. if len(deliverWay) > 0 {
  3293. db := readDb.Table("xt_schedule")
  3294. if scheduleType > 0 {
  3295. db = db.Where("schedule_type = ?", scheduleType)
  3296. }
  3297. if partitionType > 0 {
  3298. db = db.Where("partition_id = ?", partitionType)
  3299. }
  3300. if patient_id > 0 {
  3301. if execution_state > 0 {
  3302. if cost_type > 0 {
  3303. db = db.Preload("SchedualPatient", "status = 1 AND user_org_id = ? and id =?", orgID, patient_id).
  3304. Preload("DeviceNumber", "status = 1 AND org_id = ?", orgID).
  3305. Preload("DeviceNumber.Zone", "status = 1 AND org_id = ?", orgID).
  3306. Preload("Prescription", "status = 1 AND user_org_id = ? AND record_date = ? and patient_id = ?", orgID, scheduleDate, patient_id).
  3307. Preload("HisDoctorAdviceInfo", "status = 1 AND user_org_id = ? AND advice_date = ? and delivery_way = ? and patient_id = ? and execution_state = ? and is_settle", orgID, scheduleDate, deliverWay, patient_id, execution_state, cost_type).
  3308. Preload("DialysisOrder", func(db *gorm.DB) *gorm.DB {
  3309. return db.Where("status = 1 AND user_org_id = ? and patient_id = ?", orgID, patient_id).Preload("DeviceNumber", "status = 1 AND org_id= ?", orgID)
  3310. }).Preload("DialysisAssesmentBefor", "status =1 AND user_org_id = ? and assessment_date =?", orgID, scheduleDate).
  3311. Where("status = 1 AND user_org_id = ?", orgID)
  3312. if scheduleDate != 0 {
  3313. db = db.Where("schedule_date = ?", scheduleDate)
  3314. }
  3315. err = db.Find(&vms).Error
  3316. } else {
  3317. db = db.Preload("SchedualPatient", "status = 1 AND user_org_id = ? and id =?", orgID, patient_id).
  3318. Preload("DeviceNumber", "status = 1 AND org_id = ?", orgID).
  3319. Preload("DeviceNumber.Zone", "status = 1 AND org_id = ?", orgID).
  3320. Preload("Prescription", "status = 1 AND user_org_id = ? AND record_date = ? and patient_id = ?", orgID, scheduleDate, patient_id).
  3321. Preload("HisDoctorAdviceInfo", "status = 1 AND user_org_id = ? AND advice_date = ? and delivery_way = ? and patient_id = ? and execution_state = ?", orgID, scheduleDate, deliverWay, patient_id, execution_state).
  3322. Preload("DialysisOrder", func(db *gorm.DB) *gorm.DB {
  3323. return db.Where("status = 1 AND user_org_id = ? and patient_id = ?", orgID, patient_id).Preload("DeviceNumber", "status = 1 AND org_id= ?", orgID)
  3324. }).Preload("DialysisAssesmentBefor", "status =1 AND user_org_id = ? and assessment_date =?", orgID, scheduleDate).
  3325. Where("status = 1 AND user_org_id = ?", orgID)
  3326. if scheduleDate != 0 {
  3327. db = db.Where("schedule_date = ?", scheduleDate)
  3328. }
  3329. err = db.Find(&vms).Error
  3330. }
  3331. } else {
  3332. if cost_type > 0 {
  3333. db = db.Preload("SchedualPatient", "status = 1 AND user_org_id = ? and id =?", orgID, patient_id).
  3334. Preload("DeviceNumber", "status = 1 AND org_id = ?", orgID).
  3335. Preload("DeviceNumber.Zone", "status = 1 AND org_id = ?", orgID).
  3336. Preload("Prescription", "status = 1 AND user_org_id = ? AND record_date = ? and patient_id = ?", orgID, scheduleDate, patient_id).
  3337. Preload("HisDoctorAdviceInfo", "status = 1 AND user_org_id = ? AND advice_date = ? and delivery_way = ? and patient_id = ? and is_settle", orgID, scheduleDate, deliverWay, patient_id, cost_type).
  3338. Preload("DialysisOrder", func(db *gorm.DB) *gorm.DB {
  3339. return db.Where("status = 1 AND user_org_id = ? and patient_id = ?", orgID, patient_id).Preload("DeviceNumber", "status = 1 AND org_id= ?", orgID)
  3340. }).Preload("DialysisAssesmentBefor", "status =1 AND user_org_id = ? and assessment_date =?", orgID, scheduleDate).
  3341. Where("status = 1 AND user_org_id = ?", orgID)
  3342. if scheduleDate != 0 {
  3343. db = db.Where("schedule_date = ?", scheduleDate)
  3344. }
  3345. err = db.Find(&vms).Error
  3346. } else {
  3347. db = db.Preload("SchedualPatient", "status = 1 AND user_org_id = ? and id =?", orgID, patient_id).
  3348. Preload("DeviceNumber", "status = 1 AND org_id = ?", orgID).
  3349. Preload("DeviceNumber.Zone", "status = 1 AND org_id = ?", orgID).
  3350. Preload("Prescription", "status = 1 AND user_org_id = ? AND record_date = ? and patient_id = ?", orgID, scheduleDate, patient_id).
  3351. Preload("HisDoctorAdviceInfo", "status = 1 AND user_org_id = ? AND advice_date = ? and delivery_way = ? and patient_id = ?", orgID, scheduleDate, deliverWay, patient_id).
  3352. Preload("DialysisOrder", func(db *gorm.DB) *gorm.DB {
  3353. return db.Where("status = 1 AND user_org_id = ? and patient_id = ?", orgID, patient_id).Preload("DeviceNumber", "status = 1 AND org_id= ?", orgID)
  3354. }).Preload("DialysisAssesmentBefor", "status =1 AND user_org_id = ? and assessment_date =?", orgID, scheduleDate).
  3355. Where("status = 1 AND user_org_id = ?", orgID)
  3356. if scheduleDate != 0 {
  3357. db = db.Where("schedule_date = ?", scheduleDate)
  3358. }
  3359. err = db.Find(&vms).Error
  3360. }
  3361. }
  3362. } else {
  3363. if execution_state > 0 {
  3364. if cost_type > 0 {
  3365. db = db.Preload("SchedualPatient", "status = 1 AND user_org_id = ?", orgID).
  3366. Preload("DeviceNumber", "status = 1 AND org_id = ?", orgID).
  3367. Preload("DeviceNumber.Zone", "status = 1 AND org_id = ?", orgID).
  3368. Preload("Prescription", "status = 1 AND user_org_id = ? AND record_date = ?", orgID, scheduleDate).
  3369. Preload("HisDoctorAdviceInfo", "status = 1 AND user_org_id = ? AND advice_date = ? and delivery_way = ? and execution_state = ? and is_settle = ?", orgID, scheduleDate, deliverWay, execution_state, cost_type).
  3370. Preload("DialysisOrder", func(db *gorm.DB) *gorm.DB {
  3371. return db.Where("status = 1 AND user_org_id = ?", orgID).Preload("DeviceNumber", "status = 1 AND org_id= ?", orgID)
  3372. }).Preload("DialysisAssesmentBefor", "status =1 AND user_org_id = ? and assessment_date =?", orgID, scheduleDate).
  3373. Where("status = 1 AND user_org_id = ?", orgID)
  3374. if scheduleDate != 0 {
  3375. db = db.Where("schedule_date = ?", scheduleDate)
  3376. }
  3377. err = db.Find(&vms).Error
  3378. } else {
  3379. db = db.Preload("SchedualPatient", "status = 1 AND user_org_id = ?", orgID).
  3380. Preload("DeviceNumber", "status = 1 AND org_id = ?", orgID).
  3381. Preload("DeviceNumber.Zone", "status = 1 AND org_id = ?", orgID).
  3382. Preload("Prescription", "status = 1 AND user_org_id = ? AND record_date = ?", orgID, scheduleDate).
  3383. Preload("HisDoctorAdviceInfo", "status = 1 AND user_org_id = ? AND advice_date = ? and delivery_way = ? and execution_state = ?", orgID, scheduleDate, deliverWay, execution_state).
  3384. Preload("DialysisOrder", func(db *gorm.DB) *gorm.DB {
  3385. return db.Where("status = 1 AND user_org_id = ?", orgID).Preload("DeviceNumber", "status = 1 AND org_id= ?", orgID)
  3386. }).Preload("DialysisAssesmentBefor", "status =1 AND user_org_id = ? and assessment_date =?", orgID, scheduleDate).
  3387. Where("status = 1 AND user_org_id = ?", orgID)
  3388. if scheduleDate != 0 {
  3389. db = db.Where("schedule_date = ?", scheduleDate)
  3390. }
  3391. err = db.Find(&vms).Error
  3392. }
  3393. } else {
  3394. if cost_type > 0 {
  3395. db = db.Preload("SchedualPatient", "status = 1 AND user_org_id = ?", orgID).
  3396. Preload("DeviceNumber", "status = 1 AND org_id = ?", orgID).
  3397. Preload("DeviceNumber.Zone", "status = 1 AND org_id = ?", orgID).
  3398. Preload("Prescription", "status = 1 AND user_org_id = ? AND record_date = ?", orgID, scheduleDate).
  3399. Preload("HisDoctorAdviceInfo", "status = 1 AND user_org_id = ? AND advice_date = ? and delivery_way = ? and is_settle = ?", orgID, scheduleDate, deliverWay, cost_type).
  3400. Preload("DialysisOrder", func(db *gorm.DB) *gorm.DB {
  3401. return db.Where("status = 1 AND user_org_id = ?", orgID).Preload("DeviceNumber", "status = 1 AND org_id= ?", orgID)
  3402. }).Preload("DialysisAssesmentBefor", "status =1 AND user_org_id = ? and assessment_date =?", orgID, scheduleDate).
  3403. Where("status = 1 AND user_org_id = ?", orgID)
  3404. if scheduleDate != 0 {
  3405. db = db.Where("schedule_date = ?", scheduleDate)
  3406. }
  3407. err = db.Find(&vms).Error
  3408. } else {
  3409. db = db.Preload("SchedualPatient", "status = 1 AND user_org_id = ?", orgID).
  3410. Preload("DeviceNumber", "status = 1 AND org_id = ?", orgID).
  3411. Preload("DeviceNumber.Zone", "status = 1 AND org_id = ?", orgID).
  3412. Preload("Prescription", "status = 1 AND user_org_id = ? AND record_date = ?", orgID, scheduleDate).
  3413. Preload("HisDoctorAdviceInfo", "status = 1 AND user_org_id = ? AND advice_date = ? and delivery_way = ?", orgID, scheduleDate, deliverWay).
  3414. Preload("DialysisOrder", func(db *gorm.DB) *gorm.DB {
  3415. return db.Where("status = 1 AND user_org_id = ?", orgID).Preload("DeviceNumber", "status = 1 AND org_id= ?", orgID)
  3416. }).Preload("DialysisAssesmentBefor", "status =1 AND user_org_id = ? and assessment_date =?", orgID, scheduleDate).
  3417. Where("status = 1 AND user_org_id = ?", orgID)
  3418. if scheduleDate != 0 {
  3419. db = db.Where("schedule_date = ?", scheduleDate)
  3420. }
  3421. err = db.Find(&vms).Error
  3422. }
  3423. }
  3424. }
  3425. } else {
  3426. db := readDb.Table("xt_schedule")
  3427. if scheduleType > 0 {
  3428. db = db.Where("schedule_type = ?", scheduleType)
  3429. }
  3430. if partitionType > 0 {
  3431. db = db.Where("partition_id = ?", partitionType)
  3432. }
  3433. if patient_id > 0 {
  3434. if execution_state > 0 {
  3435. if cost_type > 0 {
  3436. db = db.Preload("SchedualPatient", "status = 1 AND user_org_id = ? and id = ?", orgID, patient_id).
  3437. Preload("DeviceNumber", "status = 1 AND org_id = ?", orgID).
  3438. Preload("DeviceNumber.Zone", "status = 1 AND org_id = ?", orgID).
  3439. Preload("Prescription", "status = 1 AND user_org_id = ? AND record_date = ? and patient_id = ?", orgID, scheduleDate, patient_id).
  3440. Preload("HisDoctorAdviceInfo", "status = 1 AND user_org_id = ? AND advice_date = ? and patient_id = ? and execution_state = ? and is_settle = ?", orgID, scheduleDate, patient_id, execution_state, cost_type).
  3441. Preload("DialysisOrder", func(db *gorm.DB) *gorm.DB {
  3442. return db.Where("status = 1 AND user_org_id = ? and patient_id = ?", orgID, patient_id).Preload("DeviceNumber", "status = 1 AND org_id= ?", orgID)
  3443. }).Preload("DialysisAssesmentBefor", "status =1 AND user_org_id = ? and assessment_date =?", orgID, scheduleDate).
  3444. Where("status = 1 AND user_org_id = ?", orgID)
  3445. if scheduleDate != 0 {
  3446. db = db.Where("schedule_date = ?", scheduleDate)
  3447. }
  3448. err = db.Find(&vms).Error
  3449. } else {
  3450. db = db.Preload("SchedualPatient", "status = 1 AND user_org_id = ? and id = ?", orgID, patient_id).
  3451. Preload("DeviceNumber", "status = 1 AND org_id = ?", orgID).
  3452. Preload("DeviceNumber.Zone", "status = 1 AND org_id = ?", orgID).
  3453. Preload("Prescription", "status = 1 AND user_org_id = ? AND record_date = ? and patient_id = ?", orgID, scheduleDate, patient_id).
  3454. Preload("HisDoctorAdviceInfo", "status = 1 AND user_org_id = ? AND advice_date = ? and patient_id = ? and execution_state = ?", orgID, scheduleDate, patient_id, execution_state).
  3455. Preload("DialysisOrder", func(db *gorm.DB) *gorm.DB {
  3456. return db.Where("status = 1 AND user_org_id = ? and patient_id = ?", orgID, patient_id).Preload("DeviceNumber", "status = 1 AND org_id= ?", orgID)
  3457. }).Preload("DialysisAssesmentBefor", "status =1 AND user_org_id = ? and assessment_date =?", orgID, scheduleDate).
  3458. Where("status = 1 AND user_org_id = ?", orgID)
  3459. if scheduleDate != 0 {
  3460. db = db.Where("schedule_date = ?", scheduleDate)
  3461. }
  3462. err = db.Find(&vms).Error
  3463. }
  3464. } else {
  3465. if cost_type > 0 {
  3466. db = db.Preload("SchedualPatient", "status = 1 AND user_org_id = ? and id = ?", orgID, patient_id).
  3467. Preload("DeviceNumber", "status = 1 AND org_id = ?", orgID).
  3468. Preload("DeviceNumber.Zone", "status = 1 AND org_id = ?", orgID).
  3469. Preload("Prescription", "status = 1 AND user_org_id = ? AND record_date = ? and patient_id = ?", orgID, scheduleDate, patient_id).
  3470. Preload("HisDoctorAdviceInfo", "status = 1 AND user_org_id = ? AND advice_date = ? and patient_id = ? and is_settle = ?", orgID, scheduleDate, patient_id, cost_type).
  3471. Preload("DialysisOrder", func(db *gorm.DB) *gorm.DB {
  3472. return db.Where("status = 1 AND user_org_id = ? and patient_id = ?", orgID, patient_id).Preload("DeviceNumber", "status = 1 AND org_id= ?", orgID)
  3473. }).Preload("DialysisAssesmentBefor", "status =1 AND user_org_id = ? and assessment_date =?", orgID, scheduleDate).
  3474. Where("status = 1 AND user_org_id = ?", orgID)
  3475. if scheduleDate != 0 {
  3476. db = db.Where("schedule_date = ?", scheduleDate)
  3477. }
  3478. err = db.Find(&vms).Error
  3479. } else {
  3480. db = db.Preload("SchedualPatient", "status = 1 AND user_org_id = ? and id = ?", orgID, patient_id).
  3481. Preload("DeviceNumber", "status = 1 AND org_id = ?", orgID).
  3482. Preload("DeviceNumber.Zone", "status = 1 AND org_id = ?", orgID).
  3483. Preload("Prescription", "status = 1 AND user_org_id = ? AND record_date = ? and patient_id = ?", orgID, scheduleDate, patient_id).
  3484. Preload("HisDoctorAdviceInfo", "status = 1 AND user_org_id = ? AND advice_date = ? and patient_id = ?", orgID, scheduleDate, patient_id).
  3485. Preload("DialysisOrder", func(db *gorm.DB) *gorm.DB {
  3486. return db.Where("status = 1 AND user_org_id = ? and patient_id = ?", orgID, patient_id).Preload("DeviceNumber", "status = 1 AND org_id= ?", orgID)
  3487. }).Preload("DialysisAssesmentBefor", "status =1 AND user_org_id = ? and assessment_date =?", orgID, scheduleDate).
  3488. Where("status = 1 AND user_org_id = ?", orgID)
  3489. if scheduleDate != 0 {
  3490. db = db.Where("schedule_date = ?", scheduleDate)
  3491. }
  3492. err = db.Find(&vms).Error
  3493. }
  3494. }
  3495. } else {
  3496. if execution_state > 0 {
  3497. if cost_type > 0 {
  3498. db = db.Preload("SchedualPatient", "status = 1 AND user_org_id = ?", orgID).
  3499. Preload("DeviceNumber", "status = 1 AND org_id = ?", orgID).
  3500. Preload("DeviceNumber.Zone", "status = 1 AND org_id = ?", orgID).
  3501. Preload("Prescription", "status = 1 AND user_org_id = ? AND record_date = ?", orgID, scheduleDate).
  3502. Preload("HisDoctorAdviceInfo", "status = 1 AND user_org_id = ? AND advice_date = ? and execution_state = ? and is_settle = ?", orgID, scheduleDate, execution_state, cost_type).
  3503. Preload("DialysisOrder", func(db *gorm.DB) *gorm.DB {
  3504. return db.Where("status = 1 AND user_org_id = ?", orgID).Preload("DeviceNumber", "status = 1 AND org_id= ?", orgID)
  3505. }).Preload("DialysisAssesmentBefor", "status =1 AND user_org_id = ? and assessment_date =?", orgID, scheduleDate).
  3506. Where("status = 1 AND user_org_id = ?", orgID)
  3507. if scheduleDate != 0 {
  3508. db = db.Where("schedule_date = ?", scheduleDate)
  3509. }
  3510. err = db.Find(&vms).Error
  3511. } else {
  3512. db = db.Preload("SchedualPatient", "status = 1 AND user_org_id = ?", orgID).
  3513. Preload("DeviceNumber", "status = 1 AND org_id = ?", orgID).
  3514. Preload("DeviceNumber.Zone", "status = 1 AND org_id = ?", orgID).
  3515. Preload("Prescription", "status = 1 AND user_org_id = ? AND record_date = ?", orgID, scheduleDate).
  3516. Preload("HisDoctorAdviceInfo", "status = 1 AND user_org_id = ? AND advice_date = ? and execution_state = ?", orgID, scheduleDate, execution_state).
  3517. Preload("DialysisOrder", func(db *gorm.DB) *gorm.DB {
  3518. return db.Where("status = 1 AND user_org_id = ?", orgID).Preload("DeviceNumber", "status = 1 AND org_id= ?", orgID)
  3519. }).Preload("DialysisAssesmentBefor", "status =1 AND user_org_id = ? and assessment_date =?", orgID, scheduleDate).
  3520. Where("status = 1 AND user_org_id = ?", orgID)
  3521. if scheduleDate != 0 {
  3522. db = db.Where("schedule_date = ?", scheduleDate)
  3523. }
  3524. err = db.Find(&vms).Error
  3525. }
  3526. } else {
  3527. if cost_type > 0 {
  3528. db = db.Preload("SchedualPatient", "status = 1 AND user_org_id = ?", orgID).
  3529. Preload("DeviceNumber", "status = 1 AND org_id = ?", orgID).
  3530. Preload("DeviceNumber.Zone", "status = 1 AND org_id = ?", orgID).
  3531. Preload("Prescription", "status = 1 AND user_org_id = ? AND record_date = ?", orgID, scheduleDate).
  3532. Preload("HisDoctorAdviceInfo", "status = 1 AND user_org_id = ? AND advice_date = ? and is_settle = ?", orgID, scheduleDate, cost_type).
  3533. Preload("DialysisOrder", func(db *gorm.DB) *gorm.DB {
  3534. return db.Where("status = 1 AND user_org_id = ?", orgID).Preload("DeviceNumber", "status = 1 AND org_id= ?", orgID)
  3535. }).Preload("DialysisAssesmentBefor", "status =1 AND user_org_id = ? and assessment_date =?", orgID, scheduleDate).
  3536. Where("status = 1 AND user_org_id = ?", orgID)
  3537. if scheduleDate != 0 {
  3538. db = db.Where("schedule_date = ?", scheduleDate)
  3539. }
  3540. err = db.Find(&vms).Error
  3541. } else {
  3542. db = db.Preload("SchedualPatient", "status = 1 AND user_org_id = ?", orgID).
  3543. Preload("DeviceNumber", "status = 1 AND org_id = ?", orgID).
  3544. Preload("DeviceNumber.Zone", "status = 1 AND org_id = ?", orgID).
  3545. Preload("Prescription", "status = 1 AND user_org_id = ? AND record_date = ?", orgID, scheduleDate).
  3546. Preload("HisDoctorAdviceInfo", "status = 1 AND user_org_id = ? AND advice_date = ?", orgID, scheduleDate).
  3547. Preload("DialysisOrder", func(db *gorm.DB) *gorm.DB {
  3548. return db.Where("status = 1 AND user_org_id = ?", orgID).Preload("DeviceNumber", "status = 1 AND org_id= ?", orgID)
  3549. }).Preload("DialysisAssesmentBefor", "status =1 AND user_org_id = ? and assessment_date =?", orgID, scheduleDate).
  3550. Where("status = 1 AND user_org_id = ?", orgID)
  3551. if scheduleDate != 0 {
  3552. db = db.Where("schedule_date = ?", scheduleDate)
  3553. }
  3554. err = db.Find(&vms).Error
  3555. }
  3556. }
  3557. }
  3558. }
  3559. return vms, err
  3560. }
  3561. func BatchDeleteMonitor(ids []string) (err error) {
  3562. if len(ids) == 1 {
  3563. err = XTWriteDB().Model(&models.MonitoringRecord{}).Where("id=?", ids[0]).Updates(map[string]interface{}{"status": 0, "updated_time": time.Now().Unix()}).Error
  3564. } else {
  3565. err = XTWriteDB().Model(models.MonitoringRecord{}).Where("id IN(?)", ids).Updates(map[string]interface{}{"status": 0, "updated_time": time.Now().Unix()}).Error
  3566. }
  3567. return
  3568. }
  3569. func GetPatientDialysisRecordList(patientid int64, startime int64, endtime int64) (order []*models.XtDialysisOrders, err error) {
  3570. db := XTReadDB().Table("xt_dialysis_order as x").Where("x.status = 1")
  3571. //table := XTReadDB().Table("xt_schedule as s")
  3572. //fmt.Println(table)
  3573. if patientid > 0 {
  3574. db = db.Where("x.patient_id = ?", patientid)
  3575. }
  3576. if startime > 0 {
  3577. db = db.Where("x.dialysis_date>=?", startime)
  3578. }
  3579. if endtime > 0 {
  3580. db = db.Where("x.dialysis_date <= ?", endtime)
  3581. }
  3582. err = db.Select("x.id,x.dialysis_date,x.schedual_type,s.mode_id").Joins("left join xt_schedule as s on x.patient_id = s.patient_id and x.dialysis_date = s.schedule_date ").Scan(&order).Error
  3583. return order, err
  3584. }
  3585. func BatchDeleteAdvice(ids []string) (err error) {
  3586. if len(ids) == 1 {
  3587. err = XTWriteDB().Model(&models.DoctorAdvice{}).Where("id=?", ids[0]).Updates(map[string]interface{}{"status": 0, "updated_time": time.Now().Unix()}).Error
  3588. } else {
  3589. err = XTWriteDB().Model(models.DoctorAdvice{}).Where("id IN(?)", ids).Updates(map[string]interface{}{"status": 0, "updated_time": time.Now().Unix()}).Error
  3590. }
  3591. return
  3592. }
  3593. func BatchDeleteHisAdvice(ids []string) (err error) {
  3594. if len(ids) == 1 {
  3595. err = XTWriteDB().Model(&models.HisDoctorAdviceInfo{}).Where("id = ?", ids[0]).Updates(map[string]interface{}{"status": 0, "updated_time": time.Now().Unix()}).Error
  3596. } else {
  3597. err = XTWriteDB().Model(models.HisDoctorAdviceInfo{}).Where("id IN(?)", ids).Updates(map[string]interface{}{"status": 0, "updated_time": time.Now().Unix()}).Error
  3598. }
  3599. return
  3600. }
  3601. func UpdateAutoReduceDetail(good_id int64, count int64, record_time int64, patient_id int64) (models.AutomaticReduceDetail, error) {
  3602. detail := models.AutomaticReduceDetail{}
  3603. err := XTWriteDB().Model(&detail).Where("good_id = ? and status = 1 and record_time = ? and patient_id = ?", good_id, record_time, patient_id).Updates(map[string]interface{}{"count": count}).Error
  3604. return detail, err
  3605. }
  3606. func DeleteAutoReduceDetail(good_id int64, record_time int64, patient_id int64) error {
  3607. detail := models.AutomaticReduceDetail{}
  3608. err := XTWriteDB().Model(&detail).Where("good_id = ? and status = 1 and record_time = ? and patient_id = ?", good_id, record_time, patient_id).Updates(map[string]interface{}{"status": 0}).Error
  3609. return err
  3610. }
  3611. func DeleteDialysisBeforOne(good_id int64, record_time int64, patient_id int64) error {
  3612. detail := models.DialysisBeforePrepare{}
  3613. err := XTWriteDB().Model(&detail).Where("good_id = ? and status = 1 and record_date = ? and patient_id = ?", good_id, record_time, patient_id).Updates(map[string]interface{}{"status": 0}).Error
  3614. return err
  3615. }
  3616. func BatchAdviceCheck(ids []string, creator int64) error {
  3617. advice := models.XtDoctorAdvice{}
  3618. err := XTWriteDB().Model(&advice).Where("id IN(?) and status = 1", ids).Updates(map[string]interface{}{"check_state": 1, "checker": creator, "check_time": time.Now().Unix()}).Error
  3619. return err
  3620. }
  3621. func BatchHisAdviceCheck(ids []string, creator int64) error {
  3622. advice := models.HisDoctorAdviceInfo{}
  3623. err := XTWriteDB().Model(&advice).Where("id IN(?) and status = 1", ids).Updates(map[string]interface{}{"check_state": 1, "checker": creator, "check_time": time.Now().Unix()}).Error
  3624. return err
  3625. }
  3626. func BatchAdviceExecution(ids []string, creator int64, execution_state int64) error {
  3627. advice := models.XtDoctorAdvice{}
  3628. err := XTWriteDB().Model(&advice).Where("id IN(?) and status = 1", ids).Updates(map[string]interface{}{"execution_state": 1, "execution_staff": creator, "execution_time": execution_state}).Error
  3629. return err
  3630. }
  3631. func BatchHisAdviceExecution(ids []string, creator int64, execution_state int64) error {
  3632. advice := models.HisDoctorAdviceInfo{}
  3633. err := XTWriteDB().Model(&advice).Where("id IN(?) and status = 1", ids).Updates(map[string]interface{}{"execution_state": 1, "execution_staff": creator, "execution_time": execution_state}).Error
  3634. return err
  3635. }
  3636. func GetAdviceExecutionById(ids []string) (doctor []*models.XtDoctorAdvice, err error) {
  3637. err = XTReadDB().Model(&doctor).Where("id IN(?) AND status = 1", ids).Find(&doctor).Error
  3638. return doctor, err
  3639. }
  3640. func GetHisAdviceExecutionById(ids []string) (doctor []*models.HisDoctorAdviceInfo, err error) {
  3641. err = XTReadDB().Model(&doctor).Where("id IN(?) AND status = 1", ids).Find(&doctor).Error
  3642. return doctor, err
  3643. }
  3644. func GetHisProjectConfig(orgid int64) (models.XtHisProjectConfig, error) {
  3645. config := models.XtHisProjectConfig{}
  3646. err := XTReadDB().Model(&config).Where("user_org_id = ? and status =1", orgid).Find(&config).Error
  3647. return config, err
  3648. }
  3649. func GetHisPrescriptionProject(org_id int64, patient_id int64, record_date int64) (project []*models.HisPrescriptionProject, err error) {
  3650. err = readDb.Model(&models.HisPrescriptionProject{}).Preload("GoodInfo", func(db *gorm.DB) *gorm.DB {
  3651. return db.Preload("GoodsType", "status = 1").Where("status = 1 and is_warehouse = 1")
  3652. }).Where("user_org_id = ? AND status = 1 AND record_date = ? AND patient_id = ? AND type = 3", org_id, record_date, patient_id).Find(&project).Error
  3653. return
  3654. }
  3655. func GetPCHisPrescriptionProject(orgID int64, scheduleDate int64, deliverWay string, patientType int, adminUserId int64, patient_id int64, execution_state int64) ([]*HisMScheduleProjectVM, error) {
  3656. var vms []*HisMScheduleProjectVM
  3657. if patientType == 0 {
  3658. if patient_id > 0 {
  3659. if execution_state == 1 {
  3660. db := readDb.
  3661. Table("xt_schedule").
  3662. Preload("SchedualPatient", "status = 1 AND user_org_id = ?", orgID).
  3663. Preload("DialysisOrder", func(db *gorm.DB) *gorm.DB {
  3664. return db.Where("status = 1 AND user_org_id = ? and patient_id = ?", orgID, patient_id).Preload("DeviceNumber", "status = 1 AND org_id= ?", orgID)
  3665. }).
  3666. Preload("DeviceNumber", "status = 1 AND org_id = ?", orgID).
  3667. Preload("DeviceNumber.Zone", "status = 1 AND org_id = ?", orgID).
  3668. Preload("Prescription", "status = 1 AND user_org_id = ? AND record_date = ? and patient_id = ?", orgID, scheduleDate, patient_id).
  3669. Preload("HisPrescriptionProject", func(db *gorm.DB) *gorm.DB {
  3670. return db.Where("status = 1 AND user_org_id = ? AND record_date = ? AND team_id = 0 and execution_state = ?", orgID, scheduleDate, execution_state).Preload("HisProject").Preload("GoodInfo", "status=1")
  3671. }).
  3672. Preload("HisPrescriptionTeamProject", func(db *gorm.DB) *gorm.DB {
  3673. return db.Where("status = 1 AND user_org_id = ? AND record_date = ? AND team_id > 0 and execution_state = ?", orgID, scheduleDate, execution_state).Preload("XtHisProjectTeam", "status = 1").Preload("HisProject").Preload("GoodInfo", "status=1")
  3674. }).Where("status = 1 AND user_org_id = ?", orgID)
  3675. if scheduleDate != 0 {
  3676. db = db.Where("schedule_date = ?", scheduleDate)
  3677. }
  3678. err = db.Find(&vms).Error
  3679. } else if execution_state == 2 {
  3680. db := readDb.
  3681. Table("xt_schedule").
  3682. Preload("SchedualPatient", "status = 1 AND user_org_id = ?", orgID).
  3683. Preload("DialysisOrder", func(db *gorm.DB) *gorm.DB {
  3684. return db.Where("status = 1 AND user_org_id = ? and patient_id = ?", orgID, patient_id).Preload("DeviceNumber", "status = 1 AND org_id= ?", orgID)
  3685. }).
  3686. Preload("DeviceNumber", "status = 1 AND org_id = ?", orgID).
  3687. Preload("DeviceNumber.Zone", "status = 1 AND org_id = ?", orgID).
  3688. Preload("Prescription", "status = 1 AND user_org_id = ? AND record_date = ? and patient_id = ?", orgID, scheduleDate, patient_id).
  3689. Preload("HisPrescriptionProject", func(db *gorm.DB) *gorm.DB {
  3690. return db.Where("status = 1 AND user_org_id = ? AND record_date = ? AND team_id = 0 and execution_state = 0", orgID, scheduleDate).Preload("HisProject").Preload("GoodInfo", "status=1")
  3691. }).
  3692. Preload("HisPrescriptionTeamProject", func(db *gorm.DB) *gorm.DB {
  3693. return db.Where("status = 1 AND user_org_id = ? AND record_date = ? AND team_id > 0 and execution_state = 0", orgID, scheduleDate).Preload("XtHisProjectTeam", "status = 1").Preload("HisProject").Preload("GoodInfo", "status=1")
  3694. }).Where("status = 1 AND user_org_id = ?", orgID)
  3695. if scheduleDate != 0 {
  3696. db = db.Where("schedule_date = ?", scheduleDate)
  3697. }
  3698. err = db.Find(&vms).Error
  3699. } else if execution_state == 0 {
  3700. db := readDb.
  3701. Table("xt_schedule").
  3702. Preload("SchedualPatient", "status = 1 AND user_org_id = ?", orgID).
  3703. Preload("DialysisOrder", func(db *gorm.DB) *gorm.DB {
  3704. return db.Where("status = 1 AND user_org_id = ? and patient_id = ?", orgID, patient_id).Preload("DeviceNumber", "status = 1 AND org_id= ?", orgID)
  3705. }).
  3706. Preload("DeviceNumber", "status = 1 AND org_id = ?", orgID).
  3707. Preload("DeviceNumber.Zone", "status = 1 AND org_id = ?", orgID).
  3708. Preload("Prescription", "status = 1 AND user_org_id = ? AND record_date = ? and patient_id = ?", orgID, scheduleDate, patient_id).
  3709. Preload("HisPrescriptionProject", func(db *gorm.DB) *gorm.DB {
  3710. return db.Where("status = 1 AND user_org_id = ? AND record_date = ? AND team_id = 0", orgID, scheduleDate).Preload("HisProject").Preload("GoodInfo", "status=1")
  3711. }).
  3712. Preload("HisPrescriptionTeamProject", func(db *gorm.DB) *gorm.DB {
  3713. return db.Where("status = 1 AND user_org_id = ? AND record_date = ? AND team_id > 0", orgID, scheduleDate).Preload("XtHisProjectTeam", "status = 1").Preload("HisProject").Preload("GoodInfo", "status=1")
  3714. }).Where("status = 1 AND user_org_id = ?", orgID)
  3715. if scheduleDate != 0 {
  3716. db = db.Where("schedule_date = ?", scheduleDate)
  3717. }
  3718. err = db.Find(&vms).Error
  3719. }
  3720. } else {
  3721. if patient_id > 0 {
  3722. if execution_state == 1 {
  3723. db := readDb.
  3724. Table("xt_schedule").
  3725. Preload("SchedualPatient", "status = 1 AND user_org_id = ? and id= ?", orgID, patient_id).
  3726. Preload("DialysisOrder", func(db *gorm.DB) *gorm.DB {
  3727. return db.Where("status = 1 AND user_org_id = ? and patient_id = ?", orgID, patient_id).Preload("DeviceNumber", "status = 1 AND org_id= ?", orgID)
  3728. }).
  3729. Preload("DeviceNumber", "status = 1 AND org_id = ?", orgID).
  3730. Preload("DeviceNumber.Zone", "status = 1 AND org_id = ?", orgID).
  3731. Preload("Prescription", "status = 1 AND user_org_id = ? AND record_date = ? and patient_id = ?", orgID, scheduleDate, patient_id).
  3732. Preload("HisPrescriptionProject", func(db *gorm.DB) *gorm.DB {
  3733. return db.Where("status = 1 AND user_org_id = ? AND record_date = ? AND team_id = 0 and execution_state = ?", orgID, scheduleDate, execution_state).Preload("HisProject").Preload("GoodInfo", "status=1")
  3734. }).
  3735. Preload("HisPrescriptionTeamProject", func(db *gorm.DB) *gorm.DB {
  3736. return db.Where("status = 1 AND user_org_id = ? AND record_date = ? AND team_id > 0 and execution_state = ?", orgID, scheduleDate, execution_state).Preload("XtHisProjectTeam", "status = 1").Preload("HisProject").Preload("GoodInfo", "status=1")
  3737. }).Where("status = 1 AND user_org_id = ?", orgID)
  3738. if scheduleDate != 0 {
  3739. db = db.Where("schedule_date = ?", scheduleDate)
  3740. }
  3741. err = db.Find(&vms).Error
  3742. } else if execution_state == 2 {
  3743. db := readDb.
  3744. Table("xt_schedule").
  3745. Preload("SchedualPatient", "status = 1 AND user_org_id = ? and id= ?", orgID, patient_id).
  3746. Preload("DialysisOrder", func(db *gorm.DB) *gorm.DB {
  3747. return db.Where("status = 1 AND user_org_id = ? and patient_id = ?", orgID, patient_id).Preload("DeviceNumber", "status = 1 AND org_id= ?", orgID)
  3748. }).
  3749. Preload("DeviceNumber", "status = 1 AND org_id = ?", orgID).
  3750. Preload("DeviceNumber.Zone", "status = 1 AND org_id = ?", orgID).
  3751. Preload("Prescription", "status = 1 AND user_org_id = ? AND record_date = ? and patient_id = ?", orgID, scheduleDate, patient_id).
  3752. Preload("HisPrescriptionProject", func(db *gorm.DB) *gorm.DB {
  3753. return db.Where("status = 1 AND user_org_id = ? AND record_date = ? AND team_id = 0 and execution_state = 0", orgID, scheduleDate).Preload("HisProject").Preload("GoodInfo", "status=1")
  3754. }).
  3755. Preload("HisPrescriptionTeamProject", func(db *gorm.DB) *gorm.DB {
  3756. return db.Where("status = 1 AND user_org_id = ? AND record_date = ? AND team_id > 0 and execution_state = 0", orgID, scheduleDate).Preload("XtHisProjectTeam", "status = 1").Preload("HisProject").Preload("GoodInfo", "status=1")
  3757. }).Where("status = 1 AND user_org_id = ?", orgID)
  3758. if scheduleDate != 0 {
  3759. db = db.Where("schedule_date = ?", scheduleDate)
  3760. }
  3761. err = db.Find(&vms).Error
  3762. } else if execution_state == 0 {
  3763. db := readDb.
  3764. Table("xt_schedule").
  3765. Preload("SchedualPatient", "status = 1 AND user_org_id = ? and id= ?", orgID, patient_id).
  3766. Preload("DialysisOrder", func(db *gorm.DB) *gorm.DB {
  3767. return db.Where("status = 1 AND user_org_id = ? and patient_id = ?", orgID, patient_id).Preload("DeviceNumber", "status = 1 AND org_id= ?", orgID)
  3768. }).
  3769. Preload("DeviceNumber", "status = 1 AND org_id = ?", orgID).
  3770. Preload("DeviceNumber.Zone", "status = 1 AND org_id = ?", orgID).
  3771. Preload("Prescription", "status = 1 AND user_org_id = ? AND record_date = ? and patient_id = ?", orgID, scheduleDate, patient_id).
  3772. Preload("HisPrescriptionProject", func(db *gorm.DB) *gorm.DB {
  3773. return db.Where("status = 1 AND user_org_id = ? AND record_date = ? AND team_id = 0", orgID, scheduleDate).Preload("HisProject").Preload("GoodInfo", "status=1")
  3774. }).
  3775. Preload("HisPrescriptionTeamProject", func(db *gorm.DB) *gorm.DB {
  3776. return db.Where("status = 1 AND user_org_id = ? AND record_date = ? AND team_id > 0", orgID, scheduleDate).Preload("XtHisProjectTeam", "status = 1").Preload("HisProject").Preload("GoodInfo", "status=1")
  3777. }).Where("status = 1 AND user_org_id = ?", orgID)
  3778. if scheduleDate != 0 {
  3779. db = db.Where("schedule_date = ?", scheduleDate)
  3780. }
  3781. err = db.Find(&vms).Error
  3782. }
  3783. } else {
  3784. if execution_state == 1 {
  3785. db := readDb.
  3786. Table("xt_schedule").
  3787. Preload("SchedualPatient", "status = 1 AND user_org_id = ?", orgID).
  3788. Preload("DialysisOrder", func(db *gorm.DB) *gorm.DB {
  3789. return db.Where("status = 1 AND user_org_id = ?", orgID).Preload("DeviceNumber", "status = 1 AND org_id= ?", orgID)
  3790. }).
  3791. Preload("DeviceNumber", "status = 1 AND org_id = ?", orgID).
  3792. Preload("DeviceNumber.Zone", "status = 1 AND org_id = ?", orgID).
  3793. Preload("Prescription", "status = 1 AND user_org_id = ? AND record_date = ?", orgID, scheduleDate).
  3794. Preload("HisPrescriptionProject", func(db *gorm.DB) *gorm.DB {
  3795. return db.Where("status = 1 AND user_org_id = ? AND record_date = ? AND team_id = 0 and execution_state = ?", orgID, scheduleDate, execution_state).Preload("HisProject").Preload("GoodInfo", "status=1")
  3796. }).
  3797. Preload("HisPrescriptionTeamProject", func(db *gorm.DB) *gorm.DB {
  3798. return db.Where("status = 1 AND user_org_id = ? AND record_date = ? AND team_id > 0 and execution_state = ?", orgID, scheduleDate, execution_state).Preload("XtHisProjectTeam", "status = 1").Preload("HisProject").Preload("GoodInfo", "status=1")
  3799. }).Where("status = 1 AND user_org_id = ?", orgID)
  3800. if scheduleDate != 0 {
  3801. db = db.Where("schedule_date = ?", scheduleDate)
  3802. }
  3803. err = db.Find(&vms).Error
  3804. } else if execution_state == 2 {
  3805. fmt.Println("j氯332n323232n323ℹ️33232323232")
  3806. db := readDb.
  3807. Table("xt_schedule").
  3808. Preload("SchedualPatient", "status = 1 AND user_org_id = ?", orgID).
  3809. Preload("DialysisOrder", func(db *gorm.DB) *gorm.DB {
  3810. return db.Where("status = 1 AND user_org_id = ?", orgID).Preload("DeviceNumber", "status = 1 AND org_id= ?", orgID)
  3811. }).
  3812. Preload("DeviceNumber", "status = 1 AND org_id = ?", orgID).
  3813. Preload("DeviceNumber.Zone", "status = 1 AND org_id = ?", orgID).
  3814. Preload("Prescription", "status = 1 AND user_org_id = ? AND record_date = ?", orgID, scheduleDate).
  3815. Preload("HisPrescriptionProject", func(db *gorm.DB) *gorm.DB {
  3816. return db.Where("status = 1 AND user_org_id = ? AND record_date = ? AND team_id = 0 and execution_state =0 ", orgID, scheduleDate).Preload("HisProject").Preload("GoodInfo", "status=1")
  3817. }).
  3818. Preload("HisPrescriptionTeamProject", func(db *gorm.DB) *gorm.DB {
  3819. return db.Where("status = 1 AND user_org_id = ? AND record_date = ? AND team_id > 0 and execution_state =0 ", orgID, scheduleDate).Preload("XtHisProjectTeam", "status = 1").Preload("HisProject").Preload("GoodInfo", "status=1")
  3820. }).Where("status = 1 AND user_org_id = ?", orgID)
  3821. if scheduleDate != 0 {
  3822. db = db.Where("schedule_date = ?", scheduleDate)
  3823. }
  3824. err = db.Find(&vms).Error
  3825. } else if execution_state == 0 {
  3826. db := readDb.
  3827. Table("xt_schedule").
  3828. Preload("SchedualPatient", "status = 1 AND user_org_id = ?", orgID).
  3829. Preload("DialysisOrder", func(db *gorm.DB) *gorm.DB {
  3830. return db.Where("status = 1 AND user_org_id = ?", orgID).Preload("DeviceNumber", "status = 1 AND org_id= ?", orgID)
  3831. }).
  3832. Preload("DeviceNumber", "status = 1 AND org_id = ?", orgID).
  3833. Preload("DeviceNumber.Zone", "status = 1 AND org_id = ?", orgID).
  3834. Preload("Prescription", "status = 1 AND user_org_id = ? AND record_date = ?", orgID, scheduleDate).
  3835. Preload("HisPrescriptionProject", func(db *gorm.DB) *gorm.DB {
  3836. return db.Where("status = 1 AND user_org_id = ? AND record_date = ? AND team_id = 0", orgID, scheduleDate).Preload("HisProject").Preload("GoodInfo", "status=1")
  3837. }).
  3838. Preload("HisPrescriptionTeamProject", func(db *gorm.DB) *gorm.DB {
  3839. return db.Where("status = 1 AND user_org_id = ? AND record_date = ? AND team_id > 0", orgID, scheduleDate).Preload("XtHisProjectTeam", "status = 1").Preload("HisProject").Preload("GoodInfo", "status=1")
  3840. }).Where("status = 1 AND user_org_id = ?", orgID)
  3841. if scheduleDate != 0 {
  3842. db = db.Where("schedule_date = ?", scheduleDate)
  3843. }
  3844. err = db.Find(&vms).Error
  3845. }
  3846. }
  3847. }
  3848. }
  3849. if patientType > 0 {
  3850. if execution_state == 1 {
  3851. db := readDb.
  3852. Table("xt_schedule").
  3853. Preload("SchedualPatient", "status = 1 AND user_org_id = ?", orgID).
  3854. Preload("DialysisOrder", func(db *gorm.DB) *gorm.DB {
  3855. return db.Where("status = 1 AND user_org_id = ?", orgID).Preload("DeviceNumber", "status = 1 AND org_id= ?", orgID)
  3856. }).
  3857. Preload("DeviceNumber", "status = 1 AND org_id = ?", orgID).
  3858. Preload("DeviceNumber.Zone", "status = 1 AND org_id = ?", orgID).
  3859. Preload("Prescription", "status = 1 AND user_org_id = ? AND record_date = ?", orgID, scheduleDate).
  3860. Preload("HisDoctorAdviceInfo", "status = 1 AND user_org_id = ? AND advice_date = ? and (advice_doctor = ? or execution_staff = ?) ", orgID, scheduleDate, adminUserId, adminUserId).
  3861. Preload("HisPrescriptionProject", func(db *gorm.DB) *gorm.DB {
  3862. return db.Where("status = 1 AND user_org_id = ? AND record_date = ? AND team_id = 0 and execution_state = 1", orgID, scheduleDate).Preload("HisProject").Preload("GoodInfo", "status=1")
  3863. }).
  3864. Preload("HisPrescriptionTeamProject", func(db *gorm.DB) *gorm.DB {
  3865. return db.Where("status = 1 AND user_org_id = ? AND record_date = ? AND team_id > 0", orgID, scheduleDate).Preload("XtHisProjectTeam", "status = 1").Preload("HisProject").Preload("GoodInfo", "status=1")
  3866. }).Where("status = 1 AND user_org_id = ?", orgID)
  3867. if scheduleDate != 0 {
  3868. db = db.Where("schedule_date = ?", scheduleDate)
  3869. }
  3870. err = db.Find(&vms).Error
  3871. } else if execution_state == 2 {
  3872. db := readDb.
  3873. Table("xt_schedule").
  3874. Preload("SchedualPatient", "status = 1 AND user_org_id = ?", orgID).
  3875. Preload("DialysisOrder", func(db *gorm.DB) *gorm.DB {
  3876. return db.Where("status = 1 AND user_org_id = ?", orgID).Preload("DeviceNumber", "status = 1 AND org_id= ?", orgID)
  3877. }).
  3878. Preload("DeviceNumber", "status = 1 AND org_id = ?", orgID).
  3879. Preload("DeviceNumber.Zone", "status = 1 AND org_id = ?", orgID).
  3880. Preload("Prescription", "status = 1 AND user_org_id = ? AND record_date = ?", orgID, scheduleDate).
  3881. Preload("HisDoctorAdviceInfo", "status = 1 AND user_org_id = ? AND advice_date = ? and (advice_doctor = ? or execution_staff = ?) ", orgID, scheduleDate, adminUserId, adminUserId).
  3882. Preload("HisPrescriptionProject", func(db *gorm.DB) *gorm.DB {
  3883. return db.Where("status = 1 AND user_org_id = ? AND record_date = ? AND team_id = 0 and execution_state = 0", orgID, scheduleDate).Preload("HisProject").Preload("GoodInfo", "status=1")
  3884. }).
  3885. Preload("HisPrescriptionTeamProject", func(db *gorm.DB) *gorm.DB {
  3886. return db.Where("status = 1 AND user_org_id = ? AND record_date = ? AND team_id > 0", orgID, scheduleDate).Preload("XtHisProjectTeam", "status = 1").Preload("HisProject").Preload("GoodInfo", "status=1")
  3887. }).Where("status = 1 AND user_org_id = ?", orgID)
  3888. if scheduleDate != 0 {
  3889. db = db.Where("schedule_date = ?", scheduleDate)
  3890. }
  3891. err = db.Find(&vms).Error
  3892. } else if execution_state == 0 {
  3893. db := readDb.
  3894. Table("xt_schedule").
  3895. Preload("SchedualPatient", "status = 1 AND user_org_id = ?", orgID).
  3896. Preload("DialysisOrder", func(db *gorm.DB) *gorm.DB {
  3897. return db.Where("status = 1 AND user_org_id = ?", orgID).Preload("DeviceNumber", "status = 1 AND org_id= ?", orgID)
  3898. }).
  3899. Preload("DeviceNumber", "status = 1 AND org_id = ?", orgID).
  3900. Preload("DeviceNumber.Zone", "status = 1 AND org_id = ?", orgID).
  3901. Preload("Prescription", "status = 1 AND user_org_id = ? AND record_date = ?", orgID, scheduleDate).
  3902. Preload("HisDoctorAdviceInfo", "status = 1 AND user_org_id = ? AND advice_date = ? and (advice_doctor = ? or execution_staff = ?) ", orgID, scheduleDate, adminUserId, adminUserId).
  3903. Preload("HisPrescriptionProject", func(db *gorm.DB) *gorm.DB {
  3904. return db.Where("status = 1 AND user_org_id = ? AND record_date = ? AND team_id = 0", orgID, scheduleDate).Preload("HisProject").Preload("GoodInfo", "status=1")
  3905. }).
  3906. Preload("HisPrescriptionTeamProject", func(db *gorm.DB) *gorm.DB {
  3907. return db.Where("status = 1 AND user_org_id = ? AND record_date = ? AND team_id > 0", orgID, scheduleDate).Preload("XtHisProjectTeam", "status = 1").Preload("HisProject").Preload("GoodInfo", "status=1")
  3908. }).Where("status = 1 AND user_org_id = ?", orgID)
  3909. if scheduleDate != 0 {
  3910. db = db.Where("schedule_date = ?", scheduleDate)
  3911. }
  3912. err = db.Find(&vms).Error
  3913. }
  3914. }
  3915. return vms, err
  3916. }
  3917. func UpdateStockGoods(good_id int64, record_time int64, patient_id int64, count int64) error {
  3918. prepare := models.DialysisBeforePrepare{}
  3919. var err error
  3920. if count > 0 {
  3921. err = XTWriteDB().Model(&prepare).Where("good_id= ? and record_date = ? and patient_id = ? and count <> 0 and status = 1", good_id, record_time, patient_id).Updates(map[string]interface{}{"count": count}).Error
  3922. }
  3923. if count <= 0 {
  3924. err = XTWriteDB().Model(&prepare).Where("good_id= ? and record_date = ? and patient_id = ? and count <> 0 and status = 1", good_id, record_time, patient_id).Updates(map[string]interface{}{"count": count, "status": 0}).Error
  3925. }
  3926. return err
  3927. }
  3928. func UPdateAutoStockGoods(good_id int64, record_time int64, patient_id int64, count int64) error {
  3929. detail := models.AutomaticReduceDetail{}
  3930. err := XTWriteDB().Model(&detail).Where("good_id = ? and record_time = ? and patient_id = ? and count <> 0 and status = 1", good_id, record_time, patient_id).Updates(map[string]interface{}{"count": count}).Error
  3931. return err
  3932. }
  3933. func MobileGetDialysisSolutionByModeIdSeven(orgID int64, patientID int64, mode_id int64) (*models.DialysisSolution, error) {
  3934. var record models.DialysisSolution
  3935. err := readDb.Model(&models.DialysisSolution{}).Where("patient_id = ? and user_org_id = ? and status = 1 AND mode_id = ?", patientID, orgID, mode_id).Last(&record).Error
  3936. if err != nil {
  3937. if err == gorm.ErrRecordNotFound {
  3938. return nil, nil
  3939. } else {
  3940. return nil, err
  3941. }
  3942. }
  3943. return &record, nil
  3944. }
  3945. func MobileGetLastDialysisPrescribeByModeIdSeven(orgID int64, patientID int64, mode_id int64) (*models.DialysisPrescription, error) {
  3946. var record models.DialysisPrescription
  3947. err := readDb.Model(&models.DialysisPrescription{}).Where("patient_id = ? and user_org_id = ? and status = 1 AND mode_id = ?", patientID, orgID, mode_id).Last(&record).Error
  3948. if err != nil {
  3949. if err == gorm.ErrRecordNotFound {
  3950. return nil, nil
  3951. } else {
  3952. return nil, err
  3953. }
  3954. }
  3955. return &record, nil
  3956. }
  3957. func MobileGetLastDialysisPrescription(patientID int64, orgID int64) (models.DialysisPrescriptionThrity, error) {
  3958. prescription := models.DialysisPrescriptionThrity{}
  3959. err := readDb.Model(&prescription).Where("patient_id = ? and user_org_id = ? and status = 1 and remark<>''", patientID, orgID).Last(&prescription).Error
  3960. return prescription, err
  3961. }
  3962. func MobileGetSystemDialysisPrescribeByModeIdSeven(orgID int64, mode_id int64) (*models.SystemPrescription, error) {
  3963. var record models.SystemPrescription
  3964. err := readDb.Model(&models.SystemPrescription{}).Where("user_org_id = ? and status = 1 AND mode_id = ?", orgID, mode_id).First(&record).Error
  3965. if err != nil {
  3966. if err == gorm.ErrRecordNotFound {
  3967. return nil, nil
  3968. } else {
  3969. return nil, err
  3970. }
  3971. }
  3972. return &record, nil
  3973. }
  3974. // 透前评估
  3975. func MobileGetPredialysisEvaluationSeven(orgID int64, patientID int64, recordDate int64) (*models.PredialysisEvaluation, error) {
  3976. var record models.PredialysisEvaluation
  3977. err := readDb.Model(&models.PredialysisEvaluation{}).Where("patient_id = ? and user_org_id = ? and status = 1 and assessment_date = ?", patientID, orgID, recordDate).First(&record).Error
  3978. if err != nil {
  3979. if err == gorm.ErrRecordNotFound {
  3980. return nil, nil
  3981. } else {
  3982. return nil, err
  3983. }
  3984. }
  3985. return &record, nil
  3986. }
  3987. //
  3988. //func MobileGetDialysisGoodsSix(orgID int64, scheduleDate int64) (prepare []*models.DialysisBeforePrepare, err error) {
  3989. //
  3990. // err = readDb.Where("user_org_id = ? AND status=1 AND record_date = ? AND count > 0", orgID, scheduleDate).Select("patient_id,good_id,record_date").Find(&prepare).Error
  3991. // return prepare, err
  3992. //}
  3993. func GetMobileAutoReduce(orgID int64, scheduleDate int64) (auto []*models.AutomaticReduceDetail, err error) {
  3994. err = readDb.Where("org_id = ? and status = 1 and record_time = ?", orgID, scheduleDate).Find(&auto).Error
  3995. return auto, err
  3996. }
  3997. func GetRoleList(orgid int64, admin_user_id int64) (models.SgjUserAdminRole, error) {
  3998. role := models.SgjUserAdminRole{}
  3999. err = readUserDb.Where("org_id = ? and admin_user_id = ? and status =1 ", orgid, admin_user_id).Find(&role).Error
  4000. return role, err
  4001. }
  4002. func GetDialysisGood(orgID int64, scheduleDate int64) (auto []*models.AutomaticReduceDetail, err error) {
  4003. err = readDb.Where("org_id = ? and status = 1 and record_time >= ?", orgID, scheduleDate).Group("patient_id").Find(&auto).Error
  4004. return auto, err
  4005. }
  4006. func GetGoodWarehouseOutInfo(orgId int64, patient_id int64, sys_record_time int64) (outifno []*models.WarehouseOutInfoSeven, err error) {
  4007. err = readDb.Where("org_id = ? and patient_id = ? and sys_record_time = ? and status = 1", orgId, patient_id, sys_record_time).Find(&outifno).Error
  4008. return outifno, err
  4009. }
  4010. func GetLastDilysisOrder(orgid int64, patient_id int64, dialysis_date int64) (models.DialysisOrder, error) {
  4011. order := models.DialysisOrder{}
  4012. err = XTReadDB().Where("user_org_id = ? and patient_id = ? and dialysis_date < ? and status= 1", orgid, patient_id, dialysis_date).Last(&order).Error
  4013. return order, err
  4014. }
  4015. func GetFistMonitor(orgid int64, patient_id int64, dialysis_date int64) (models.MonitoringRecord, error) {
  4016. record := models.MonitoringRecord{}
  4017. err := XTReadDB().Where("org_id = ? and patient_id = ? and monitoring_date = ? and status = 1", orgid, patient_id, dialysis_date).Find(&record).Error
  4018. return record, err
  4019. }
  4020. func GetFistMonitorSix(orgid int64, patient_id int64, dialysis_date int64) (record []*models.MonitoringRecord, err error) {
  4021. err = XTReadDB().Where("user_org_id = ? and patient_id = ? and monitoring_date = ? and status = 1", orgid, patient_id, dialysis_date).Find(&record).Error
  4022. return record, err
  4023. }
  4024. func MobileGetScheduleDoctorAdvicesOne(orgID int64, scheduleDate int64, adviceType int, patientType int, adminUserId int64, deliverWay string, scheduleType int64, partitonType int64, patient_id int64, execution_state int64, cost_type int64, execution_frequency string) ([]*MScheduleDoctorAdviceVM, error) {
  4025. var vms []*MScheduleDoctorAdviceVM
  4026. adviceWhere := ""
  4027. adviceCondition := []interface{}{}
  4028. if adviceType == 0 {
  4029. if patientType == 0 {
  4030. if patient_id > 0 {
  4031. if execution_state > 0 {
  4032. if cost_type > 0 {
  4033. if len(execution_frequency) > 0 {
  4034. adviceWhere = "status = 1 AND user_org_id = ? AND record_date = ? AND (advice_type = 3 OR advice_type = 1) and patient_id = ? and execution_state= ? and is_settle = ? and execution_frequency = ?"
  4035. adviceCondition = append(adviceCondition, adviceWhere, orgID, scheduleDate, patient_id, execution_state, cost_type, execution_frequency)
  4036. } else {
  4037. adviceWhere = "status = 1 AND user_org_id = ? AND record_date = ? AND (advice_type = 3 OR advice_type = 1) and patient_id = ? and execution_state= ? and is_settle = ?"
  4038. adviceCondition = append(adviceCondition, adviceWhere, orgID, scheduleDate, patient_id, execution_state, cost_type)
  4039. }
  4040. } else {
  4041. if len(execution_frequency) > 0 {
  4042. adviceWhere = "status = 1 AND user_org_id = ? AND record_date = ? AND (advice_type = 3 OR advice_type = 1) and patient_id = ? and execution_state= ? and execution_frequency = ?"
  4043. adviceCondition = append(adviceCondition, adviceWhere, orgID, scheduleDate, patient_id, execution_state, execution_frequency)
  4044. } else {
  4045. adviceWhere = "status = 1 AND user_org_id = ? AND record_date = ? AND (advice_type = 3 OR advice_type = 1) and patient_id = ? and execution_state= ?"
  4046. adviceCondition = append(adviceCondition, adviceWhere, orgID, scheduleDate, patient_id, execution_state)
  4047. }
  4048. }
  4049. } else {
  4050. if cost_type > 0 {
  4051. if len(execution_frequency) > 0 {
  4052. adviceWhere = "status = 1 AND user_org_id = ? AND record_date = ? AND (advice_type = 3 OR advice_type = 1) and patient_id = ? and is_settle = ? and execution_frequency = ?"
  4053. adviceCondition = append(adviceCondition, adviceWhere, orgID, scheduleDate, patient_id, cost_type, execution_frequency)
  4054. } else {
  4055. adviceWhere = "status = 1 AND user_org_id = ? AND record_date = ? AND (advice_type = 3 OR advice_type = 1) and patient_id = ? and is_settle = ?"
  4056. adviceCondition = append(adviceCondition, adviceWhere, orgID, scheduleDate, patient_id, cost_type)
  4057. }
  4058. } else {
  4059. if len(execution_frequency) > 0 {
  4060. adviceWhere = "status = 1 AND user_org_id = ? AND record_date = ? AND (advice_type = 3 OR advice_type = 1) and patient_id = ? and execution_frequency = ?"
  4061. adviceCondition = append(adviceCondition, adviceWhere, orgID, scheduleDate, patient_id, execution_frequency)
  4062. } else {
  4063. adviceWhere = "status = 1 AND user_org_id = ? AND record_date = ? AND (advice_type = 3 OR advice_type = 1) and patient_id = ?"
  4064. adviceCondition = append(adviceCondition, adviceWhere, orgID, scheduleDate, patient_id)
  4065. }
  4066. }
  4067. }
  4068. } else {
  4069. if execution_state > 0 {
  4070. if cost_type > 0 {
  4071. if len(execution_frequency) > 0 {
  4072. adviceWhere = "status = 1 AND user_org_id = ? AND record_date = ? AND (advice_type = 3 OR advice_type = 1) and execution_state= ? and is_settle = ? and execution_frequency = ?"
  4073. adviceCondition = append(adviceCondition, adviceWhere, orgID, scheduleDate, execution_state, cost_type, execution_frequency)
  4074. } else {
  4075. adviceWhere = "status = 1 AND user_org_id = ? AND record_date = ? AND (advice_type = 3 OR advice_type = 1) and execution_state= ? and is_settle = ?"
  4076. adviceCondition = append(adviceCondition, adviceWhere, orgID, scheduleDate, execution_state, cost_type)
  4077. }
  4078. } else {
  4079. if len(execution_frequency) > 0 {
  4080. adviceWhere = "status = 1 AND user_org_id = ? AND record_date = ? AND (advice_type = 3 OR advice_type = 1) and execution_state= ? and execution_frequency = ?"
  4081. adviceCondition = append(adviceCondition, adviceWhere, orgID, scheduleDate, execution_state, execution_frequency)
  4082. } else {
  4083. adviceWhere = "status = 1 AND user_org_id = ? AND record_date = ? AND (advice_type = 3 OR advice_type = 1) and execution_state= ?"
  4084. adviceCondition = append(adviceCondition, adviceWhere, orgID, scheduleDate, execution_state)
  4085. }
  4086. }
  4087. } else {
  4088. if cost_type > 0 {
  4089. if len(execution_frequency) > 0 {
  4090. adviceWhere = "status = 1 AND user_org_id = ? AND record_date = ? AND (advice_type = 3 OR advice_type = 1) and is_settle = ? and execution_frequency = ?"
  4091. adviceCondition = append(adviceCondition, adviceWhere, orgID, scheduleDate, cost_type, execution_frequency)
  4092. } else {
  4093. adviceWhere = "status = 1 AND user_org_id = ? AND record_date = ? AND (advice_type = 3 OR advice_type = 1) and is_settle = ?"
  4094. adviceCondition = append(adviceCondition, adviceWhere, orgID, scheduleDate, cost_type)
  4095. }
  4096. } else {
  4097. if len(execution_frequency) > 0 {
  4098. adviceWhere = "status = 1 AND user_org_id = ? AND record_date = ? AND (advice_type = 3 OR advice_type = 1) and execution_frequency = ?"
  4099. adviceCondition = append(adviceCondition, adviceWhere, orgID, scheduleDate, execution_frequency)
  4100. } else {
  4101. adviceWhere = "status = 1 AND user_org_id = ? AND record_date = ? AND (advice_type = 3 OR advice_type = 1)"
  4102. adviceCondition = append(adviceCondition, adviceWhere, orgID, scheduleDate)
  4103. }
  4104. }
  4105. }
  4106. }
  4107. } else if patientType == 1 {
  4108. if patient_id > 0 {
  4109. if execution_state > 0 {
  4110. if cost_type > 0 {
  4111. if len(execution_frequency) > 0 {
  4112. adviceWhere = "status = 1 AND user_org_id = ? AND record_date = ? AND advice_doctor = ? AND(advice_type = 3 OR advice_type = 1) and patient_id = ? and execution_state= ? and is_settle = ? and execution_frequency = ?"
  4113. adviceCondition = append(adviceCondition, adviceWhere, orgID, scheduleDate, adminUserId, patient_id, execution_state, cost_type, execution_frequency)
  4114. } else {
  4115. adviceWhere = "status = 1 AND user_org_id = ? AND record_date = ? AND advice_doctor = ? AND(advice_type = 3 OR advice_type = 1) and patient_id = ? and execution_state= ? and is_settle = ?"
  4116. adviceCondition = append(adviceCondition, adviceWhere, orgID, scheduleDate, adminUserId, patient_id, execution_state, cost_type)
  4117. }
  4118. } else {
  4119. if len(execution_frequency) > 0 {
  4120. adviceWhere = "status = 1 AND user_org_id = ? AND record_date = ? AND advice_doctor = ? AND(advice_type = 3 OR advice_type = 1) and patient_id = ? and execution_state= ? and execution_frequency = ?"
  4121. adviceCondition = append(adviceCondition, adviceWhere, orgID, scheduleDate, adminUserId, patient_id, execution_state, execution_frequency)
  4122. } else {
  4123. adviceWhere = "status = 1 AND user_org_id = ? AND record_date = ? AND advice_doctor = ? AND(advice_type = 3 OR advice_type = 1) and patient_id = ? and execution_state= ?"
  4124. adviceCondition = append(adviceCondition, adviceWhere, orgID, scheduleDate, adminUserId, patient_id, execution_state)
  4125. }
  4126. }
  4127. } else {
  4128. if cost_type > 0 {
  4129. if len(execution_frequency) > 0 {
  4130. adviceWhere = "status = 1 AND user_org_id = ? AND record_date = ? AND advice_doctor = ? AND(advice_type = 3 OR advice_type = 1) and patient_id = ? and is_settle=? and execution_frequency = ?"
  4131. adviceCondition = append(adviceCondition, adviceWhere, orgID, scheduleDate, adminUserId, patient_id, cost_type, execution_frequency)
  4132. } else {
  4133. adviceWhere = "status = 1 AND user_org_id = ? AND record_date = ? AND advice_doctor = ? AND(advice_type = 3 OR advice_type = 1) and patient_id = ? and is_settle=?"
  4134. adviceCondition = append(adviceCondition, adviceWhere, orgID, scheduleDate, adminUserId, patient_id, cost_type)
  4135. }
  4136. } else {
  4137. if len(execution_frequency) > 0 {
  4138. adviceWhere = "status = 1 AND user_org_id = ? AND record_date = ? AND advice_doctor = ? AND(advice_type = 3 OR advice_type = 1) and patient_id = ? and execution_frequency = ?"
  4139. adviceCondition = append(adviceCondition, adviceWhere, orgID, scheduleDate, adminUserId, patient_id, execution_frequency)
  4140. } else {
  4141. adviceWhere = "status = 1 AND user_org_id = ? AND record_date = ? AND advice_doctor = ? AND(advice_type = 3 OR advice_type = 1) and patient_id = ?"
  4142. adviceCondition = append(adviceCondition, adviceWhere, orgID, scheduleDate, adminUserId, patient_id)
  4143. }
  4144. }
  4145. }
  4146. } else {
  4147. if execution_state > 0 {
  4148. if cost_type > 0 {
  4149. if len(execution_frequency) > 0 {
  4150. adviceWhere = "status = 1 AND user_org_id = ? AND record_date = ? AND advice_doctor = ? AND(advice_type = 3 OR advice_type = 1) and execution_state = ? and is_settle=? and execution_frequency = ?"
  4151. adviceCondition = append(adviceCondition, adviceWhere, orgID, scheduleDate, adminUserId, execution_state, cost_type, execution_frequency)
  4152. } else {
  4153. adviceWhere = "status = 1 AND user_org_id = ? AND record_date = ? AND advice_doctor = ? AND(advice_type = 3 OR advice_type = 1) and execution_state = ? and is_settle=?"
  4154. adviceCondition = append(adviceCondition, adviceWhere, orgID, scheduleDate, adminUserId, execution_state, cost_type)
  4155. }
  4156. } else {
  4157. if len(execution_frequency) > 0 {
  4158. adviceWhere = "status = 1 AND user_org_id = ? AND record_date = ? AND advice_doctor = ? AND(advice_type = 3 OR advice_type = 1) and execution_state = ? and execution_frequency = ?"
  4159. adviceCondition = append(adviceCondition, adviceWhere, orgID, scheduleDate, adminUserId, execution_state, execution_frequency)
  4160. } else {
  4161. adviceWhere = "status = 1 AND user_org_id = ? AND record_date = ? AND advice_doctor = ? AND(advice_type = 3 OR advice_type = 1) and execution_state = ?"
  4162. adviceCondition = append(adviceCondition, adviceWhere, orgID, scheduleDate, adminUserId, execution_state)
  4163. }
  4164. }
  4165. } else {
  4166. if cost_type > 0 {
  4167. if len(execution_frequency) > 0 {
  4168. adviceWhere = "status = 1 AND user_org_id = ? AND record_date = ? AND advice_doctor = ? AND(advice_type = 3 OR advice_type = 1) and is_settle=? and execution_frequency = ?"
  4169. adviceCondition = append(adviceCondition, adviceWhere, orgID, scheduleDate, adminUserId, cost_type, execution_frequency)
  4170. } else {
  4171. adviceWhere = "status = 1 AND user_org_id = ? AND record_date = ? AND advice_doctor = ? AND(advice_type = 3 OR advice_type = 1) and is_settle=?"
  4172. adviceCondition = append(adviceCondition, adviceWhere, orgID, scheduleDate, adminUserId, cost_type)
  4173. }
  4174. } else {
  4175. if len(execution_frequency) > 0 {
  4176. adviceWhere = "status = 1 AND user_org_id = ? AND record_date = ? AND advice_doctor = ? AND(advice_type = 3 OR advice_type = 1) and execution_frequency = ?"
  4177. adviceCondition = append(adviceCondition, adviceWhere, orgID, scheduleDate, adminUserId, execution_frequency)
  4178. } else {
  4179. adviceWhere = "status = 1 AND user_org_id = ? AND record_date = ? AND advice_doctor = ? AND(advice_type = 3 OR advice_type = 1)"
  4180. adviceCondition = append(adviceCondition, adviceWhere, orgID, scheduleDate, adminUserId)
  4181. }
  4182. }
  4183. }
  4184. }
  4185. } else if patientType == 2 {
  4186. if patient_id > 0 {
  4187. if execution_state > 0 {
  4188. if cost_type > 0 {
  4189. if len(execution_frequency) > 0 {
  4190. adviceWhere = "status = 1 AND user_org_id = ? AND record_date = ? AND execution_staff = 0 AND(advice_type = 3 OR advice_type = 1 and patient_id = ?) and execution_state = ? and is_settle=? and execution_frequency = ?"
  4191. adviceCondition = append(adviceCondition, adviceWhere, orgID, scheduleDate, patient_id, execution_state, cost_type, execution_frequency)
  4192. } else {
  4193. adviceWhere = "status = 1 AND user_org_id = ? AND record_date = ? AND execution_staff = 0 AND(advice_type = 3 OR advice_type = 1 and patient_id = ?) and execution_state = ? and is_settle=?"
  4194. adviceCondition = append(adviceCondition, adviceWhere, orgID, scheduleDate, patient_id, execution_state, cost_type)
  4195. }
  4196. } else {
  4197. if len(execution_frequency) > 0 {
  4198. adviceWhere = "status = 1 AND user_org_id = ? AND record_date = ? AND execution_staff = 0 AND(advice_type = 3 OR advice_type = 1 and patient_id = ?) and execution_state = ?and execution_frequency = ?"
  4199. adviceCondition = append(adviceCondition, adviceWhere, orgID, scheduleDate, patient_id, execution_state, execution_frequency)
  4200. } else {
  4201. adviceWhere = "status = 1 AND user_org_id = ? AND record_date = ? AND execution_staff = 0 AND(advice_type = 3 OR advice_type = 1 and patient_id = ?) and execution_state = ?"
  4202. adviceCondition = append(adviceCondition, adviceWhere, orgID, scheduleDate, patient_id, execution_state)
  4203. }
  4204. }
  4205. } else {
  4206. if cost_type > 0 {
  4207. if len(execution_frequency) > 0 {
  4208. adviceWhere = "status = 1 AND user_org_id = ? AND record_date = ? AND execution_staff = 0 AND(advice_type = 3 OR advice_type = 1 and patient_id = ?) and is_settle=? and execution_frequency = ?"
  4209. adviceCondition = append(adviceCondition, adviceWhere, orgID, scheduleDate, patient_id, cost_type, execution_frequency)
  4210. } else {
  4211. adviceWhere = "status = 1 AND user_org_id = ? AND record_date = ? AND execution_staff = 0 AND(advice_type = 3 OR advice_type = 1 and patient_id = ?) and is_settle=?"
  4212. adviceCondition = append(adviceCondition, adviceWhere, orgID, scheduleDate, patient_id, cost_type)
  4213. }
  4214. } else {
  4215. if len(execution_frequency) > 0 {
  4216. adviceWhere = "status = 1 AND user_org_id = ? AND record_date = ? AND execution_staff = 0 AND(advice_type = 3 OR advice_type = 1 and patient_id = ?)and execution_frequency = ?"
  4217. adviceCondition = append(adviceCondition, adviceWhere, orgID, scheduleDate, patient_id, execution_frequency)
  4218. } else {
  4219. adviceWhere = "status = 1 AND user_org_id = ? AND record_date = ? AND execution_staff = 0 AND(advice_type = 3 OR advice_type = 1 and patient_id = ?)"
  4220. adviceCondition = append(adviceCondition, adviceWhere, orgID, scheduleDate, patient_id)
  4221. }
  4222. }
  4223. }
  4224. } else {
  4225. if execution_state > 0 {
  4226. if cost_type > 0 {
  4227. if len(execution_frequency) > 0 {
  4228. adviceWhere = "status = 1 AND user_org_id = ? AND record_date = ? AND execution_staff = 0 AND(advice_type = 3 OR advice_type = 1) and execution_state = ? and is_settle=? and execution_frequency = ?"
  4229. adviceCondition = append(adviceCondition, adviceWhere, orgID, scheduleDate, execution_state, cost_type, execution_frequency)
  4230. } else {
  4231. adviceWhere = "status = 1 AND user_org_id = ? AND record_date = ? AND execution_staff = 0 AND(advice_type = 3 OR advice_type = 1) and execution_state = ? and is_settle=?"
  4232. adviceCondition = append(adviceCondition, adviceWhere, orgID, scheduleDate, execution_state, cost_type)
  4233. }
  4234. } else {
  4235. if len(execution_frequency) > 0 {
  4236. adviceWhere = "status = 1 AND user_org_id = ? AND record_date = ? AND execution_staff = 0 AND(advice_type = 3 OR advice_type = 1) and execution_state = ? and execution_frequency = ?"
  4237. adviceCondition = append(adviceCondition, adviceWhere, orgID, scheduleDate, execution_state, execution_frequency)
  4238. } else {
  4239. adviceWhere = "status = 1 AND user_org_id = ? AND record_date = ? AND execution_staff = 0 AND(advice_type = 3 OR advice_type = 1) and execution_state = ?"
  4240. adviceCondition = append(adviceCondition, adviceWhere, orgID, scheduleDate, execution_state)
  4241. }
  4242. }
  4243. } else {
  4244. if cost_type > 0 {
  4245. if len(execution_frequency) > 0 {
  4246. adviceWhere = "status = 1 AND user_org_id = ? AND record_date = ? AND execution_staff = 0 AND(advice_type = 3 OR advice_type = 1) and is_settle = ? and execution_frequency = ?"
  4247. adviceCondition = append(adviceCondition, adviceWhere, orgID, scheduleDate, cost_type, execution_frequency)
  4248. } else {
  4249. adviceWhere = "status = 1 AND user_org_id = ? AND record_date = ? AND execution_staff = 0 AND(advice_type = 3 OR advice_type = 1) and is_settle = ?"
  4250. adviceCondition = append(adviceCondition, adviceWhere, orgID, scheduleDate, cost_type)
  4251. }
  4252. } else {
  4253. if len(execution_frequency) > 0 {
  4254. adviceWhere = "status = 1 AND user_org_id = ? AND record_date = ? AND execution_staff = 0 AND(advice_type = 3 OR advice_type = 1) and execution_frequency = ?"
  4255. adviceCondition = append(adviceCondition, adviceWhere, orgID, scheduleDate, execution_frequency)
  4256. } else {
  4257. adviceWhere = "status = 1 AND user_org_id = ? AND record_date = ? AND execution_staff = 0 AND(advice_type = 3 OR advice_type = 1)"
  4258. adviceCondition = append(adviceCondition, adviceWhere, orgID, scheduleDate)
  4259. }
  4260. }
  4261. }
  4262. }
  4263. }
  4264. } else if adviceType == 1 {
  4265. if patientType == 0 {
  4266. if patient_id > 0 {
  4267. if execution_state > 0 {
  4268. if cost_type > 0 {
  4269. if len(execution_frequency) > 0 {
  4270. adviceWhere = "status = 1 AND user_org_id = ? AND advice_type = 1 AND record_date = ? and patient_id = ? and execution_state = ? and is_settle = ? and execution_frequency = ?"
  4271. adviceCondition = append(adviceCondition, adviceWhere, orgID, scheduleDate, patient_id, execution_state, cost_type, execution_frequency)
  4272. } else {
  4273. adviceWhere = "status = 1 AND user_org_id = ? AND advice_type = 1 AND record_date = ? and patient_id = ? and execution_state = ? and is_settle = ?"
  4274. adviceCondition = append(adviceCondition, adviceWhere, orgID, scheduleDate, patient_id, execution_state, cost_type)
  4275. }
  4276. } else {
  4277. if len(execution_frequency) > 0 {
  4278. adviceWhere = "status = 1 AND user_org_id = ? AND advice_type = 1 AND record_date = ? and patient_id = ? and execution_state = ? and execution_frequency = ?"
  4279. adviceCondition = append(adviceCondition, adviceWhere, orgID, scheduleDate, patient_id, execution_state, execution_frequency)
  4280. } else {
  4281. adviceWhere = "status = 1 AND user_org_id = ? AND advice_type = 1 AND record_date = ? and patient_id = ? and execution_state = ?"
  4282. adviceCondition = append(adviceCondition, adviceWhere, orgID, scheduleDate, patient_id, execution_state)
  4283. }
  4284. }
  4285. } else {
  4286. if cost_type > 0 {
  4287. if len(execution_frequency) > 0 {
  4288. adviceWhere = "status = 1 AND user_org_id = ? AND advice_type = 1 AND record_date = ? and patient_id = ? and is_settle = ? and execution_frequency = ?"
  4289. adviceCondition = append(adviceCondition, adviceWhere, orgID, scheduleDate, patient_id, cost_type, execution_frequency)
  4290. } else {
  4291. adviceWhere = "status = 1 AND user_org_id = ? AND advice_type = 1 AND record_date = ? and patient_id = ? and is_settle = ? "
  4292. adviceCondition = append(adviceCondition, adviceWhere, orgID, scheduleDate, patient_id, cost_type)
  4293. }
  4294. } else {
  4295. if len(execution_frequency) > 0 {
  4296. adviceWhere = "status = 1 AND user_org_id = ? AND advice_type = 1 AND record_date = ? and patient_id = ? and execution_frequency = ?"
  4297. adviceCondition = append(adviceCondition, adviceWhere, orgID, scheduleDate, patient_id, execution_frequency)
  4298. } else {
  4299. adviceWhere = "status = 1 AND user_org_id = ? AND advice_type = 1 AND record_date = ? and patient_id = ? "
  4300. adviceCondition = append(adviceCondition, adviceWhere, orgID, scheduleDate, patient_id)
  4301. }
  4302. }
  4303. }
  4304. } else {
  4305. if execution_state > 0 {
  4306. if cost_type > 0 {
  4307. if len(execution_frequency) > 0 {
  4308. adviceWhere = "status = 1 AND user_org_id = ? AND advice_type = 1 AND record_date = ? and execution_state = ? and is_settle = ? and execution_frequency = ?"
  4309. adviceCondition = append(adviceCondition, adviceWhere, orgID, scheduleDate, execution_state, cost_type, execution_frequency)
  4310. } else {
  4311. adviceWhere = "status = 1 AND user_org_id = ? AND advice_type = 1 AND record_date = ? and execution_state = ? and is_settle = ?"
  4312. adviceCondition = append(adviceCondition, adviceWhere, orgID, scheduleDate, execution_state, cost_type)
  4313. }
  4314. } else {
  4315. if len(execution_frequency) > 0 {
  4316. adviceWhere = "status = 1 AND user_org_id = ? AND advice_type = 1 AND record_date = ? and execution_state = ? and execution_frequency = ?"
  4317. adviceCondition = append(adviceCondition, adviceWhere, orgID, scheduleDate, execution_state, execution_frequency)
  4318. } else {
  4319. adviceWhere = "status = 1 AND user_org_id = ? AND advice_type = 1 AND record_date = ? and execution_state = ?"
  4320. adviceCondition = append(adviceCondition, adviceWhere, orgID, scheduleDate, execution_state)
  4321. }
  4322. }
  4323. } else {
  4324. if cost_type > 0 {
  4325. adviceWhere = "status = 1 AND user_org_id = ? AND advice_type = 1 AND record_date = ? and is_settle = ? "
  4326. adviceCondition = append(adviceCondition, adviceWhere, orgID, scheduleDate, cost_type)
  4327. } else {
  4328. adviceWhere = "status = 1 AND user_org_id = ? AND advice_type = 1 AND record_date = ? "
  4329. adviceCondition = append(adviceCondition, adviceWhere, orgID, scheduleDate)
  4330. }
  4331. }
  4332. }
  4333. } else if patientType == 1 {
  4334. if patient_id > 0 {
  4335. if execution_state > 0 {
  4336. if cost_type > 0 {
  4337. if len(execution_frequency) > 0 {
  4338. adviceWhere = "status = 1 AND user_org_id = ? AND advice_type = 1 AND record_date = ? AND advice_doctor = ? and patient_id = ? and execution_state = ? and is_settle = ? and execution_frequency = ?"
  4339. adviceCondition = append(adviceCondition, adviceWhere, orgID, scheduleDate, adminUserId, patient_id, execution_state, cost_type, execution_frequency)
  4340. } else {
  4341. adviceWhere = "status = 1 AND user_org_id = ? AND advice_type = 1 AND record_date = ? AND advice_doctor = ? and patient_id = ? and execution_state = ? and is_settle = ?"
  4342. adviceCondition = append(adviceCondition, adviceWhere, orgID, scheduleDate, adminUserId, patient_id, execution_state, cost_type)
  4343. }
  4344. } else {
  4345. if len(execution_frequency) > 0 {
  4346. adviceWhere = "status = 1 AND user_org_id = ? AND advice_type = 1 AND record_date = ? AND advice_doctor = ? and patient_id = ? and execution_state = ? and execution_frequency = ?"
  4347. adviceCondition = append(adviceCondition, adviceWhere, orgID, scheduleDate, adminUserId, patient_id, execution_state, execution_frequency)
  4348. } else {
  4349. adviceWhere = "status = 1 AND user_org_id = ? AND advice_type = 1 AND record_date = ? AND advice_doctor = ? and patient_id = ? and execution_state = ?"
  4350. adviceCondition = append(adviceCondition, adviceWhere, orgID, scheduleDate, adminUserId, patient_id, execution_state)
  4351. }
  4352. }
  4353. } else {
  4354. if cost_type > 0 {
  4355. if len(execution_frequency) > 0 {
  4356. adviceWhere = "status = 1 AND user_org_id = ? AND advice_type = 1 AND record_date = ? AND advice_doctor = ? and patient_id = ? and is_settle = ?and execution_frequency = ?"
  4357. adviceCondition = append(adviceCondition, adviceWhere, orgID, scheduleDate, adminUserId, patient_id, cost_type, execution_frequency)
  4358. } else {
  4359. adviceWhere = "status = 1 AND user_org_id = ? AND advice_type = 1 AND record_date = ? AND advice_doctor = ? and patient_id = ? and is_settle = ?"
  4360. adviceCondition = append(adviceCondition, adviceWhere, orgID, scheduleDate, adminUserId, patient_id, cost_type)
  4361. }
  4362. } else {
  4363. if len(execution_frequency) > 0 {
  4364. adviceWhere = "status = 1 AND user_org_id = ? AND advice_type = 1 AND record_date = ? AND advice_doctor = ? and patient_id = ? and execution_frequency = ?"
  4365. adviceCondition = append(adviceCondition, adviceWhere, orgID, scheduleDate, adminUserId, patient_id, execution_frequency)
  4366. } else {
  4367. adviceWhere = "status = 1 AND user_org_id = ? AND advice_type = 1 AND record_date = ? AND advice_doctor = ? and patient_id = ?"
  4368. adviceCondition = append(adviceCondition, adviceWhere, orgID, scheduleDate, adminUserId, patient_id)
  4369. }
  4370. }
  4371. }
  4372. } else {
  4373. if execution_state > 0 {
  4374. if cost_type > 0 {
  4375. if len(execution_frequency) > 0 {
  4376. adviceWhere = "status = 1 AND user_org_id = ? AND advice_type = 1 AND record_date = ? AND advice_doctor = ? and execution_state=? and is_settle = ?and execution_frequency = ?"
  4377. adviceCondition = append(adviceCondition, adviceWhere, orgID, scheduleDate, adminUserId, execution_state, cost_type, execution_frequency)
  4378. } else {
  4379. adviceWhere = "status = 1 AND user_org_id = ? AND advice_type = 1 AND record_date = ? AND advice_doctor = ? and execution_state=? and is_settle = ?"
  4380. adviceCondition = append(adviceCondition, adviceWhere, orgID, scheduleDate, adminUserId, execution_state, cost_type)
  4381. }
  4382. } else {
  4383. if len(execution_frequency) > 0 {
  4384. adviceWhere = "status = 1 AND user_org_id = ? AND advice_type = 1 AND record_date = ? AND advice_doctor = ? and execution_state=?and execution_frequency = ?"
  4385. adviceCondition = append(adviceCondition, adviceWhere, orgID, scheduleDate, adminUserId, execution_state, execution_frequency)
  4386. } else {
  4387. adviceWhere = "status = 1 AND user_org_id = ? AND advice_type = 1 AND record_date = ? AND advice_doctor = ? and execution_state=?"
  4388. adviceCondition = append(adviceCondition, adviceWhere, orgID, scheduleDate, adminUserId, execution_state)
  4389. }
  4390. }
  4391. } else {
  4392. if cost_type > 0 {
  4393. if len(execution_frequency) > 0 {
  4394. adviceWhere = "status = 1 AND user_org_id = ? AND advice_type = 1 AND record_date = ? AND advice_doctor = ? and is_settle = ? and execution_frequency = ?"
  4395. adviceCondition = append(adviceCondition, adviceWhere, orgID, scheduleDate, adminUserId, cost_type, execution_frequency)
  4396. } else {
  4397. adviceWhere = "status = 1 AND user_org_id = ? AND advice_type = 1 AND record_date = ? AND advice_doctor = ? and is_settle = ? "
  4398. adviceCondition = append(adviceCondition, adviceWhere, orgID, scheduleDate, adminUserId, cost_type)
  4399. }
  4400. } else {
  4401. if len(execution_frequency) > 0 {
  4402. adviceWhere = "status = 1 AND user_org_id = ? AND advice_type = 1 AND record_date = ? AND advice_doctor = ? and execution_frequency = ?"
  4403. adviceCondition = append(adviceCondition, adviceWhere, orgID, scheduleDate, adminUserId, execution_frequency)
  4404. } else {
  4405. adviceWhere = "status = 1 AND user_org_id = ? AND advice_type = 1 AND record_date = ? AND advice_doctor = ? "
  4406. adviceCondition = append(adviceCondition, adviceWhere, orgID, scheduleDate, adminUserId)
  4407. }
  4408. }
  4409. }
  4410. }
  4411. } else if patientType == 2 {
  4412. if patient_id > 0 {
  4413. if execution_state > 0 {
  4414. if cost_type > 0 {
  4415. if len(execution_frequency) > 0 {
  4416. adviceWhere = "status = 1 AND user_org_id = ? AND advice_type = 1 AND record_date = ? AND execution_staff = 0 and patient_id = ? and execution_state = ? and is_settle = ?and execution_frequency = ?"
  4417. adviceCondition = append(adviceCondition, adviceWhere, orgID, scheduleDate, patient_id, execution_state, cost_type, execution_frequency)
  4418. } else {
  4419. adviceWhere = "status = 1 AND user_org_id = ? AND advice_type = 1 AND record_date = ? AND execution_staff = 0 and patient_id = ? and execution_state = ? and is_settle = ?"
  4420. adviceCondition = append(adviceCondition, adviceWhere, orgID, scheduleDate, patient_id, execution_state, cost_type)
  4421. }
  4422. } else {
  4423. if len(execution_frequency) > 0 {
  4424. adviceWhere = "status = 1 AND user_org_id = ? AND advice_type = 1 AND record_date = ? AND execution_staff = 0 and patient_id = ? and execution_state = ? and execution_frequency = ?"
  4425. adviceCondition = append(adviceCondition, adviceWhere, orgID, scheduleDate, patient_id, execution_state, execution_frequency)
  4426. } else {
  4427. adviceWhere = "status = 1 AND user_org_id = ? AND advice_type = 1 AND record_date = ? AND execution_staff = 0 and patient_id = ? and execution_state = ?"
  4428. adviceCondition = append(adviceCondition, adviceWhere, orgID, scheduleDate, patient_id, execution_state)
  4429. }
  4430. }
  4431. } else {
  4432. if cost_type > 0 {
  4433. if len(execution_frequency) > 0 {
  4434. adviceWhere = "status = 1 AND user_org_id = ? AND advice_type = 1 AND record_date = ? AND execution_staff = 0 and patient_id = ? and is_settle = ? and execution_frequency = ?"
  4435. adviceCondition = append(adviceCondition, adviceWhere, orgID, scheduleDate, patient_id, cost_type, execution_frequency)
  4436. } else {
  4437. adviceWhere = "status = 1 AND user_org_id = ? AND advice_type = 1 AND record_date = ? AND execution_staff = 0 and patient_id = ? and is_settle = ?"
  4438. adviceCondition = append(adviceCondition, adviceWhere, orgID, scheduleDate, patient_id, cost_type)
  4439. }
  4440. } else {
  4441. if len(execution_frequency) > 0 {
  4442. adviceWhere = "status = 1 AND user_org_id = ? AND advice_type = 1 AND record_date = ? AND execution_staff = 0 and patient_id = ? and execution_frequency = ?"
  4443. adviceCondition = append(adviceCondition, adviceWhere, orgID, scheduleDate, patient_id, execution_frequency)
  4444. } else {
  4445. adviceWhere = "status = 1 AND user_org_id = ? AND advice_type = 1 AND record_date = ? AND execution_staff = 0 and patient_id = ?"
  4446. adviceCondition = append(adviceCondition, adviceWhere, orgID, scheduleDate, patient_id)
  4447. }
  4448. }
  4449. }
  4450. } else {
  4451. if execution_state > 0 {
  4452. if cost_type > 0 {
  4453. if len(execution_frequency) > 0 {
  4454. adviceWhere = "status = 1 AND user_org_id = ? AND advice_type = 1 AND record_date = ? AND execution_staff = 0 and execution_state = ? and is_settle = ? and execution_frequency = ?"
  4455. adviceCondition = append(adviceCondition, adviceWhere, orgID, scheduleDate, execution_state, cost_type, execution_frequency)
  4456. } else {
  4457. adviceWhere = "status = 1 AND user_org_id = ? AND advice_type = 1 AND record_date = ? AND execution_staff = 0 and execution_state = ? and is_settle = ?"
  4458. adviceCondition = append(adviceCondition, adviceWhere, orgID, scheduleDate, execution_state, cost_type)
  4459. }
  4460. } else {
  4461. if len(execution_frequency) > 0 {
  4462. adviceWhere = "status = 1 AND user_org_id = ? AND advice_type = 1 AND record_date = ? AND execution_staff = 0 and execution_state = ? and execution_frequency = ?"
  4463. adviceCondition = append(adviceCondition, adviceWhere, orgID, scheduleDate, execution_state, execution_frequency)
  4464. } else {
  4465. adviceWhere = "status = 1 AND user_org_id = ? AND advice_type = 1 AND record_date = ? AND execution_staff = 0 and execution_state = ?"
  4466. adviceCondition = append(adviceCondition, adviceWhere, orgID, scheduleDate, execution_state)
  4467. }
  4468. }
  4469. } else {
  4470. if cost_type > 0 {
  4471. if len(execution_frequency) > 0 {
  4472. adviceWhere = "status = 1 AND user_org_id = ? AND advice_type = 1 AND record_date = ? AND execution_staff = 0 and is_settle = ? and execution_frequency = ?"
  4473. adviceCondition = append(adviceCondition, adviceWhere, orgID, scheduleDate, cost_type, execution_frequency)
  4474. } else {
  4475. adviceWhere = "status = 1 AND user_org_id = ? AND advice_type = 1 AND record_date = ? AND execution_staff = 0 and is_settle = ?"
  4476. adviceCondition = append(adviceCondition, adviceWhere, orgID, scheduleDate, cost_type)
  4477. }
  4478. } else {
  4479. if len(execution_frequency) > 0 {
  4480. adviceWhere = "status = 1 AND user_org_id = ? AND advice_type = 1 AND record_date = ? AND execution_staff = 0 and execution_frequency = ?"
  4481. adviceCondition = append(adviceCondition, adviceWhere, orgID, scheduleDate, execution_frequency)
  4482. } else {
  4483. adviceWhere = "status = 1 AND user_org_id = ? AND advice_type = 1 AND record_date = ? AND execution_staff = 0"
  4484. adviceCondition = append(adviceCondition, adviceWhere, orgID, scheduleDate)
  4485. }
  4486. }
  4487. }
  4488. }
  4489. }
  4490. } else if adviceType == 3 {
  4491. if patientType == 0 {
  4492. if patient_id > 0 {
  4493. if execution_state > 0 {
  4494. if cost_type > 0 {
  4495. if len(execution_frequency) > 0 {
  4496. adviceWhere = "status = 1 AND user_org_id = ? AND advice_type = 3 AND record_date = ? and patient_id = ? and execution_state = ? and is_settle = ? and execution_frequency =?"
  4497. adviceCondition = append(adviceCondition, adviceWhere, orgID, scheduleDate, patient_id, execution_state, cost_type, execution_frequency)
  4498. } else {
  4499. adviceWhere = "status = 1 AND user_org_id = ? AND advice_type = 3 AND record_date = ? and patient_id = ? and execution_state = ? and is_settle = ?"
  4500. adviceCondition = append(adviceCondition, adviceWhere, orgID, scheduleDate, patient_id, execution_state, cost_type)
  4501. }
  4502. } else {
  4503. if len(execution_frequency) > 0 {
  4504. adviceWhere = "status = 1 AND user_org_id = ? AND advice_type = 3 AND record_date = ? and patient_id = ? and execution_state = ? and execution_frequency =?"
  4505. adviceCondition = append(adviceCondition, adviceWhere, orgID, scheduleDate, patient_id, execution_state, execution_frequency)
  4506. } else {
  4507. adviceWhere = "status = 1 AND user_org_id = ? AND advice_type = 3 AND record_date = ? and patient_id = ? and execution_state = ?"
  4508. adviceCondition = append(adviceCondition, adviceWhere, orgID, scheduleDate, patient_id, execution_state)
  4509. }
  4510. }
  4511. } else {
  4512. if cost_type > 0 {
  4513. if len(execution_frequency) > 0 {
  4514. adviceWhere = "status = 1 AND user_org_id = ? AND advice_type = 3 AND record_date = ? and patient_id = ? and is_settle = ? and execution_frequency =?"
  4515. adviceCondition = append(adviceCondition, adviceWhere, orgID, scheduleDate, patient_id, cost_type, execution_frequency)
  4516. } else {
  4517. adviceWhere = "status = 1 AND user_org_id = ? AND advice_type = 3 AND record_date = ? and patient_id = ? and is_settle = ? "
  4518. adviceCondition = append(adviceCondition, adviceWhere, orgID, scheduleDate, patient_id, cost_type)
  4519. }
  4520. } else {
  4521. if len(execution_frequency) > 0 {
  4522. adviceWhere = "status = 1 AND user_org_id = ? AND advice_type = 3 AND record_date = ? and patient_id = ? and execution_frequency =?"
  4523. adviceCondition = append(adviceCondition, adviceWhere, orgID, scheduleDate, patient_id, execution_frequency)
  4524. } else {
  4525. adviceWhere = "status = 1 AND user_org_id = ? AND advice_type = 3 AND record_date = ? and patient_id = ? "
  4526. adviceCondition = append(adviceCondition, adviceWhere, orgID, scheduleDate, patient_id)
  4527. }
  4528. }
  4529. }
  4530. } else {
  4531. if execution_state > 0 {
  4532. if cost_type > 0 {
  4533. if len(execution_frequency) > 0 {
  4534. adviceWhere = "status = 1 AND user_org_id = ? AND advice_type = 3 AND record_date = ? and execution_state =? and is_settle = ? and execution_frequency =?"
  4535. adviceCondition = append(adviceCondition, adviceWhere, orgID, scheduleDate, execution_state, cost_type, execution_frequency)
  4536. } else {
  4537. adviceWhere = "status = 1 AND user_org_id = ? AND advice_type = 3 AND record_date = ? and execution_state =? and is_settle = ?"
  4538. adviceCondition = append(adviceCondition, adviceWhere, orgID, scheduleDate, execution_state, cost_type)
  4539. }
  4540. } else {
  4541. if len(execution_frequency) > 0 {
  4542. adviceWhere = "status = 1 AND user_org_id = ? AND advice_type = 3 AND record_date = ? and execution_state =? and execution_frequency =?"
  4543. adviceCondition = append(adviceCondition, adviceWhere, orgID, scheduleDate, execution_state, execution_frequency)
  4544. } else {
  4545. adviceWhere = "status = 1 AND user_org_id = ? AND advice_type = 3 AND record_date = ? and execution_state =? "
  4546. adviceCondition = append(adviceCondition, adviceWhere, orgID, scheduleDate, execution_state)
  4547. }
  4548. }
  4549. } else {
  4550. if cost_type > 0 {
  4551. if len(execution_frequency) > 0 {
  4552. adviceWhere = "status = 1 AND user_org_id = ? AND advice_type = 3 AND record_date = ? and is_settle = ? and execution_frequency =?"
  4553. adviceCondition = append(adviceCondition, adviceWhere, orgID, scheduleDate, cost_type, execution_frequency)
  4554. } else {
  4555. adviceWhere = "status = 1 AND user_org_id = ? AND advice_type = 3 AND record_date = ? and is_settle = ? "
  4556. adviceCondition = append(adviceCondition, adviceWhere, orgID, scheduleDate, cost_type)
  4557. }
  4558. } else {
  4559. if len(execution_frequency) > 0 {
  4560. adviceWhere = "status = 1 AND user_org_id = ? AND advice_type = 3 AND record_date = ? and execution_frequency =?"
  4561. adviceCondition = append(adviceCondition, adviceWhere, orgID, scheduleDate, execution_frequency)
  4562. } else {
  4563. adviceWhere = "status = 1 AND user_org_id = ? AND advice_type = 3 AND record_date = ? "
  4564. adviceCondition = append(adviceCondition, adviceWhere, orgID, scheduleDate)
  4565. }
  4566. }
  4567. }
  4568. }
  4569. } else if patientType == 1 {
  4570. if patient_id > 0 {
  4571. if execution_state > 0 {
  4572. if cost_type > 0 {
  4573. if len(execution_frequency) > 0 {
  4574. adviceWhere = "status = 1 AND user_org_id = ? AND record_date = ? AND advice_type = 3 AND advice_doctor = ? and patient_id = ? and execution_state = ? and is_settle = ? and execution_frequency = ?"
  4575. adviceCondition = append(adviceCondition, adviceWhere, orgID, scheduleDate, adminUserId, patient_id, execution_state, cost_type, execution_frequency)
  4576. } else {
  4577. adviceWhere = "status = 1 AND user_org_id = ? AND record_date = ? AND advice_type = 3 AND advice_doctor = ? and patient_id = ? and execution_state = ? and is_settle = ?"
  4578. adviceCondition = append(adviceCondition, adviceWhere, orgID, scheduleDate, adminUserId, patient_id, execution_state, cost_type)
  4579. }
  4580. } else {
  4581. if len(execution_frequency) > 0 {
  4582. adviceWhere = "status = 1 AND user_org_id = ? AND record_date = ? AND advice_type = 3 AND advice_doctor = ? and patient_id = ? and execution_state = ? and execution_frequency = ?"
  4583. adviceCondition = append(adviceCondition, adviceWhere, orgID, scheduleDate, adminUserId, patient_id, execution_state, execution_frequency)
  4584. } else {
  4585. adviceWhere = "status = 1 AND user_org_id = ? AND record_date = ? AND advice_type = 3 AND advice_doctor = ? and patient_id = ? and execution_state = ?"
  4586. adviceCondition = append(adviceCondition, adviceWhere, orgID, scheduleDate, adminUserId, patient_id, execution_state)
  4587. }
  4588. }
  4589. } else {
  4590. if cost_type > 0 {
  4591. if len(execution_frequency) > 0 {
  4592. adviceWhere = "status = 1 AND user_org_id = ? AND record_date = ? AND advice_type = 3 AND advice_doctor = ? and patient_id = ? and is_settle = ? and execution_frequency = ?"
  4593. adviceCondition = append(adviceCondition, adviceWhere, orgID, scheduleDate, adminUserId, patient_id, cost_type, execution_frequency)
  4594. } else {
  4595. adviceWhere = "status = 1 AND user_org_id = ? AND record_date = ? AND advice_type = 3 AND advice_doctor = ? and patient_id = ? and is_settle = ?"
  4596. adviceCondition = append(adviceCondition, adviceWhere, orgID, scheduleDate, adminUserId, patient_id, cost_type)
  4597. }
  4598. } else {
  4599. if len(execution_frequency) > 0 {
  4600. adviceWhere = "status = 1 AND user_org_id = ? AND record_date = ? AND advice_type = 3 AND advice_doctor = ? and patient_id = ? and execution_frequency = ?"
  4601. adviceCondition = append(adviceCondition, adviceWhere, orgID, scheduleDate, adminUserId, patient_id, execution_frequency)
  4602. } else {
  4603. adviceWhere = "status = 1 AND user_org_id = ? AND record_date = ? AND advice_type = 3 AND advice_doctor = ? and patient_id = ?"
  4604. adviceCondition = append(adviceCondition, adviceWhere, orgID, scheduleDate, adminUserId, patient_id)
  4605. }
  4606. }
  4607. }
  4608. } else {
  4609. if execution_state > 0 {
  4610. if cost_type > 0 {
  4611. if len(execution_frequency) > 0 {
  4612. adviceWhere = "status = 1 AND user_org_id = ? AND record_date = ? AND advice_type = 3 AND advice_doctor = ? and execution_state =? and is_settle = ? and execution_frequency = ?"
  4613. adviceCondition = append(adviceCondition, adviceWhere, orgID, scheduleDate, adminUserId, execution_state, cost_type, execution_frequency)
  4614. } else {
  4615. adviceWhere = "status = 1 AND user_org_id = ? AND record_date = ? AND advice_type = 3 AND advice_doctor = ? and execution_state =? and is_settle = ?"
  4616. adviceCondition = append(adviceCondition, adviceWhere, orgID, scheduleDate, adminUserId, execution_state, cost_type)
  4617. }
  4618. } else {
  4619. if len(execution_frequency) > 0 {
  4620. adviceWhere = "status = 1 AND user_org_id = ? AND record_date = ? AND advice_type = 3 AND advice_doctor = ? and execution_state =?and execution_frequency = ? "
  4621. adviceCondition = append(adviceCondition, adviceWhere, orgID, scheduleDate, adminUserId, execution_state, execution_frequency)
  4622. } else {
  4623. adviceWhere = "status = 1 AND user_org_id = ? AND record_date = ? AND advice_type = 3 AND advice_doctor = ? and execution_state =? "
  4624. adviceCondition = append(adviceCondition, adviceWhere, orgID, scheduleDate, adminUserId, execution_state)
  4625. }
  4626. }
  4627. } else {
  4628. if cost_type > 0 {
  4629. if len(execution_frequency) > 0 {
  4630. adviceWhere = "status = 1 AND user_org_id = ? AND record_date = ? AND advice_type = 3 AND advice_doctor = ? and is_settle = ? and execution_frequency = ?"
  4631. adviceCondition = append(adviceCondition, adviceWhere, orgID, scheduleDate, adminUserId, cost_type, execution_frequency)
  4632. } else {
  4633. adviceWhere = "status = 1 AND user_org_id = ? AND record_date = ? AND advice_type = 3 AND advice_doctor = ? and is_settle = ?"
  4634. adviceCondition = append(adviceCondition, adviceWhere, orgID, scheduleDate, adminUserId, cost_type)
  4635. }
  4636. } else {
  4637. if len(execution_frequency) > 0 {
  4638. adviceWhere = "status = 1 AND user_org_id = ? AND record_date = ? AND advice_type = 3 AND advice_doctor = ? and execution_frequency = ?"
  4639. adviceCondition = append(adviceCondition, adviceWhere, orgID, scheduleDate, adminUserId, execution_frequency)
  4640. } else {
  4641. adviceWhere = "status = 1 AND user_org_id = ? AND record_date = ? AND advice_type = 3 AND advice_doctor = ? "
  4642. adviceCondition = append(adviceCondition, adviceWhere, orgID, scheduleDate, adminUserId)
  4643. }
  4644. }
  4645. }
  4646. }
  4647. } else if patientType == 2 {
  4648. if patient_id > 0 {
  4649. if execution_state > 0 {
  4650. if cost_type > 0 {
  4651. if len(execution_frequency) > 0 {
  4652. adviceWhere = "status = 1 AND user_org_id = ? AND record_date = ? AND advice_type = 3 AND execution_staff = 0 and patient_id = ? and execution_state = ? and is_settle = ? and execution_frequency = ?"
  4653. adviceCondition = append(adviceCondition, adviceWhere, orgID, scheduleDate, patient_id, execution_state, cost_type, execution_frequency)
  4654. } else {
  4655. adviceWhere = "status = 1 AND user_org_id = ? AND record_date = ? AND advice_type = 3 AND execution_staff = 0 and patient_id = ? and execution_state = ? and is_settle = ?"
  4656. adviceCondition = append(adviceCondition, adviceWhere, orgID, scheduleDate, patient_id, execution_state, cost_type)
  4657. }
  4658. } else {
  4659. if len(execution_frequency) > 0 {
  4660. adviceWhere = "status = 1 AND user_org_id = ? AND record_date = ? AND advice_type = 3 AND execution_staff = 0 and patient_id = ? and execution_state = ? and execution_frequency = ?"
  4661. adviceCondition = append(adviceCondition, adviceWhere, orgID, scheduleDate, patient_id, execution_state, execution_frequency)
  4662. } else {
  4663. adviceWhere = "status = 1 AND user_org_id = ? AND record_date = ? AND advice_type = 3 AND execution_staff = 0 and patient_id = ? and execution_state = ?"
  4664. adviceCondition = append(adviceCondition, adviceWhere, orgID, scheduleDate, patient_id, execution_state)
  4665. }
  4666. }
  4667. } else {
  4668. if cost_type > 0 {
  4669. if len(execution_frequency) > 0 {
  4670. adviceWhere = "status = 1 AND user_org_id = ? AND record_date = ? AND advice_type = 3 AND execution_staff = 0 and patient_id = ? and is_settle = ? and execution_frequency = ?"
  4671. adviceCondition = append(adviceCondition, adviceWhere, orgID, scheduleDate, patient_id, cost_type, execution_frequency)
  4672. } else {
  4673. adviceWhere = "status = 1 AND user_org_id = ? AND record_date = ? AND advice_type = 3 AND execution_staff = 0 and patient_id = ? and is_settle = ?"
  4674. adviceCondition = append(adviceCondition, adviceWhere, orgID, scheduleDate, patient_id, cost_type)
  4675. }
  4676. } else {
  4677. if len(execution_frequency) > 0 {
  4678. adviceWhere = "status = 1 AND user_org_id = ? AND record_date = ? AND advice_type = 3 AND execution_staff = 0 and patient_id = ? and execution_frequency = ?"
  4679. adviceCondition = append(adviceCondition, adviceWhere, orgID, scheduleDate, patient_id, execution_frequency)
  4680. } else {
  4681. adviceWhere = "status = 1 AND user_org_id = ? AND record_date = ? AND advice_type = 3 AND execution_staff = 0 and patient_id = ?"
  4682. adviceCondition = append(adviceCondition, adviceWhere, orgID, scheduleDate, patient_id)
  4683. }
  4684. }
  4685. }
  4686. } else {
  4687. if execution_state > 0 {
  4688. if cost_type > 0 {
  4689. if len(execution_frequency) > 0 {
  4690. adviceWhere = "status = 1 AND user_org_id = ? AND record_date = ? AND advice_type = 3 AND execution_staff = 0 and execution_state= ? and is_settle = ? and execution_frequency = ?"
  4691. adviceCondition = append(adviceCondition, adviceWhere, orgID, scheduleDate, execution_state, cost_type, execution_frequency)
  4692. } else {
  4693. adviceWhere = "status = 1 AND user_org_id = ? AND record_date = ? AND advice_type = 3 AND execution_staff = 0 and execution_state= ? and is_settle = ?"
  4694. adviceCondition = append(adviceCondition, adviceWhere, orgID, scheduleDate, execution_state, cost_type)
  4695. }
  4696. } else {
  4697. if len(execution_frequency) > 0 {
  4698. adviceWhere = "status = 1 AND user_org_id = ? AND record_date = ? AND advice_type = 3 AND execution_staff = 0 and execution_state= ? and execution_frequency = ?"
  4699. adviceCondition = append(adviceCondition, adviceWhere, orgID, scheduleDate, execution_state, execution_frequency)
  4700. } else {
  4701. adviceWhere = "status = 1 AND user_org_id = ? AND record_date = ? AND advice_type = 3 AND execution_staff = 0 and execution_state= ?"
  4702. adviceCondition = append(adviceCondition, adviceWhere, orgID, scheduleDate, execution_state)
  4703. }
  4704. }
  4705. } else {
  4706. if cost_type > 0 {
  4707. if len(execution_frequency) > 0 {
  4708. adviceWhere = "status = 1 AND user_org_id = ? AND record_date = ? AND advice_type = 3 AND execution_staff = 0 and is_settle = ? and execution_frequency = ?"
  4709. adviceCondition = append(adviceCondition, adviceWhere, orgID, scheduleDate, cost_type, execution_frequency)
  4710. } else {
  4711. adviceWhere = "status = 1 AND user_org_id = ? AND record_date = ? AND advice_type = 3 AND execution_staff = 0 and is_settle = ?"
  4712. adviceCondition = append(adviceCondition, adviceWhere, orgID, scheduleDate, cost_type)
  4713. }
  4714. } else {
  4715. if len(execution_frequency) > 0 {
  4716. adviceWhere = "status = 1 AND user_org_id = ? AND record_date = ? AND advice_type = 3 AND execution_staff = 0 and execution_frequency = ?"
  4717. adviceCondition = append(adviceCondition, adviceWhere, orgID, scheduleDate, execution_frequency)
  4718. } else {
  4719. adviceWhere = "status = 1 AND user_org_id = ? AND record_date = ? AND advice_type = 3 AND execution_staff = 0"
  4720. adviceCondition = append(adviceCondition, adviceWhere, orgID, scheduleDate)
  4721. }
  4722. }
  4723. }
  4724. }
  4725. }
  4726. } else if adviceType == 2 && len(deliverWay) > 0 {
  4727. if patientType == 0 {
  4728. if patient_id > 0 {
  4729. if execution_state > 0 {
  4730. if cost_type > 0 {
  4731. if len(execution_frequency) > 0 {
  4732. adviceWhere = "status = 1 AND user_org_id = ? AND advice_type = 2 AND record_date = ? and delivery_way = ? and patient_id = ? and execution_state = ? and is_settle = ? and execution_frequency = ?"
  4733. adviceCondition = append(adviceCondition, adviceWhere, orgID, scheduleDate, deliverWay, patient_id, execution_state, cost_type, execution_frequency)
  4734. } else {
  4735. adviceWhere = "status = 1 AND user_org_id = ? AND advice_type = 2 AND record_date = ? and delivery_way = ? and patient_id = ? and execution_state = ? and is_settle = ?"
  4736. adviceCondition = append(adviceCondition, adviceWhere, orgID, scheduleDate, deliverWay, patient_id, execution_state, cost_type)
  4737. }
  4738. } else {
  4739. if len(execution_frequency) > 0 {
  4740. adviceWhere = "status = 1 AND user_org_id = ? AND advice_type = 2 AND record_date = ? and delivery_way = ? and patient_id = ? and execution_state = ? and execution_frequency = ?"
  4741. adviceCondition = append(adviceCondition, adviceWhere, orgID, scheduleDate, deliverWay, patient_id, execution_state, execution_frequency)
  4742. } else {
  4743. adviceWhere = "status = 1 AND user_org_id = ? AND advice_type = 2 AND record_date = ? and delivery_way = ? and patient_id = ? and execution_state = ?"
  4744. adviceCondition = append(adviceCondition, adviceWhere, orgID, scheduleDate, deliverWay, patient_id, execution_state)
  4745. }
  4746. }
  4747. } else {
  4748. if cost_type > 0 {
  4749. if len(execution_frequency) > 0 {
  4750. adviceWhere = "status = 1 AND user_org_id = ? AND advice_type = 2 AND record_date = ? and delivery_way = ? and patient_id = ? and is_settle = ? and execution_frequency = ?"
  4751. adviceCondition = append(adviceCondition, adviceWhere, orgID, scheduleDate, deliverWay, patient_id, cost_type, execution_frequency)
  4752. } else {
  4753. adviceWhere = "status = 1 AND user_org_id = ? AND advice_type = 2 AND record_date = ? and delivery_way = ? and patient_id = ? and is_settle = ?"
  4754. adviceCondition = append(adviceCondition, adviceWhere, orgID, scheduleDate, deliverWay, patient_id, cost_type)
  4755. }
  4756. } else {
  4757. if len(execution_frequency) > 0 {
  4758. adviceWhere = "status = 1 AND user_org_id = ? AND advice_type = 2 AND record_date = ? and delivery_way = ? and patient_id = ? and execution_frequency = ?"
  4759. adviceCondition = append(adviceCondition, adviceWhere, orgID, scheduleDate, deliverWay, patient_id, execution_frequency)
  4760. } else {
  4761. adviceWhere = "status = 1 AND user_org_id = ? AND advice_type = 2 AND record_date = ? and delivery_way = ? and patient_id = ?"
  4762. adviceCondition = append(adviceCondition, adviceWhere, orgID, scheduleDate, deliverWay, patient_id)
  4763. }
  4764. }
  4765. }
  4766. } else {
  4767. if execution_state > 0 {
  4768. if cost_type > 0 {
  4769. if len(execution_frequency) > 0 {
  4770. adviceWhere = "status = 1 AND user_org_id = ? AND advice_type = 2 AND record_date = ? and delivery_way = ? and execution_state = ? and is_settle = ? and execution_frequency = ?"
  4771. adviceCondition = append(adviceCondition, adviceWhere, orgID, scheduleDate, deliverWay, execution_state, cost_type, execution_frequency)
  4772. } else {
  4773. adviceWhere = "status = 1 AND user_org_id = ? AND advice_type = 2 AND record_date = ? and delivery_way = ? and execution_state = ? and is_settle = ?"
  4774. adviceCondition = append(adviceCondition, adviceWhere, orgID, scheduleDate, deliverWay, execution_state, cost_type)
  4775. }
  4776. } else {
  4777. if len(execution_frequency) > 0 {
  4778. adviceWhere = "status = 1 AND user_org_id = ? AND advice_type = 2 AND record_date = ? and delivery_way = ? and execution_state = ? and execution_frequency = ?"
  4779. adviceCondition = append(adviceCondition, adviceWhere, orgID, scheduleDate, deliverWay, execution_state, execution_frequency)
  4780. } else {
  4781. adviceWhere = "status = 1 AND user_org_id = ? AND advice_type = 2 AND record_date = ? and delivery_way = ? and execution_state = ?"
  4782. adviceCondition = append(adviceCondition, adviceWhere, orgID, scheduleDate, deliverWay, execution_state)
  4783. }
  4784. }
  4785. } else {
  4786. if cost_type > 0 {
  4787. if len(execution_frequency) > 0 {
  4788. adviceWhere = "status = 1 AND user_org_id = ? AND advice_type = 2 AND record_date = ? and delivery_way = ? and is_settle = ? and execution_frequency = ?"
  4789. adviceCondition = append(adviceCondition, adviceWhere, orgID, scheduleDate, deliverWay, cost_type, execution_frequency)
  4790. } else {
  4791. adviceWhere = "status = 1 AND user_org_id = ? AND advice_type = 2 AND record_date = ? and delivery_way = ? and is_settle = ?"
  4792. adviceCondition = append(adviceCondition, adviceWhere, orgID, scheduleDate, deliverWay, cost_type)
  4793. }
  4794. } else {
  4795. if len(execution_frequency) > 0 {
  4796. adviceWhere = "status = 1 AND user_org_id = ? AND advice_type = 2 AND record_date = ? and delivery_way = ? and execution_frequency = ?"
  4797. adviceCondition = append(adviceCondition, adviceWhere, orgID, scheduleDate, deliverWay, execution_frequency)
  4798. } else {
  4799. adviceWhere = "status = 1 AND user_org_id = ? AND advice_type = 2 AND record_date = ? and delivery_way = ?"
  4800. adviceCondition = append(adviceCondition, adviceWhere, orgID, scheduleDate, deliverWay)
  4801. }
  4802. }
  4803. }
  4804. }
  4805. } else if patientType == 1 {
  4806. if patient_id > 0 {
  4807. if execution_state > 0 {
  4808. if cost_type > 0 {
  4809. if len(execution_frequency) > 0 {
  4810. adviceWhere = "status = 1 AND user_org_id = ? AND record_date = ? AND advice_type = 2 AND advice_doctor = ? and delivery_way = ? and patient_id = ? and execution_state = ? and is_settle = ? and execution_frequency = ?"
  4811. adviceCondition = append(adviceCondition, adviceWhere, orgID, scheduleDate, adminUserId, deliverWay, patient_id, execution_state, cost_type, execution_frequency)
  4812. } else {
  4813. adviceWhere = "status = 1 AND user_org_id = ? AND record_date = ? AND advice_type = 2 AND advice_doctor = ? and delivery_way = ? and patient_id = ? and execution_state = ? and is_settle = ?"
  4814. adviceCondition = append(adviceCondition, adviceWhere, orgID, scheduleDate, adminUserId, deliverWay, patient_id, execution_state, cost_type)
  4815. }
  4816. } else {
  4817. if len(execution_frequency) > 0 {
  4818. adviceWhere = "status = 1 AND user_org_id = ? AND record_date = ? AND advice_type = 2 AND advice_doctor = ? and delivery_way = ? and patient_id = ? and execution_state = ? and execution_frequency = ?"
  4819. adviceCondition = append(adviceCondition, adviceWhere, orgID, scheduleDate, adminUserId, deliverWay, patient_id, execution_state, execution_frequency)
  4820. } else {
  4821. adviceWhere = "status = 1 AND user_org_id = ? AND record_date = ? AND advice_type = 2 AND advice_doctor = ? and delivery_way = ? and patient_id = ? and execution_state = ?"
  4822. adviceCondition = append(adviceCondition, adviceWhere, orgID, scheduleDate, adminUserId, deliverWay, patient_id, execution_state)
  4823. }
  4824. }
  4825. } else {
  4826. if cost_type > 0 {
  4827. if len(execution_frequency) > 0 {
  4828. adviceWhere = "status = 1 AND user_org_id = ? AND record_date = ? AND advice_type = 2 AND advice_doctor = ? and delivery_way = ? and patient_id = ? and is_settle = ? and execution_frequency = ?"
  4829. adviceCondition = append(adviceCondition, adviceWhere, orgID, scheduleDate, adminUserId, deliverWay, patient_id, cost_type, execution_frequency)
  4830. } else {
  4831. adviceWhere = "status = 1 AND user_org_id = ? AND record_date = ? AND advice_type = 2 AND advice_doctor = ? and delivery_way = ? and patient_id = ? and is_settle = ?"
  4832. adviceCondition = append(adviceCondition, adviceWhere, orgID, scheduleDate, adminUserId, deliverWay, patient_id, cost_type)
  4833. }
  4834. } else {
  4835. if len(execution_frequency) > 0 {
  4836. adviceWhere = "status = 1 AND user_org_id = ? AND record_date = ? AND advice_type = 2 AND advice_doctor = ? and delivery_way = ? and patient_id = ? and execution_frequency = ?"
  4837. adviceCondition = append(adviceCondition, adviceWhere, orgID, scheduleDate, adminUserId, deliverWay, patient_id, execution_frequency)
  4838. } else {
  4839. adviceWhere = "status = 1 AND user_org_id = ? AND record_date = ? AND advice_type = 2 AND advice_doctor = ? and delivery_way = ? and patient_id = ?"
  4840. adviceCondition = append(adviceCondition, adviceWhere, orgID, scheduleDate, adminUserId, deliverWay, patient_id)
  4841. }
  4842. }
  4843. }
  4844. } else {
  4845. if execution_state > 0 {
  4846. if cost_type > 0 {
  4847. if len(execution_frequency) > 0 {
  4848. adviceWhere = "status = 1 AND user_org_id = ? AND record_date = ? AND advice_type = 2 AND advice_doctor = ? and delivery_way = ? and execution_state = ? and is_settle = ? and execution_frequency = ?"
  4849. adviceCondition = append(adviceCondition, adviceWhere, orgID, scheduleDate, adminUserId, deliverWay, execution_state, cost_type, execution_frequency)
  4850. } else {
  4851. adviceWhere = "status = 1 AND user_org_id = ? AND record_date = ? AND advice_type = 2 AND advice_doctor = ? and delivery_way = ? and execution_state = ? and is_settle = ?"
  4852. adviceCondition = append(adviceCondition, adviceWhere, orgID, scheduleDate, adminUserId, deliverWay, execution_state, cost_type)
  4853. }
  4854. } else {
  4855. if len(execution_frequency) > 0 {
  4856. adviceWhere = "status = 1 AND user_org_id = ? AND record_date = ? AND advice_type = 2 AND advice_doctor = ? and delivery_way = ? and execution_state = ? and execution_frequency = ?"
  4857. adviceCondition = append(adviceCondition, adviceWhere, orgID, scheduleDate, adminUserId, deliverWay, execution_state, execution_frequency)
  4858. } else {
  4859. adviceWhere = "status = 1 AND user_org_id = ? AND record_date = ? AND advice_type = 2 AND advice_doctor = ? and delivery_way = ? and execution_state = ?"
  4860. adviceCondition = append(adviceCondition, adviceWhere, orgID, scheduleDate, adminUserId, deliverWay, execution_state)
  4861. }
  4862. }
  4863. } else {
  4864. if cost_type > 0 {
  4865. if len(execution_frequency) > 0 {
  4866. adviceWhere = "status = 1 AND user_org_id = ? AND record_date = ? AND advice_type = 2 AND advice_doctor = ? and delivery_way = ? and is_settle = ? and execution_frequency = ?"
  4867. adviceCondition = append(adviceCondition, adviceWhere, orgID, scheduleDate, adminUserId, deliverWay, cost_type, execution_frequency)
  4868. } else {
  4869. adviceWhere = "status = 1 AND user_org_id = ? AND record_date = ? AND advice_type = 2 AND advice_doctor = ? and delivery_way = ? and is_settle = ?"
  4870. adviceCondition = append(adviceCondition, adviceWhere, orgID, scheduleDate, adminUserId, deliverWay, cost_type)
  4871. }
  4872. } else {
  4873. if len(execution_frequency) > 0 {
  4874. adviceWhere = "status = 1 AND user_org_id = ? AND record_date = ? AND advice_type = 2 AND advice_doctor = ? and delivery_way = ? and execution_frequency = ?"
  4875. adviceCondition = append(adviceCondition, adviceWhere, orgID, scheduleDate, adminUserId, deliverWay, execution_frequency)
  4876. } else {
  4877. adviceWhere = "status = 1 AND user_org_id = ? AND record_date = ? AND advice_type = 2 AND advice_doctor = ? and delivery_way = ? "
  4878. adviceCondition = append(adviceCondition, adviceWhere, orgID, scheduleDate, adminUserId, deliverWay)
  4879. }
  4880. }
  4881. }
  4882. }
  4883. } else if patientType == 2 {
  4884. if patient_id > 0 {
  4885. if execution_state > 0 {
  4886. if cost_type > 0 {
  4887. if len(execution_frequency) > 0 {
  4888. adviceWhere = "status = 1 AND user_org_id = ? AND record_date = ? AND advice_type = 2 AND execution_staff = 0 and delivery_way = ? and patient_id = ? and execution_state = ? and is_settle = ? and execution_frequency = ?"
  4889. adviceCondition = append(adviceCondition, adviceWhere, orgID, scheduleDate, deliverWay, patient_id, execution_state, cost_type, execution_frequency)
  4890. } else {
  4891. adviceWhere = "status = 1 AND user_org_id = ? AND record_date = ? AND advice_type = 2 AND execution_staff = 0 and delivery_way = ? and patient_id = ? and execution_state = ? and is_settle = ?"
  4892. adviceCondition = append(adviceCondition, adviceWhere, orgID, scheduleDate, deliverWay, patient_id, execution_state, cost_type)
  4893. }
  4894. } else {
  4895. if len(execution_frequency) > 0 {
  4896. adviceWhere = "status = 1 AND user_org_id = ? AND record_date = ? AND advice_type = 2 AND execution_staff = 0 and delivery_way = ? and patient_id = ? and execution_state = ? and execution_frequency = ?"
  4897. adviceCondition = append(adviceCondition, adviceWhere, orgID, scheduleDate, deliverWay, patient_id, execution_state, execution_frequency)
  4898. } else {
  4899. adviceWhere = "status = 1 AND user_org_id = ? AND record_date = ? AND advice_type = 2 AND execution_staff = 0 and delivery_way = ? and patient_id = ? and execution_state = ?"
  4900. adviceCondition = append(adviceCondition, adviceWhere, orgID, scheduleDate, deliverWay, patient_id, execution_state)
  4901. }
  4902. }
  4903. } else {
  4904. if cost_type > 0 {
  4905. if len(execution_frequency) > 0 {
  4906. adviceWhere = "status = 1 AND user_org_id = ? AND record_date = ? AND advice_type = 2 AND execution_staff = 0 and delivery_way = ? and patient_id = ? and is_settle = ? and execution_frequency = ?"
  4907. adviceCondition = append(adviceCondition, adviceWhere, orgID, scheduleDate, deliverWay, patient_id, cost_type, execution_frequency)
  4908. } else {
  4909. adviceWhere = "status = 1 AND user_org_id = ? AND record_date = ? AND advice_type = 2 AND execution_staff = 0 and delivery_way = ? and patient_id = ? and is_settle = ?"
  4910. adviceCondition = append(adviceCondition, adviceWhere, orgID, scheduleDate, deliverWay, patient_id, cost_type)
  4911. }
  4912. } else {
  4913. if len(execution_frequency) > 0 {
  4914. adviceWhere = "status = 1 AND user_org_id = ? AND record_date = ? AND advice_type = 2 AND execution_staff = 0 and delivery_way = ? and patient_id = ? and execution_frequency = ?"
  4915. adviceCondition = append(adviceCondition, adviceWhere, orgID, scheduleDate, deliverWay, patient_id, execution_frequency)
  4916. } else {
  4917. adviceWhere = "status = 1 AND user_org_id = ? AND record_date = ? AND advice_type = 2 AND execution_staff = 0 and delivery_way = ? and patient_id = ?"
  4918. adviceCondition = append(adviceCondition, adviceWhere, orgID, scheduleDate, deliverWay, patient_id)
  4919. }
  4920. }
  4921. }
  4922. } else {
  4923. if execution_state > 0 {
  4924. if cost_type > 0 {
  4925. if len(execution_frequency) > 0 {
  4926. adviceWhere = "status = 1 AND user_org_id = ? AND record_date = ? AND advice_type = 2 AND execution_staff = 0 and delivery_way = ? and execution_state = ? and is_settle = ? and execution_frequency = ?"
  4927. adviceCondition = append(adviceCondition, adviceWhere, orgID, scheduleDate, deliverWay, execution_state, cost_type, execution_frequency)
  4928. } else {
  4929. adviceWhere = "status = 1 AND user_org_id = ? AND record_date = ? AND advice_type = 2 AND execution_staff = 0 and delivery_way = ? and execution_state = ? and is_settle = ?"
  4930. adviceCondition = append(adviceCondition, adviceWhere, orgID, scheduleDate, deliverWay, execution_state, cost_type)
  4931. }
  4932. } else {
  4933. if len(execution_frequency) > 0 {
  4934. adviceWhere = "status = 1 AND user_org_id = ? AND record_date = ? AND advice_type = 2 AND execution_staff = 0 and delivery_way = ? and execution_state = ? and execution_frequency = ?"
  4935. adviceCondition = append(adviceCondition, adviceWhere, orgID, scheduleDate, deliverWay, execution_state, execution_frequency)
  4936. } else {
  4937. adviceWhere = "status = 1 AND user_org_id = ? AND record_date = ? AND advice_type = 2 AND execution_staff = 0 and delivery_way = ? and execution_state = ?"
  4938. adviceCondition = append(adviceCondition, adviceWhere, orgID, scheduleDate, deliverWay, execution_state)
  4939. }
  4940. }
  4941. } else {
  4942. if cost_type > 0 {
  4943. if len(execution_frequency) > 0 {
  4944. adviceWhere = "status = 1 AND user_org_id = ? AND record_date = ? AND advice_type = 2 AND execution_staff = 0 and delivery_way = ? and is_settle = ?"
  4945. adviceCondition = append(adviceCondition, adviceWhere, orgID, scheduleDate, deliverWay, cost_type)
  4946. } else {
  4947. adviceWhere = "status = 1 AND user_org_id = ? AND record_date = ? AND advice_type = 2 AND execution_staff = 0 and delivery_way = ? and is_settle = ?"
  4948. adviceCondition = append(adviceCondition, adviceWhere, orgID, scheduleDate, deliverWay, cost_type)
  4949. }
  4950. } else {
  4951. adviceWhere = "status = 1 AND user_org_id = ? AND record_date = ? AND advice_type = 2 AND execution_staff = 0 and delivery_way = ?"
  4952. adviceCondition = append(adviceCondition, adviceWhere, orgID, scheduleDate, deliverWay)
  4953. }
  4954. }
  4955. }
  4956. }
  4957. } else if adviceType == 2 && len(deliverWay) <= 0 {
  4958. fmt.Println("寄哪里233223322323233232", patientType)
  4959. fmt.Println("patient_id", patient_id)
  4960. fmt.Println("execution_state000000", execution_state)
  4961. fmt.Println("cost_type", cost_type)
  4962. fmt.Println("len23323232", len(execution_frequency))
  4963. if patientType == 0 {
  4964. if patient_id > 0 {
  4965. if execution_state > 0 {
  4966. if cost_type > 0 {
  4967. if len(execution_frequency) > 0 {
  4968. adviceWhere = "status = 1 AND user_org_id = ? AND advice_type = 2 AND record_date = ? and patient_id = ? and execution_state = ? and is_settle = ? and execution_frequency = ?"
  4969. adviceCondition = append(adviceCondition, adviceWhere, orgID, scheduleDate, patient_id, execution_state, cost_type, execution_frequency)
  4970. } else {
  4971. adviceWhere = "status = 1 AND user_org_id = ? AND advice_type = 2 AND record_date = ? and patient_id = ? and execution_state = ? and is_settle = ?"
  4972. adviceCondition = append(adviceCondition, adviceWhere, orgID, scheduleDate, patient_id, execution_state, cost_type)
  4973. }
  4974. } else {
  4975. if len(execution_frequency) > 0 {
  4976. adviceWhere = "status = 1 AND user_org_id = ? AND advice_type = 2 AND record_date = ? and patient_id = ? and execution_state = ? and execution_frequency = ?"
  4977. adviceCondition = append(adviceCondition, adviceWhere, orgID, scheduleDate, patient_id, execution_state, execution_frequency)
  4978. } else {
  4979. adviceWhere = "status = 1 AND user_org_id = ? AND advice_type = 2 AND record_date = ? and patient_id = ? and execution_state = ?"
  4980. adviceCondition = append(adviceCondition, adviceWhere, orgID, scheduleDate, patient_id, execution_state)
  4981. }
  4982. }
  4983. } else {
  4984. if cost_type > 0 {
  4985. if len(execution_frequency) > 0 {
  4986. adviceWhere = "status = 1 AND user_org_id = ? AND advice_type = 2 AND record_date = ? and patient_id = ? and is_settle = ? and execution_frequency = ?"
  4987. adviceCondition = append(adviceCondition, adviceWhere, orgID, scheduleDate, patient_id, cost_type, execution_frequency)
  4988. } else {
  4989. adviceWhere = "status = 1 AND user_org_id = ? AND advice_type = 2 AND record_date = ? and patient_id = ? and is_settle = ?"
  4990. adviceCondition = append(adviceCondition, adviceWhere, orgID, scheduleDate, patient_id, cost_type)
  4991. }
  4992. } else {
  4993. if len(execution_frequency) > 0 {
  4994. adviceWhere = "status = 1 AND user_org_id = ? AND advice_type = 2 AND record_date = ? and patient_id = ? and execution_frequency = ?"
  4995. adviceCondition = append(adviceCondition, adviceWhere, orgID, scheduleDate, patient_id, execution_frequency)
  4996. } else {
  4997. adviceWhere = "status = 1 AND user_org_id = ? AND advice_type = 2 AND record_date = ? and patient_id = ?"
  4998. adviceCondition = append(adviceCondition, adviceWhere, orgID, scheduleDate, patient_id)
  4999. }
  5000. }
  5001. }
  5002. } else {
  5003. if execution_state > 0 {
  5004. if cost_type > 0 {
  5005. if len(execution_frequency) > 0 {
  5006. adviceWhere = "status = 1 AND user_org_id = ? AND advice_type = 2 AND record_date = ? and execution_state = ? and is_settle = ? and execution_frequency = ?"
  5007. adviceCondition = append(adviceCondition, adviceWhere, orgID, scheduleDate, execution_state, cost_type, execution_frequency)
  5008. } else {
  5009. adviceWhere = "status = 1 AND user_org_id = ? AND advice_type = 2 AND record_date = ? and execution_state = ? and is_settle = ?"
  5010. adviceCondition = append(adviceCondition, adviceWhere, orgID, scheduleDate, execution_state, cost_type)
  5011. }
  5012. } else {
  5013. if len(execution_frequency) > 0 {
  5014. adviceWhere = "status = 1 AND user_org_id = ? AND advice_type = 2 AND record_date = ? and execution_state = ?and execution_frequency = ?"
  5015. adviceCondition = append(adviceCondition, adviceWhere, orgID, scheduleDate, execution_state, execution_frequency)
  5016. } else {
  5017. adviceWhere = "status = 1 AND user_org_id = ? AND advice_type = 2 AND record_date = ? and execution_state = ?"
  5018. adviceCondition = append(adviceCondition, adviceWhere, orgID, scheduleDate, execution_state)
  5019. }
  5020. }
  5021. } else {
  5022. if cost_type > 0 {
  5023. if len(execution_frequency) > 0 {
  5024. adviceWhere = "status = 1 AND user_org_id = ? AND advice_type = 2 AND record_date = ? and is_settle = ? and execution_frequency = ?"
  5025. adviceCondition = append(adviceCondition, adviceWhere, orgID, scheduleDate, cost_type, execution_frequency)
  5026. }
  5027. } else {
  5028. if len(execution_frequency) > 0 {
  5029. adviceWhere = "status = 1 AND user_org_id = ? AND advice_type = 2 AND record_date = ? and execution_frequency = ?"
  5030. adviceCondition = append(adviceCondition, adviceWhere, orgID, scheduleDate, execution_frequency)
  5031. } else {
  5032. adviceWhere = "status = 1 AND user_org_id = ? AND advice_type = 2 AND record_date = ?"
  5033. adviceCondition = append(adviceCondition, adviceWhere, orgID, scheduleDate)
  5034. }
  5035. }
  5036. }
  5037. }
  5038. } else if patientType == 1 {
  5039. if patient_id > 0 {
  5040. if execution_state > 0 {
  5041. if cost_type > 0 {
  5042. if len(execution_frequency) > 0 {
  5043. adviceWhere = "status = 1 AND user_org_id = ? AND record_date = ? AND advice_type = 2 AND advice_doctor = ? and patient_id = ? and execution_state = ? and is_settle = ? and execution_frequency = ?"
  5044. adviceCondition = append(adviceCondition, adviceWhere, orgID, scheduleDate, adminUserId, patient_id, execution_state, cost_type, execution_frequency)
  5045. } else {
  5046. adviceWhere = "status = 1 AND user_org_id = ? AND record_date = ? AND advice_type = 2 AND advice_doctor = ? and patient_id = ? and execution_state = ? and is_settle = ?"
  5047. adviceCondition = append(adviceCondition, adviceWhere, orgID, scheduleDate, adminUserId, patient_id, execution_state, cost_type)
  5048. }
  5049. } else {
  5050. if len(execution_frequency) > 0 {
  5051. adviceWhere = "status = 1 AND user_org_id = ? AND record_date = ? AND advice_type = 2 AND advice_doctor = ? and patient_id = ? and execution_state = ? and execution_frequency = ?"
  5052. adviceCondition = append(adviceCondition, adviceWhere, orgID, scheduleDate, adminUserId, patient_id, execution_state, execution_frequency)
  5053. } else {
  5054. adviceWhere = "status = 1 AND user_org_id = ? AND record_date = ? AND advice_type = 2 AND advice_doctor = ? and patient_id = ? and execution_state = ?"
  5055. adviceCondition = append(adviceCondition, adviceWhere, orgID, scheduleDate, adminUserId, patient_id, execution_state)
  5056. }
  5057. }
  5058. } else {
  5059. if cost_type > 0 {
  5060. if len(execution_frequency) > 0 {
  5061. adviceWhere = "status = 1 AND user_org_id = ? AND record_date = ? AND advice_type = 2 AND advice_doctor = ? and patient_id = ? and is_settle = ? and execution_frequency = ?"
  5062. adviceCondition = append(adviceCondition, adviceWhere, orgID, scheduleDate, adminUserId, patient_id, cost_type, execution_frequency)
  5063. } else {
  5064. adviceWhere = "status = 1 AND user_org_id = ? AND record_date = ? AND advice_type = 2 AND advice_doctor = ? and patient_id = ? and is_settle = ?"
  5065. adviceCondition = append(adviceCondition, adviceWhere, orgID, scheduleDate, adminUserId, patient_id, cost_type)
  5066. }
  5067. } else {
  5068. if len(execution_frequency) > 0 {
  5069. adviceWhere = "status = 1 AND user_org_id = ? AND record_date = ? AND advice_type = 2 AND advice_doctor = ? and patient_id = ? and execution_frequency = ?"
  5070. adviceCondition = append(adviceCondition, adviceWhere, orgID, scheduleDate, adminUserId, patient_id, execution_frequency)
  5071. } else {
  5072. adviceWhere = "status = 1 AND user_org_id = ? AND record_date = ? AND advice_type = 2 AND advice_doctor = ? and patient_id = ?"
  5073. adviceCondition = append(adviceCondition, adviceWhere, orgID, scheduleDate, adminUserId, patient_id)
  5074. }
  5075. }
  5076. }
  5077. } else {
  5078. if execution_state > 0 {
  5079. if cost_type > 0 {
  5080. if len(execution_frequency) > 0 {
  5081. adviceWhere = "status = 1 AND user_org_id = ? AND record_date = ? AND advice_type = 2 AND advice_doctor = ? and execution_state = ? and is_settle = ? and execution_frequency = ?"
  5082. adviceCondition = append(adviceCondition, adviceWhere, orgID, scheduleDate, adminUserId, execution_state, cost_type, execution_frequency)
  5083. } else {
  5084. adviceWhere = "status = 1 AND user_org_id = ? AND record_date = ? AND advice_type = 2 AND advice_doctor = ? and execution_state = ? and is_settle = ?"
  5085. adviceCondition = append(adviceCondition, adviceWhere, orgID, scheduleDate, adminUserId, execution_state, cost_type)
  5086. }
  5087. } else {
  5088. if len(execution_frequency) > 0 {
  5089. adviceWhere = "status = 1 AND user_org_id = ? AND record_date = ? AND advice_type = 2 AND advice_doctor = ? and execution_state = ? and execution_frequency = ?"
  5090. adviceCondition = append(adviceCondition, adviceWhere, orgID, scheduleDate, adminUserId, execution_state, execution_frequency)
  5091. } else {
  5092. adviceWhere = "status = 1 AND user_org_id = ? AND record_date = ? AND advice_type = 2 AND advice_doctor = ? and execution_state = ?"
  5093. adviceCondition = append(adviceCondition, adviceWhere, orgID, scheduleDate, adminUserId, execution_state)
  5094. }
  5095. }
  5096. } else {
  5097. if cost_type > 0 {
  5098. if len(execution_frequency) > 0 {
  5099. adviceWhere = "status = 1 AND user_org_id = ? AND record_date = ? AND advice_type = 2 AND advice_doctor = ? and is_settle = ? and execution_frequency = ?"
  5100. adviceCondition = append(adviceCondition, adviceWhere, orgID, scheduleDate, adminUserId, cost_type, execution_frequency)
  5101. } else {
  5102. adviceWhere = "status = 1 AND user_org_id = ? AND record_date = ? AND advice_type = 2 AND advice_doctor = ? and is_settle = ?"
  5103. adviceCondition = append(adviceCondition, adviceWhere, orgID, scheduleDate, adminUserId, cost_type)
  5104. }
  5105. } else {
  5106. if len(execution_frequency) > 0 {
  5107. adviceWhere = "status = 1 AND user_org_id = ? AND record_date = ? AND advice_type = 2 AND advice_doctor = ? and execution_frequency = ?"
  5108. adviceCondition = append(adviceCondition, adviceWhere, orgID, scheduleDate, adminUserId, execution_frequency)
  5109. } else {
  5110. adviceWhere = "status = 1 AND user_org_id = ? AND record_date = ? AND advice_type = 2 AND advice_doctor = ?"
  5111. adviceCondition = append(adviceCondition, adviceWhere, orgID, scheduleDate, adminUserId)
  5112. }
  5113. }
  5114. }
  5115. }
  5116. } else if patientType == 2 {
  5117. if patient_id > 0 {
  5118. if execution_state > 0 {
  5119. if cost_type > 0 {
  5120. if len(execution_frequency) > 0 {
  5121. adviceWhere = "status = 1 AND user_org_id = ? AND record_date = ? AND advice_type = 2 AND execution_staff = 0 and patient_id = ? and execution_state = ? and is_settle = ? and execution_frequency=?"
  5122. adviceCondition = append(adviceCondition, adviceWhere, orgID, scheduleDate, patient_id, execution_state, cost_type, execution_frequency)
  5123. } else {
  5124. adviceWhere = "status = 1 AND user_org_id = ? AND record_date = ? AND advice_type = 2 AND execution_staff = 0 and patient_id = ? and execution_state = ? and is_settle = ?"
  5125. adviceCondition = append(adviceCondition, adviceWhere, orgID, scheduleDate, patient_id, execution_state, cost_type)
  5126. }
  5127. } else {
  5128. if len(execution_frequency) > 0 {
  5129. adviceWhere = "status = 1 AND user_org_id = ? AND record_date = ? AND advice_type = 2 AND execution_staff = 0 and patient_id = ? and execution_state = ? and execution_frequency=?"
  5130. adviceCondition = append(adviceCondition, adviceWhere, orgID, scheduleDate, patient_id, execution_state, execution_frequency)
  5131. } else {
  5132. adviceWhere = "status = 1 AND user_org_id = ? AND record_date = ? AND advice_type = 2 AND execution_staff = 0 and patient_id = ? and execution_state = ?"
  5133. adviceCondition = append(adviceCondition, adviceWhere, orgID, scheduleDate, patient_id, execution_state)
  5134. }
  5135. }
  5136. } else {
  5137. if cost_type > 0 {
  5138. if len(execution_frequency) > 0 {
  5139. adviceWhere = "status = 1 AND user_org_id = ? AND record_date = ? AND advice_type = 2 AND execution_staff = 0 and patient_id = ? and is_settle = ? and execution_frequency=?"
  5140. adviceCondition = append(adviceCondition, adviceWhere, orgID, scheduleDate, patient_id, cost_type, execution_frequency)
  5141. } else {
  5142. adviceWhere = "status = 1 AND user_org_id = ? AND record_date = ? AND advice_type = 2 AND execution_staff = 0 and patient_id = ? and is_settle = ?"
  5143. adviceCondition = append(adviceCondition, adviceWhere, orgID, scheduleDate, patient_id, cost_type)
  5144. }
  5145. } else {
  5146. if len(execution_frequency) > 0 {
  5147. adviceWhere = "status = 1 AND user_org_id = ? AND record_date = ? AND advice_type = 2 AND execution_staff = 0 and patient_id = ? and execution_frequency=?"
  5148. adviceCondition = append(adviceCondition, adviceWhere, orgID, scheduleDate, patient_id, execution_frequency)
  5149. } else {
  5150. adviceWhere = "status = 1 AND user_org_id = ? AND record_date = ? AND advice_type = 2 AND execution_staff = 0 and patient_id = ?"
  5151. adviceCondition = append(adviceCondition, adviceWhere, orgID, scheduleDate, patient_id)
  5152. }
  5153. }
  5154. }
  5155. } else {
  5156. if execution_state > 0 {
  5157. if cost_type > 0 {
  5158. if len(execution_frequency) > 0 {
  5159. adviceWhere = "status = 1 AND user_org_id = ? AND record_date = ? AND advice_type = 2 AND execution_staff = 0 and execution_state = ? and is_settle = ? and execution_frequency = ?"
  5160. adviceCondition = append(adviceCondition, adviceWhere, orgID, scheduleDate, execution_state, cost_type, execution_frequency)
  5161. } else {
  5162. adviceWhere = "status = 1 AND user_org_id = ? AND record_date = ? AND advice_type = 2 AND execution_staff = 0 and execution_state = ? and is_settle = ?"
  5163. adviceCondition = append(adviceCondition, adviceWhere, orgID, scheduleDate, execution_state, cost_type)
  5164. }
  5165. } else {
  5166. if len(execution_frequency) > 0 {
  5167. adviceWhere = "status = 1 AND user_org_id = ? AND record_date = ? AND advice_type = 2 AND execution_staff = 0 and execution_state = ? and execution_frequency = ?"
  5168. adviceCondition = append(adviceCondition, adviceWhere, orgID, scheduleDate, execution_state, execution_frequency)
  5169. } else {
  5170. adviceWhere = "status = 1 AND user_org_id = ? AND record_date = ? AND advice_type = 2 AND execution_staff = 0 and execution_state = ?"
  5171. adviceCondition = append(adviceCondition, adviceWhere, orgID, scheduleDate, execution_state)
  5172. }
  5173. }
  5174. } else {
  5175. if cost_type > 0 {
  5176. if len(execution_frequency) > 0 {
  5177. adviceWhere = "status = 1 AND user_org_id = ? AND record_date = ? AND advice_type = 2 AND execution_staff = 0 and is_settle = ? and execution_frequency = ?"
  5178. adviceCondition = append(adviceCondition, adviceWhere, orgID, scheduleDate, cost_type, execution_frequency)
  5179. } else {
  5180. adviceWhere = "status = 1 AND user_org_id = ? AND record_date = ? AND advice_type = 2 AND execution_staff = 0 and is_settle = ?"
  5181. adviceCondition = append(adviceCondition, adviceWhere, orgID, scheduleDate, cost_type)
  5182. }
  5183. } else {
  5184. if len(execution_frequency) > 0 {
  5185. adviceWhere = "status = 1 AND user_org_id = ? AND record_date = ? AND advice_type = 2 AND execution_staff = 0 and execution_frequency = ?"
  5186. adviceCondition = append(adviceCondition, adviceWhere, orgID, scheduleDate, execution_frequency)
  5187. } else {
  5188. adviceWhere = "status = 1 AND user_org_id = ? AND record_date = ? AND advice_type = 2 AND execution_staff = 0"
  5189. adviceCondition = append(adviceCondition, adviceWhere, orgID, scheduleDate)
  5190. }
  5191. }
  5192. }
  5193. }
  5194. }
  5195. }
  5196. db := readDb.Table("xt_schedule")
  5197. if scheduleType > 0 {
  5198. db = db.Where("schedule_type = ?", scheduleType)
  5199. }
  5200. if partitonType > 0 {
  5201. db = db.Where("partition_id = ?", partitonType)
  5202. }
  5203. db = db.Preload("SchedualPatient", "status = 1 AND user_org_id = ?", orgID).
  5204. Preload("DialysisOrder", func(db *gorm.DB) *gorm.DB {
  5205. return db.Where("status = 1 AND user_org_id = ?", orgID).Preload("DeviceNumber", "status = 1 AND org_id= ?", orgID)
  5206. }).
  5207. Preload("DeviceNumber", "status = 1 AND org_id = ?", orgID).
  5208. Preload("DeviceNumber.Zone", "status = 1 AND org_id = ?", orgID).
  5209. Preload("Prescription", "status = 1 AND user_org_id = ? AND record_date = ?", orgID, scheduleDate).
  5210. Preload("DialysisAssesmentBefor", "status =1 AND user_org_id = ? and assessment_date =?", orgID, scheduleDate).
  5211. Preload("DoctorAdvices", adviceCondition...).
  5212. Where("status = 1 AND user_org_id = ?", orgID)
  5213. if scheduleDate != 0 {
  5214. db = db.Where("schedule_date = ?", scheduleDate)
  5215. }
  5216. err := db.Find(&vms).Error
  5217. return vms, err
  5218. }
  5219. func MobileGetScheduleDoctorAdvicesSevenList(orgID int64, scheduleDate int64, adviceType int, patientType int, adminUserId int64, deliverWay string, scheduleType int64, partitonType int64, patient_id int64, execution_state int64, cost_type int64) ([]*MScheduleDoctorAdviceVM, error) {
  5220. var vms []*MScheduleDoctorAdviceVM
  5221. adviceWhere := ""
  5222. adviceCondition := []interface{}{}
  5223. if adviceType == 0 {
  5224. if patientType == 0 {
  5225. if patient_id > 0 {
  5226. if execution_state > 0 {
  5227. if cost_type > 0 {
  5228. adviceWhere = "status = 1 AND user_org_id = ? AND record_date = ? AND (advice_type = 3 OR advice_type = 1) and patient_id = ? and execution_state= ? and is_settle = ?"
  5229. adviceCondition = append(adviceCondition, adviceWhere, orgID, scheduleDate, patient_id, execution_state, cost_type)
  5230. } else {
  5231. adviceWhere = "status = 1 AND user_org_id = ? AND record_date = ? AND (advice_type = 3 OR advice_type = 1) and patient_id = ? and execution_state= ?"
  5232. adviceCondition = append(adviceCondition, adviceWhere, orgID, scheduleDate, patient_id, execution_state)
  5233. }
  5234. } else {
  5235. if cost_type > 0 {
  5236. adviceWhere = "status = 1 AND user_org_id = ? AND record_date = ? AND (advice_type = 3 OR advice_type = 1) and patient_id = ? and is_settle = ?"
  5237. adviceCondition = append(adviceCondition, adviceWhere, orgID, scheduleDate, patient_id, cost_type)
  5238. } else {
  5239. adviceWhere = "status = 1 AND user_org_id = ? AND record_date = ? AND (advice_type = 3 OR advice_type = 1) and patient_id = ?"
  5240. adviceCondition = append(adviceCondition, adviceWhere, orgID, scheduleDate, patient_id)
  5241. }
  5242. }
  5243. } else {
  5244. if execution_state > 0 {
  5245. if cost_type > 0 {
  5246. adviceWhere = "status = 1 AND user_org_id = ? AND record_date = ? AND (advice_type = 3 OR advice_type = 1) and execution_state= ? and is_settle = ?"
  5247. adviceCondition = append(adviceCondition, adviceWhere, orgID, scheduleDate, execution_state, cost_type)
  5248. } else {
  5249. adviceWhere = "status = 1 AND user_org_id = ? AND record_date = ? AND (advice_type = 3 OR advice_type = 1) and execution_state= ?"
  5250. adviceCondition = append(adviceCondition, adviceWhere, orgID, scheduleDate, execution_state)
  5251. }
  5252. } else {
  5253. if cost_type > 0 {
  5254. adviceWhere = "status = 1 AND user_org_id = ? AND record_date = ? AND (advice_type = 3 OR advice_type = 1) and is_settle = ?"
  5255. adviceCondition = append(adviceCondition, adviceWhere, orgID, scheduleDate, cost_type)
  5256. } else {
  5257. adviceWhere = "status = 1 AND user_org_id = ? AND record_date = ? AND (advice_type = 3 OR advice_type = 1)"
  5258. adviceCondition = append(adviceCondition, adviceWhere, orgID, scheduleDate)
  5259. }
  5260. }
  5261. }
  5262. } else if patientType == 1 {
  5263. if patient_id > 0 {
  5264. if execution_state > 0 {
  5265. if cost_type > 0 {
  5266. adviceWhere = "status = 1 AND user_org_id = ? AND record_date = ? AND advice_doctor = ? AND(advice_type = 3 OR advice_type = 1) and patient_id = ? and execution_state= ? and is_settle = ?"
  5267. adviceCondition = append(adviceCondition, adviceWhere, orgID, scheduleDate, adminUserId, patient_id, execution_state, cost_type)
  5268. } else {
  5269. adviceWhere = "status = 1 AND user_org_id = ? AND record_date = ? AND advice_doctor = ? AND(advice_type = 3 OR advice_type = 1) and patient_id = ? and execution_state= ?"
  5270. adviceCondition = append(adviceCondition, adviceWhere, orgID, scheduleDate, adminUserId, patient_id, execution_state)
  5271. }
  5272. } else {
  5273. if cost_type > 0 {
  5274. adviceWhere = "status = 1 AND user_org_id = ? AND record_date = ? AND advice_doctor = ? AND(advice_type = 3 OR advice_type = 1) and patient_id = ? and is_settle=?"
  5275. adviceCondition = append(adviceCondition, adviceWhere, orgID, scheduleDate, adminUserId, patient_id, cost_type)
  5276. } else {
  5277. adviceWhere = "status = 1 AND user_org_id = ? AND record_date = ? AND advice_doctor = ? AND(advice_type = 3 OR advice_type = 1) and patient_id = ?"
  5278. adviceCondition = append(adviceCondition, adviceWhere, orgID, scheduleDate, adminUserId, patient_id)
  5279. }
  5280. }
  5281. } else {
  5282. if execution_state > 0 {
  5283. if cost_type > 0 {
  5284. adviceWhere = "status = 1 AND user_org_id = ? AND record_date = ? AND advice_doctor = ? AND(advice_type = 3 OR advice_type = 1) and execution_state = ? and is_settle=?"
  5285. adviceCondition = append(adviceCondition, adviceWhere, orgID, scheduleDate, adminUserId, execution_state, cost_type)
  5286. } else {
  5287. adviceWhere = "status = 1 AND user_org_id = ? AND record_date = ? AND advice_doctor = ? AND(advice_type = 3 OR advice_type = 1) and execution_state = ?"
  5288. adviceCondition = append(adviceCondition, adviceWhere, orgID, scheduleDate, adminUserId, execution_state)
  5289. }
  5290. } else {
  5291. if cost_type > 0 {
  5292. adviceWhere = "status = 1 AND user_org_id = ? AND record_date = ? AND advice_doctor = ? AND(advice_type = 3 OR advice_type = 1) and is_settle=?"
  5293. adviceCondition = append(adviceCondition, adviceWhere, orgID, scheduleDate, adminUserId, cost_type)
  5294. } else {
  5295. adviceWhere = "status = 1 AND user_org_id = ? AND record_date = ? AND advice_doctor = ? AND(advice_type = 3 OR advice_type = 1)"
  5296. adviceCondition = append(adviceCondition, adviceWhere, orgID, scheduleDate, adminUserId)
  5297. }
  5298. }
  5299. }
  5300. } else if patientType == 2 {
  5301. if patient_id > 0 {
  5302. if execution_state > 0 {
  5303. if cost_type > 0 {
  5304. adviceWhere = "status = 1 AND user_org_id = ? AND record_date = ? AND execution_staff = 0 AND(advice_type = 3 OR advice_type = 1 and patient_id = ?) and execution_state = ? and is_settle=?"
  5305. adviceCondition = append(adviceCondition, adviceWhere, orgID, scheduleDate, patient_id, execution_state, cost_type)
  5306. } else {
  5307. adviceWhere = "status = 1 AND user_org_id = ? AND record_date = ? AND execution_staff = 0 AND(advice_type = 3 OR advice_type = 1 and patient_id = ?) and execution_state = ?"
  5308. adviceCondition = append(adviceCondition, adviceWhere, orgID, scheduleDate, patient_id, execution_state)
  5309. }
  5310. } else {
  5311. if cost_type > 0 {
  5312. adviceWhere = "status = 1 AND user_org_id = ? AND record_date = ? AND execution_staff = 0 AND(advice_type = 3 OR advice_type = 1 and patient_id = ?) and is_settle=?"
  5313. adviceCondition = append(adviceCondition, adviceWhere, orgID, scheduleDate, patient_id, cost_type)
  5314. } else {
  5315. adviceWhere = "status = 1 AND user_org_id = ? AND record_date = ? AND execution_staff = 0 AND(advice_type = 3 OR advice_type = 1 and patient_id = ?)"
  5316. adviceCondition = append(adviceCondition, adviceWhere, orgID, scheduleDate, patient_id)
  5317. }
  5318. }
  5319. } else {
  5320. if execution_state > 0 {
  5321. if cost_type > 0 {
  5322. adviceWhere = "status = 1 AND user_org_id = ? AND record_date = ? AND execution_staff = 0 AND(advice_type = 3 OR advice_type = 1) and execution_state = ? and is_settle=?"
  5323. adviceCondition = append(adviceCondition, adviceWhere, orgID, scheduleDate, execution_state, cost_type)
  5324. } else {
  5325. adviceWhere = "status = 1 AND user_org_id = ? AND record_date = ? AND execution_staff = 0 AND(advice_type = 3 OR advice_type = 1) and execution_state = ?"
  5326. adviceCondition = append(adviceCondition, adviceWhere, orgID, scheduleDate, execution_state)
  5327. }
  5328. } else {
  5329. if cost_type > 0 {
  5330. adviceWhere = "status = 1 AND user_org_id = ? AND record_date = ? AND execution_staff = 0 AND(advice_type = 3 OR advice_type = 1) and is_settle = ?"
  5331. adviceCondition = append(adviceCondition, adviceWhere, orgID, scheduleDate, cost_type)
  5332. } else {
  5333. adviceWhere = "status = 1 AND user_org_id = ? AND record_date = ? AND execution_staff = 0 AND(advice_type = 3 OR advice_type = 1)"
  5334. adviceCondition = append(adviceCondition, adviceWhere, orgID, scheduleDate)
  5335. }
  5336. }
  5337. }
  5338. }
  5339. } else if adviceType == 1 {
  5340. if patientType == 0 {
  5341. if patient_id > 0 {
  5342. if execution_state > 0 {
  5343. if cost_type > 0 {
  5344. adviceWhere = "status = 1 AND user_org_id = ? AND advice_type = 1 AND record_date = ? and patient_id = ? and execution_state = ? and is_settle = ?"
  5345. adviceCondition = append(adviceCondition, adviceWhere, orgID, scheduleDate, patient_id, execution_state, cost_type)
  5346. } else {
  5347. adviceWhere = "status = 1 AND user_org_id = ? AND advice_type = 1 AND record_date = ? and patient_id = ? and execution_state = ?"
  5348. adviceCondition = append(adviceCondition, adviceWhere, orgID, scheduleDate, patient_id, execution_state)
  5349. }
  5350. } else {
  5351. if cost_type > 0 {
  5352. adviceWhere = "status = 1 AND user_org_id = ? AND advice_type = 1 AND record_date = ? and patient_id = ? and is_settle = ? "
  5353. adviceCondition = append(adviceCondition, adviceWhere, orgID, scheduleDate, patient_id, cost_type)
  5354. } else {
  5355. adviceWhere = "status = 1 AND user_org_id = ? AND advice_type = 1 AND record_date = ? and patient_id = ? "
  5356. adviceCondition = append(adviceCondition, adviceWhere, orgID, scheduleDate, patient_id)
  5357. }
  5358. }
  5359. } else {
  5360. if execution_state > 0 {
  5361. if cost_type > 0 {
  5362. adviceWhere = "status = 1 AND user_org_id = ? AND advice_type = 1 AND record_date = ? and execution_state = ? and is_settle = ?"
  5363. adviceCondition = append(adviceCondition, adviceWhere, orgID, scheduleDate, execution_state, cost_type)
  5364. } else {
  5365. adviceWhere = "status = 1 AND user_org_id = ? AND advice_type = 1 AND record_date = ? and execution_state = ?"
  5366. adviceCondition = append(adviceCondition, adviceWhere, orgID, scheduleDate, execution_state)
  5367. }
  5368. } else {
  5369. if cost_type > 0 {
  5370. adviceWhere = "status = 1 AND user_org_id = ? AND advice_type = 1 AND record_date = ? and is_settle = ? "
  5371. adviceCondition = append(adviceCondition, adviceWhere, orgID, scheduleDate, cost_type)
  5372. } else {
  5373. adviceWhere = "status = 1 AND user_org_id = ? AND advice_type = 1 AND record_date = ? "
  5374. adviceCondition = append(adviceCondition, adviceWhere, orgID, scheduleDate)
  5375. }
  5376. }
  5377. }
  5378. } else if patientType == 1 {
  5379. if patient_id > 0 {
  5380. if execution_state > 0 {
  5381. if cost_type > 0 {
  5382. adviceWhere = "status = 1 AND user_org_id = ? AND advice_type = 1 AND record_date = ? AND advice_doctor = ? and patient_id = ? and execution_state = ? and is_settle = ?"
  5383. adviceCondition = append(adviceCondition, adviceWhere, orgID, scheduleDate, adminUserId, patient_id, execution_state, cost_type)
  5384. } else {
  5385. adviceWhere = "status = 1 AND user_org_id = ? AND advice_type = 1 AND record_date = ? AND advice_doctor = ? and patient_id = ? and execution_state = ?"
  5386. adviceCondition = append(adviceCondition, adviceWhere, orgID, scheduleDate, adminUserId, patient_id, execution_state)
  5387. }
  5388. } else {
  5389. if cost_type > 0 {
  5390. adviceWhere = "status = 1 AND user_org_id = ? AND advice_type = 1 AND record_date = ? AND advice_doctor = ? and patient_id = ? and is_settle = ?"
  5391. adviceCondition = append(adviceCondition, adviceWhere, orgID, scheduleDate, adminUserId, patient_id, cost_type)
  5392. } else {
  5393. adviceWhere = "status = 1 AND user_org_id = ? AND advice_type = 1 AND record_date = ? AND advice_doctor = ? and patient_id = ?"
  5394. adviceCondition = append(adviceCondition, adviceWhere, orgID, scheduleDate, adminUserId, patient_id)
  5395. }
  5396. }
  5397. } else {
  5398. if execution_state > 0 {
  5399. if cost_type > 0 {
  5400. adviceWhere = "status = 1 AND user_org_id = ? AND advice_type = 1 AND record_date = ? AND advice_doctor = ? and execution_state=? and is_settle = ?"
  5401. adviceCondition = append(adviceCondition, adviceWhere, orgID, scheduleDate, adminUserId, execution_state, cost_type)
  5402. } else {
  5403. adviceWhere = "status = 1 AND user_org_id = ? AND advice_type = 1 AND record_date = ? AND advice_doctor = ? and execution_state=?"
  5404. adviceCondition = append(adviceCondition, adviceWhere, orgID, scheduleDate, adminUserId, execution_state)
  5405. }
  5406. } else {
  5407. if cost_type > 0 {
  5408. adviceWhere = "status = 1 AND user_org_id = ? AND advice_type = 1 AND record_date = ? AND advice_doctor = ? and is_settle = ? "
  5409. adviceCondition = append(adviceCondition, adviceWhere, orgID, scheduleDate, adminUserId, cost_type)
  5410. } else {
  5411. adviceWhere = "status = 1 AND user_org_id = ? AND advice_type = 1 AND record_date = ? AND advice_doctor = ? "
  5412. adviceCondition = append(adviceCondition, adviceWhere, orgID, scheduleDate, adminUserId)
  5413. }
  5414. }
  5415. }
  5416. } else if patientType == 2 {
  5417. if patient_id > 0 {
  5418. if execution_state > 0 {
  5419. if cost_type > 0 {
  5420. adviceWhere = "status = 1 AND user_org_id = ? AND advice_type = 1 AND record_date = ? AND execution_staff = 0 and patient_id = ? and execution_state = ? and is_settle = ?"
  5421. adviceCondition = append(adviceCondition, adviceWhere, orgID, scheduleDate, patient_id, execution_state, cost_type)
  5422. } else {
  5423. adviceWhere = "status = 1 AND user_org_id = ? AND advice_type = 1 AND record_date = ? AND execution_staff = 0 and patient_id = ? and execution_state = ?"
  5424. adviceCondition = append(adviceCondition, adviceWhere, orgID, scheduleDate, patient_id, execution_state)
  5425. }
  5426. } else {
  5427. if cost_type > 0 {
  5428. adviceWhere = "status = 1 AND user_org_id = ? AND advice_type = 1 AND record_date = ? AND execution_staff = 0 and patient_id = ? and is_settle = ?"
  5429. adviceCondition = append(adviceCondition, adviceWhere, orgID, scheduleDate, patient_id, cost_type)
  5430. } else {
  5431. adviceWhere = "status = 1 AND user_org_id = ? AND advice_type = 1 AND record_date = ? AND execution_staff = 0 and patient_id = ?"
  5432. adviceCondition = append(adviceCondition, adviceWhere, orgID, scheduleDate, patient_id)
  5433. }
  5434. }
  5435. } else {
  5436. if execution_state > 0 {
  5437. if cost_type > 0 {
  5438. adviceWhere = "status = 1 AND user_org_id = ? AND advice_type = 1 AND record_date = ? AND execution_staff = 0 and execution_state = ? and is_settle = ?"
  5439. adviceCondition = append(adviceCondition, adviceWhere, orgID, scheduleDate, execution_state, cost_type)
  5440. } else {
  5441. adviceWhere = "status = 1 AND user_org_id = ? AND advice_type = 1 AND record_date = ? AND execution_staff = 0 and execution_state = ?"
  5442. adviceCondition = append(adviceCondition, adviceWhere, orgID, scheduleDate, execution_state)
  5443. }
  5444. } else {
  5445. if cost_type > 0 {
  5446. adviceWhere = "status = 1 AND user_org_id = ? AND advice_type = 1 AND record_date = ? AND execution_staff = 0 and is_settle = ?"
  5447. adviceCondition = append(adviceCondition, adviceWhere, orgID, scheduleDate, cost_type)
  5448. } else {
  5449. adviceWhere = "status = 1 AND user_org_id = ? AND advice_type = 1 AND record_date = ? AND execution_staff = 0"
  5450. adviceCondition = append(adviceCondition, adviceWhere, orgID, scheduleDate)
  5451. }
  5452. }
  5453. }
  5454. }
  5455. } else if adviceType == 3 {
  5456. if patientType == 0 {
  5457. if patient_id > 0 {
  5458. if execution_state > 0 {
  5459. if cost_type > 0 {
  5460. adviceWhere = "status = 1 AND user_org_id = ? AND advice_type = 3 AND record_date = ? and patient_id = ? and execution_state = ? and is_settle = ?"
  5461. adviceCondition = append(adviceCondition, adviceWhere, orgID, scheduleDate, patient_id, execution_state, cost_type)
  5462. } else {
  5463. adviceWhere = "status = 1 AND user_org_id = ? AND advice_type = 3 AND record_date = ? and patient_id = ? and execution_state = ?"
  5464. adviceCondition = append(adviceCondition, adviceWhere, orgID, scheduleDate, patient_id, execution_state)
  5465. }
  5466. } else {
  5467. if cost_type > 0 {
  5468. adviceWhere = "status = 1 AND user_org_id = ? AND advice_type = 3 AND record_date = ? and patient_id = ? and is_settle = ? "
  5469. adviceCondition = append(adviceCondition, adviceWhere, orgID, scheduleDate, patient_id, cost_type)
  5470. } else {
  5471. adviceWhere = "status = 1 AND user_org_id = ? AND advice_type = 3 AND record_date = ? and patient_id = ? "
  5472. adviceCondition = append(adviceCondition, adviceWhere, orgID, scheduleDate, patient_id)
  5473. }
  5474. }
  5475. } else {
  5476. if execution_state > 0 {
  5477. if cost_type > 0 {
  5478. adviceWhere = "status = 1 AND user_org_id = ? AND advice_type = 3 AND record_date = ? and execution_state =? and is_settle = ?"
  5479. adviceCondition = append(adviceCondition, adviceWhere, orgID, scheduleDate, execution_state, cost_type)
  5480. } else {
  5481. adviceWhere = "status = 1 AND user_org_id = ? AND advice_type = 3 AND record_date = ? and execution_state =? "
  5482. adviceCondition = append(adviceCondition, adviceWhere, orgID, scheduleDate, execution_state)
  5483. }
  5484. } else {
  5485. if cost_type > 0 {
  5486. adviceWhere = "status = 1 AND user_org_id = ? AND advice_type = 3 AND record_date = ? and is_settle = ? "
  5487. adviceCondition = append(adviceCondition, adviceWhere, orgID, scheduleDate, cost_type)
  5488. } else {
  5489. adviceWhere = "status = 1 AND user_org_id = ? AND advice_type = 3 AND record_date = ? "
  5490. adviceCondition = append(adviceCondition, adviceWhere, orgID, scheduleDate)
  5491. }
  5492. }
  5493. }
  5494. } else if patientType == 1 {
  5495. if patient_id > 0 {
  5496. if execution_state > 0 {
  5497. if cost_type > 0 {
  5498. adviceWhere = "status = 1 AND user_org_id = ? AND record_date = ? AND advice_type = 3 AND advice_doctor = ? and patient_id = ? and execution_state = ? and is_settle = ?"
  5499. adviceCondition = append(adviceCondition, adviceWhere, orgID, scheduleDate, adminUserId, patient_id, execution_state, cost_type)
  5500. } else {
  5501. adviceWhere = "status = 1 AND user_org_id = ? AND record_date = ? AND advice_type = 3 AND advice_doctor = ? and patient_id = ? and execution_state = ?"
  5502. adviceCondition = append(adviceCondition, adviceWhere, orgID, scheduleDate, adminUserId, patient_id, execution_state)
  5503. }
  5504. } else {
  5505. if cost_type > 0 {
  5506. adviceWhere = "status = 1 AND user_org_id = ? AND record_date = ? AND advice_type = 3 AND advice_doctor = ? and patient_id = ? and is_settle = ?"
  5507. adviceCondition = append(adviceCondition, adviceWhere, orgID, scheduleDate, adminUserId, patient_id, cost_type)
  5508. } else {
  5509. adviceWhere = "status = 1 AND user_org_id = ? AND record_date = ? AND advice_type = 3 AND advice_doctor = ? and patient_id = ?"
  5510. adviceCondition = append(adviceCondition, adviceWhere, orgID, scheduleDate, adminUserId, patient_id)
  5511. }
  5512. }
  5513. } else {
  5514. if execution_state > 0 {
  5515. if cost_type > 0 {
  5516. adviceWhere = "status = 1 AND user_org_id = ? AND record_date = ? AND advice_type = 3 AND advice_doctor = ? and execution_state =? and is_settle = ?"
  5517. adviceCondition = append(adviceCondition, adviceWhere, orgID, scheduleDate, adminUserId, execution_state, cost_type)
  5518. } else {
  5519. adviceWhere = "status = 1 AND user_org_id = ? AND record_date = ? AND advice_type = 3 AND advice_doctor = ? and execution_state =? "
  5520. adviceCondition = append(adviceCondition, adviceWhere, orgID, scheduleDate, adminUserId, execution_state)
  5521. }
  5522. } else {
  5523. if cost_type > 0 {
  5524. adviceWhere = "status = 1 AND user_org_id = ? AND record_date = ? AND advice_type = 3 AND advice_doctor = ? and is_settle = ?"
  5525. adviceCondition = append(adviceCondition, adviceWhere, orgID, scheduleDate, adminUserId, cost_type)
  5526. } else {
  5527. adviceWhere = "status = 1 AND user_org_id = ? AND record_date = ? AND advice_type = 3 AND advice_doctor = ? "
  5528. adviceCondition = append(adviceCondition, adviceWhere, orgID, scheduleDate, adminUserId)
  5529. }
  5530. }
  5531. }
  5532. } else if patientType == 2 {
  5533. if patient_id > 0 {
  5534. if execution_state > 0 {
  5535. if cost_type > 0 {
  5536. adviceWhere = "status = 1 AND user_org_id = ? AND record_date = ? AND advice_type = 3 AND execution_staff = 0 and patient_id = ? and execution_state = ? and is_settle = ?"
  5537. adviceCondition = append(adviceCondition, adviceWhere, orgID, scheduleDate, patient_id, execution_state, cost_type)
  5538. } else {
  5539. adviceWhere = "status = 1 AND user_org_id = ? AND record_date = ? AND advice_type = 3 AND execution_staff = 0 and patient_id = ? and execution_state = ?"
  5540. adviceCondition = append(adviceCondition, adviceWhere, orgID, scheduleDate, patient_id, execution_state)
  5541. }
  5542. } else {
  5543. if cost_type > 0 {
  5544. adviceWhere = "status = 1 AND user_org_id = ? AND record_date = ? AND advice_type = 3 AND execution_staff = 0 and patient_id = ? and is_settle = ?"
  5545. adviceCondition = append(adviceCondition, adviceWhere, orgID, scheduleDate, patient_id, cost_type)
  5546. } else {
  5547. adviceWhere = "status = 1 AND user_org_id = ? AND record_date = ? AND advice_type = 3 AND execution_staff = 0 and patient_id = ?"
  5548. adviceCondition = append(adviceCondition, adviceWhere, orgID, scheduleDate, patient_id)
  5549. }
  5550. }
  5551. } else {
  5552. if execution_state > 0 {
  5553. if cost_type > 0 {
  5554. adviceWhere = "status = 1 AND user_org_id = ? AND record_date = ? AND advice_type = 3 AND execution_staff = 0 and execution_state= ? and is_settle = ?"
  5555. adviceCondition = append(adviceCondition, adviceWhere, orgID, scheduleDate, execution_state, cost_type)
  5556. } else {
  5557. adviceWhere = "status = 1 AND user_org_id = ? AND record_date = ? AND advice_type = 3 AND execution_staff = 0 and execution_state= ?"
  5558. adviceCondition = append(adviceCondition, adviceWhere, orgID, scheduleDate, execution_state)
  5559. }
  5560. } else {
  5561. if cost_type > 0 {
  5562. adviceWhere = "status = 1 AND user_org_id = ? AND record_date = ? AND advice_type = 3 AND execution_staff = 0 and is_settle = ?"
  5563. adviceCondition = append(adviceCondition, adviceWhere, orgID, scheduleDate, cost_type)
  5564. } else {
  5565. adviceWhere = "status = 1 AND user_org_id = ? AND record_date = ? AND advice_type = 3 AND execution_staff = 0"
  5566. adviceCondition = append(adviceCondition, adviceWhere, orgID, scheduleDate)
  5567. }
  5568. }
  5569. }
  5570. }
  5571. } else if adviceType == 2 && len(deliverWay) > 0 {
  5572. if patientType == 0 {
  5573. if patient_id > 0 {
  5574. if execution_state > 0 {
  5575. if cost_type > 0 {
  5576. adviceWhere = "status = 1 AND user_org_id = ? AND advice_type = 2 AND record_date = ? and delivery_way = ? and patient_id = ? and execution_state = ? and is_settle = ?"
  5577. adviceCondition = append(adviceCondition, adviceWhere, orgID, scheduleDate, deliverWay, patient_id, execution_state, cost_type)
  5578. } else {
  5579. adviceWhere = "status = 1 AND user_org_id = ? AND advice_type = 2 AND record_date = ? and delivery_way = ? and patient_id = ? and execution_state = ?"
  5580. adviceCondition = append(adviceCondition, adviceWhere, orgID, scheduleDate, deliverWay, patient_id, execution_state)
  5581. }
  5582. } else {
  5583. if cost_type > 0 {
  5584. adviceWhere = "status = 1 AND user_org_id = ? AND advice_type = 2 AND record_date = ? and delivery_way = ? and patient_id = ? and is_settle = ?"
  5585. adviceCondition = append(adviceCondition, adviceWhere, orgID, scheduleDate, deliverWay, patient_id, cost_type)
  5586. } else {
  5587. adviceWhere = "status = 1 AND user_org_id = ? AND advice_type = 2 AND record_date = ? and delivery_way = ? and patient_id = ?"
  5588. adviceCondition = append(adviceCondition, adviceWhere, orgID, scheduleDate, deliverWay, patient_id)
  5589. }
  5590. }
  5591. } else {
  5592. if execution_state > 0 {
  5593. if cost_type > 0 {
  5594. adviceWhere = "status = 1 AND user_org_id = ? AND advice_type = 2 AND record_date = ? and delivery_way = ? and execution_state = ? and is_settle = ?"
  5595. adviceCondition = append(adviceCondition, adviceWhere, orgID, scheduleDate, deliverWay, execution_state, cost_type)
  5596. } else {
  5597. adviceWhere = "status = 1 AND user_org_id = ? AND advice_type = 2 AND record_date = ? and delivery_way = ? and execution_state = ?"
  5598. adviceCondition = append(adviceCondition, adviceWhere, orgID, scheduleDate, deliverWay, execution_state)
  5599. }
  5600. } else {
  5601. if cost_type > 0 {
  5602. adviceWhere = "status = 1 AND user_org_id = ? AND advice_type = 2 AND record_date = ? and delivery_way = ? and is_settle = ?"
  5603. adviceCondition = append(adviceCondition, adviceWhere, orgID, scheduleDate, deliverWay, cost_type)
  5604. } else {
  5605. adviceWhere = "status = 1 AND user_org_id = ? AND advice_type = 2 AND record_date = ? and delivery_way = ?"
  5606. adviceCondition = append(adviceCondition, adviceWhere, orgID, scheduleDate, deliverWay)
  5607. }
  5608. }
  5609. }
  5610. } else if patientType == 1 {
  5611. if patient_id > 0 {
  5612. if execution_state > 0 {
  5613. if cost_type > 0 {
  5614. adviceWhere = "status = 1 AND user_org_id = ? AND record_date = ? AND advice_type = 2 AND advice_doctor = ? and delivery_way = ? and patient_id = ? and execution_state = ? and is_settle = ?"
  5615. adviceCondition = append(adviceCondition, adviceWhere, orgID, scheduleDate, adminUserId, deliverWay, patient_id, execution_state, cost_type)
  5616. } else {
  5617. adviceWhere = "status = 1 AND user_org_id = ? AND record_date = ? AND advice_type = 2 AND advice_doctor = ? and delivery_way = ? and patient_id = ? and execution_state = ?"
  5618. adviceCondition = append(adviceCondition, adviceWhere, orgID, scheduleDate, adminUserId, deliverWay, patient_id, execution_state)
  5619. }
  5620. } else {
  5621. if cost_type > 0 {
  5622. adviceWhere = "status = 1 AND user_org_id = ? AND record_date = ? AND advice_type = 2 AND advice_doctor = ? and delivery_way = ? and patient_id = ? and is_settle = ?"
  5623. adviceCondition = append(adviceCondition, adviceWhere, orgID, scheduleDate, adminUserId, deliverWay, patient_id, cost_type)
  5624. } else {
  5625. adviceWhere = "status = 1 AND user_org_id = ? AND record_date = ? AND advice_type = 2 AND advice_doctor = ? and delivery_way = ? and patient_id = ?"
  5626. adviceCondition = append(adviceCondition, adviceWhere, orgID, scheduleDate, adminUserId, deliverWay, patient_id)
  5627. }
  5628. }
  5629. } else {
  5630. if execution_state > 0 {
  5631. if cost_type > 0 {
  5632. adviceWhere = "status = 1 AND user_org_id = ? AND record_date = ? AND advice_type = 2 AND advice_doctor = ? and delivery_way = ? and execution_state = ? and is_settle = ?"
  5633. adviceCondition = append(adviceCondition, adviceWhere, orgID, scheduleDate, adminUserId, deliverWay, execution_state, cost_type)
  5634. } else {
  5635. adviceWhere = "status = 1 AND user_org_id = ? AND record_date = ? AND advice_type = 2 AND advice_doctor = ? and delivery_way = ? and execution_state = ?"
  5636. adviceCondition = append(adviceCondition, adviceWhere, orgID, scheduleDate, adminUserId, deliverWay, execution_state)
  5637. }
  5638. } else {
  5639. if cost_type > 0 {
  5640. adviceWhere = "status = 1 AND user_org_id = ? AND record_date = ? AND advice_type = 2 AND advice_doctor = ? and delivery_way = ? and is_settle = ?"
  5641. adviceCondition = append(adviceCondition, adviceWhere, orgID, scheduleDate, adminUserId, deliverWay, cost_type)
  5642. } else {
  5643. adviceWhere = "status = 1 AND user_org_id = ? AND record_date = ? AND advice_type = 2 AND advice_doctor = ? and delivery_way = ? "
  5644. adviceCondition = append(adviceCondition, adviceWhere, orgID, scheduleDate, adminUserId, deliverWay)
  5645. }
  5646. }
  5647. }
  5648. } else if patientType == 2 {
  5649. if patient_id > 0 {
  5650. if execution_state > 0 {
  5651. if cost_type > 0 {
  5652. adviceWhere = "status = 1 AND user_org_id = ? AND record_date = ? AND advice_type = 2 AND execution_staff = 0 and delivery_way = ? and patient_id = ? and execution_state = ? and is_settle = ?"
  5653. adviceCondition = append(adviceCondition, adviceWhere, orgID, scheduleDate, deliverWay, patient_id, execution_state, cost_type)
  5654. } else {
  5655. adviceWhere = "status = 1 AND user_org_id = ? AND record_date = ? AND advice_type = 2 AND execution_staff = 0 and delivery_way = ? and patient_id = ? and execution_state = ?"
  5656. adviceCondition = append(adviceCondition, adviceWhere, orgID, scheduleDate, deliverWay, patient_id, execution_state)
  5657. }
  5658. } else {
  5659. if cost_type > 0 {
  5660. adviceWhere = "status = 1 AND user_org_id = ? AND record_date = ? AND advice_type = 2 AND execution_staff = 0 and delivery_way = ? and patient_id = ? and is_settle = ?"
  5661. adviceCondition = append(adviceCondition, adviceWhere, orgID, scheduleDate, deliverWay, patient_id, cost_type)
  5662. } else {
  5663. adviceWhere = "status = 1 AND user_org_id = ? AND record_date = ? AND advice_type = 2 AND execution_staff = 0 and delivery_way = ? and patient_id = ?"
  5664. adviceCondition = append(adviceCondition, adviceWhere, orgID, scheduleDate, deliverWay, patient_id)
  5665. }
  5666. }
  5667. } else {
  5668. if execution_state > 0 {
  5669. if cost_type > 0 {
  5670. adviceWhere = "status = 1 AND user_org_id = ? AND record_date = ? AND advice_type = 2 AND execution_staff = 0 and delivery_way = ? and execution_state = ? and is_settle = ?"
  5671. adviceCondition = append(adviceCondition, adviceWhere, orgID, scheduleDate, deliverWay, execution_state, cost_type)
  5672. } else {
  5673. adviceWhere = "status = 1 AND user_org_id = ? AND record_date = ? AND advice_type = 2 AND execution_staff = 0 and delivery_way = ? and execution_state = ?"
  5674. adviceCondition = append(adviceCondition, adviceWhere, orgID, scheduleDate, deliverWay, execution_state)
  5675. }
  5676. } else {
  5677. if cost_type > 0 {
  5678. adviceWhere = "status = 1 AND user_org_id = ? AND record_date = ? AND advice_type = 2 AND execution_staff = 0 and delivery_way = ? and is_settle = ?"
  5679. adviceCondition = append(adviceCondition, adviceWhere, orgID, scheduleDate, deliverWay, cost_type)
  5680. } else {
  5681. adviceWhere = "status = 1 AND user_org_id = ? AND record_date = ? AND advice_type = 2 AND execution_staff = 0 and delivery_way = ?"
  5682. adviceCondition = append(adviceCondition, adviceWhere, orgID, scheduleDate, deliverWay)
  5683. }
  5684. }
  5685. }
  5686. }
  5687. } else if adviceType == 2 && len(deliverWay) <= 0 {
  5688. if patientType == 0 {
  5689. if patient_id > 0 {
  5690. if execution_state > 0 {
  5691. if cost_type > 0 {
  5692. adviceWhere = "status = 1 AND user_org_id = ? AND advice_type = 2 AND record_date = ? and patient_id = ? and execution_state = ? and is_settle = ?"
  5693. adviceCondition = append(adviceCondition, adviceWhere, orgID, scheduleDate, patient_id, execution_state, cost_type)
  5694. } else {
  5695. adviceWhere = "status = 1 AND user_org_id = ? AND advice_type = 2 AND record_date = ? and patient_id = ? and execution_state = ?"
  5696. adviceCondition = append(adviceCondition, adviceWhere, orgID, scheduleDate, patient_id, execution_state)
  5697. }
  5698. } else {
  5699. if cost_type > 0 {
  5700. adviceWhere = "status = 1 AND user_org_id = ? AND advice_type = 2 AND record_date = ? and patient_id = ? and is_settle = ?"
  5701. adviceCondition = append(adviceCondition, adviceWhere, orgID, scheduleDate, patient_id, cost_type)
  5702. } else {
  5703. adviceWhere = "status = 1 AND user_org_id = ? AND advice_type = 2 AND record_date = ? and patient_id = ?"
  5704. adviceCondition = append(adviceCondition, adviceWhere, orgID, scheduleDate, patient_id)
  5705. }
  5706. }
  5707. } else {
  5708. if execution_state > 0 {
  5709. if cost_type > 0 {
  5710. adviceWhere = "status = 1 AND user_org_id = ? AND advice_type = 2 AND record_date = ? and execution_state = ? and is_settle = ?"
  5711. adviceCondition = append(adviceCondition, adviceWhere, orgID, scheduleDate, execution_state, cost_type)
  5712. } else {
  5713. adviceWhere = "status = 1 AND user_org_id = ? AND advice_type = 2 AND record_date = ? and execution_state = ?"
  5714. adviceCondition = append(adviceCondition, adviceWhere, orgID, scheduleDate, execution_state)
  5715. }
  5716. } else {
  5717. if cost_type > 0 {
  5718. adviceWhere = "status = 1 AND user_org_id = ? AND advice_type = 2 AND record_date = ? and is_settle = ?"
  5719. adviceCondition = append(adviceCondition, adviceWhere, orgID, scheduleDate, cost_type)
  5720. } else {
  5721. adviceWhere = "status = 1 AND user_org_id = ? AND advice_type = 2 AND record_date = ?"
  5722. adviceCondition = append(adviceCondition, adviceWhere, orgID, scheduleDate)
  5723. }
  5724. }
  5725. }
  5726. } else if patientType == 1 {
  5727. if patient_id > 0 {
  5728. if execution_state > 0 {
  5729. if cost_type > 0 {
  5730. adviceWhere = "status = 1 AND user_org_id = ? AND record_date = ? AND advice_type = 2 AND advice_doctor = ? and patient_id = ? and execution_state = ? and is_settle = ?"
  5731. adviceCondition = append(adviceCondition, adviceWhere, orgID, scheduleDate, adminUserId, patient_id, execution_state, cost_type)
  5732. } else {
  5733. adviceWhere = "status = 1 AND user_org_id = ? AND record_date = ? AND advice_type = 2 AND advice_doctor = ? and patient_id = ? and execution_state = ?"
  5734. adviceCondition = append(adviceCondition, adviceWhere, orgID, scheduleDate, adminUserId, patient_id, execution_state)
  5735. }
  5736. } else {
  5737. if cost_type > 0 {
  5738. adviceWhere = "status = 1 AND user_org_id = ? AND record_date = ? AND advice_type = 2 AND advice_doctor = ? and patient_id = ? and is_settle = ?"
  5739. adviceCondition = append(adviceCondition, adviceWhere, orgID, scheduleDate, adminUserId, patient_id, cost_type)
  5740. } else {
  5741. adviceWhere = "status = 1 AND user_org_id = ? AND record_date = ? AND advice_type = 2 AND advice_doctor = ? and patient_id = ?"
  5742. adviceCondition = append(adviceCondition, adviceWhere, orgID, scheduleDate, adminUserId, patient_id)
  5743. }
  5744. }
  5745. } else {
  5746. if execution_state > 0 {
  5747. if cost_type > 0 {
  5748. adviceWhere = "status = 1 AND user_org_id = ? AND record_date = ? AND advice_type = 2 AND advice_doctor = ? and execution_state = ? and is_settle = ?"
  5749. adviceCondition = append(adviceCondition, adviceWhere, orgID, scheduleDate, adminUserId, execution_state, cost_type)
  5750. } else {
  5751. adviceWhere = "status = 1 AND user_org_id = ? AND record_date = ? AND advice_type = 2 AND advice_doctor = ? and execution_state = ?"
  5752. adviceCondition = append(adviceCondition, adviceWhere, orgID, scheduleDate, adminUserId, execution_state)
  5753. }
  5754. } else {
  5755. if cost_type > 0 {
  5756. adviceWhere = "status = 1 AND user_org_id = ? AND record_date = ? AND advice_type = 2 AND advice_doctor = ? and is_settle = ?"
  5757. adviceCondition = append(adviceCondition, adviceWhere, orgID, scheduleDate, adminUserId, cost_type)
  5758. } else {
  5759. adviceWhere = "status = 1 AND user_org_id = ? AND record_date = ? AND advice_type = 2 AND advice_doctor = ?"
  5760. adviceCondition = append(adviceCondition, adviceWhere, orgID, scheduleDate, adminUserId)
  5761. }
  5762. }
  5763. }
  5764. } else if patientType == 2 {
  5765. if patient_id > 0 {
  5766. if execution_state > 0 {
  5767. if cost_type > 0 {
  5768. adviceWhere = "status = 1 AND user_org_id = ? AND record_date = ? AND advice_type = 2 AND execution_staff = 0 and patient_id = ? and execution_state = ? and is_settle = ?"
  5769. adviceCondition = append(adviceCondition, adviceWhere, orgID, scheduleDate, patient_id, execution_state, cost_type)
  5770. } else {
  5771. adviceWhere = "status = 1 AND user_org_id = ? AND record_date = ? AND advice_type = 2 AND execution_staff = 0 and patient_id = ? and execution_state = ?"
  5772. adviceCondition = append(adviceCondition, adviceWhere, orgID, scheduleDate, patient_id, execution_state)
  5773. }
  5774. } else {
  5775. if cost_type > 0 {
  5776. adviceWhere = "status = 1 AND user_org_id = ? AND record_date = ? AND advice_type = 2 AND execution_staff = 0 and patient_id = ? and is_settle = ?"
  5777. adviceCondition = append(adviceCondition, adviceWhere, orgID, scheduleDate, patient_id, cost_type)
  5778. } else {
  5779. adviceWhere = "status = 1 AND user_org_id = ? AND record_date = ? AND advice_type = 2 AND execution_staff = 0 and patient_id = ?"
  5780. adviceCondition = append(adviceCondition, adviceWhere, orgID, scheduleDate, patient_id)
  5781. }
  5782. }
  5783. } else {
  5784. if execution_state > 0 {
  5785. if cost_type > 0 {
  5786. adviceWhere = "status = 1 AND user_org_id = ? AND record_date = ? AND advice_type = 2 AND execution_staff = 0 and execution_state = ? and is_settle = ?"
  5787. adviceCondition = append(adviceCondition, adviceWhere, orgID, scheduleDate, execution_state, cost_type)
  5788. } else {
  5789. adviceWhere = "status = 1 AND user_org_id = ? AND record_date = ? AND advice_type = 2 AND execution_staff = 0 and execution_state = ?"
  5790. adviceCondition = append(adviceCondition, adviceWhere, orgID, scheduleDate, execution_state)
  5791. }
  5792. } else {
  5793. if cost_type > 0 {
  5794. adviceWhere = "status = 1 AND user_org_id = ? AND record_date = ? AND advice_type = 2 AND execution_staff = 0 and is_settle = ?"
  5795. adviceCondition = append(adviceCondition, adviceWhere, orgID, scheduleDate, cost_type)
  5796. } else {
  5797. adviceWhere = "status = 1 AND user_org_id = ? AND record_date = ? AND advice_type = 2 AND execution_staff = 0"
  5798. adviceCondition = append(adviceCondition, adviceWhere, orgID, scheduleDate)
  5799. }
  5800. }
  5801. }
  5802. }
  5803. }
  5804. db := readDb.Table("xt_schedule")
  5805. if scheduleType > 0 {
  5806. db = db.Where("schedule_type = ?", scheduleType)
  5807. }
  5808. if partitonType > 0 {
  5809. db = db.Where("partition_id = ?", partitonType)
  5810. }
  5811. db = db.Preload("SchedualPatient", "status = 1 AND user_org_id = ?", orgID).
  5812. Preload("DialysisOrder", func(db *gorm.DB) *gorm.DB {
  5813. return db.Where("status = 1 AND user_org_id = ?", orgID).Preload("DeviceNumber", "status = 1 AND org_id= ?", orgID)
  5814. }).
  5815. Preload("DeviceNumber", "status = 1 AND org_id = ?", orgID).
  5816. Preload("DeviceNumber.Zone", "status = 1 AND org_id = ?", orgID).
  5817. Preload("Prescription", "status = 1 AND user_org_id = ? AND record_date = ?", orgID, scheduleDate).
  5818. Preload("DialysisAssesmentBefor", "status =1 AND user_org_id = ? and assessment_date =?", orgID, scheduleDate).
  5819. Preload("DoctorAdvices", adviceCondition...).
  5820. Where("status = 1 AND user_org_id = ?", orgID)
  5821. if scheduleDate != 0 {
  5822. db = db.Where("schedule_date = ?", scheduleDate)
  5823. }
  5824. err := db.Find(&vms).Error
  5825. return vms, err
  5826. }
  5827. func GetLastPatientOrder(id int64) (models.XtDialysisOrder, error) {
  5828. order := models.XtDialysisOrder{}
  5829. err := XTReadDB().Where("id = ? and status = 1", id).Find(&order).Error
  5830. return order, err
  5831. }
  5832. func UpdateMobilePatient(org_id int64, patient_id int64, schedule_remark string) error {
  5833. order := models.XtPatients{}
  5834. err := XTWriteDB().Model(&order).Where("user_org_id = ? and id = ? and status = 1", org_id, patient_id).Updates(map[string]interface{}{"schedule_remark": schedule_remark}).Error
  5835. err = XTWriteDB().Model(models.XtPatientsNew{}).Where("user_org_id = ? and id = ? and status = 1", org_id, patient_id).Updates(map[string]interface{}{"schedule_remark": schedule_remark}).Error
  5836. return err
  5837. }
  5838. func GetDialysisTotalCount(org_id int64, patient_id int64) (models.BloodDialysisOrderCount, error) {
  5839. order := models.BloodDialysisOrderCount{}
  5840. db := XTReadDB().Table("xt_dialysis_order as o")
  5841. err = db.Raw("select count(o.id) as count,o.patient_id from xt_dialysis_order as o left join xt_schedule as x on x.patient_id = o.patient_id where o.status =1 and o.user_org_id = ? and o.patient_id = ? and x.schedule_date = o.dialysis_date and x.status = 1 ", org_id, patient_id).Scan(&order).Error
  5842. return order, err
  5843. }
  5844. func GetDialysisTotalCountOne(org_id int64, patient_id int64) (models.BloodDialysisOrderCount, error) {
  5845. order := models.BloodDialysisOrderCount{}
  5846. db := XTReadDB().Table("xt_dialysis_order as o")
  5847. err = db.Raw("select count(o.id) as count,o.patient_id from xt_dialysis_order as o left join xt_schedule as x on x.patient_id = o.patient_id where o.status =1 and o.user_org_id = ? and o.patient_id = ? and o.dialysis_date>=1672502400 and x.schedule_date = o.dialysis_date and x.status = 1 ", org_id, patient_id).Scan(&order).Error
  5848. return order, err
  5849. }
  5850. func UpdateDialysisOrder(patient_id int64, dialysis_date int64, user_org_id int64, dialysis_total int64) (models.DialysisOrder, error) {
  5851. order := models.DialysisOrder{}
  5852. err := XTWriteDB().Model(&order).Where("patient_id = ? and dialysis_date = ? and user_org_id = ? and status = 1", patient_id, dialysis_date, user_org_id).Updates(map[string]interface{}{"dialysis_total": dialysis_total}).Error
  5853. return order, err
  5854. }
  5855. func UpdateDeviceInformation(patientid int64, dialysis_date int64) error {
  5856. information := models.DeviceInformation{}
  5857. err := UserWriteDB().Model(&information).Where("patient_id = ? and date = ? and status = 1", patientid, dialysis_date).Update(map[string]interface{}{"status": 0}).Error
  5858. return err
  5859. }
  5860. func MobileGetDoubleCheckSix(orgID int64, patientID int64, recordDate int64) (models.DoubleCheck, error) {
  5861. var record models.DoubleCheck
  5862. err := readDb.Where("patient_id = ? and user_org_id = ? and status = 1 and check_date = ?", patientID, orgID, recordDate).First(&record).Error
  5863. return record, err
  5864. }
  5865. func GetFirstMonitor(patient_id int64, monit_date int64) (models.MonitoringRecord, error) {
  5866. record := models.MonitoringRecord{}
  5867. err := XTReadDB().Where("patient_id = ? and monitoring_date = ? and status=1", patient_id, monit_date).First(&record).Error
  5868. return record, err
  5869. }
  5870. func UpdateFirstMonitor(id int64, catheter_operation string) (models.MonitoringRecord, error) {
  5871. record := models.MonitoringRecord{}
  5872. err := XTWriteDB().Model(&record).Where("id = ? and status= 1", id).Updates(map[string]interface{}{"dispose": catheter_operation}).Error
  5873. return record, err
  5874. }
  5875. func GetHisDoctorAdvicesTwentyOne(orgID int64, scheduleDate int64, deliverWay string, scheduleType int64, partitionType int64, patient_id int64, execution_state int64, cost_type int64, execution_frequency string) ([]*HisMScheduleDoctorAdviceVM, error) {
  5876. var vms []*HisMScheduleDoctorAdviceVM
  5877. if len(deliverWay) > 0 {
  5878. db := readDb.Table("xt_schedule")
  5879. if scheduleType > 0 {
  5880. db = db.Where("schedule_type = ?", scheduleType)
  5881. }
  5882. if partitionType > 0 {
  5883. db = db.Where("partition_id = ?", partitionType)
  5884. }
  5885. if patient_id > 0 {
  5886. if execution_state > 0 {
  5887. if cost_type > 0 {
  5888. if len(execution_frequency) > 0 {
  5889. db = db.Preload("SchedualPatient", "status = 1 AND user_org_id = ? and id =?", orgID, patient_id).
  5890. Preload("DeviceNumber", "status = 1 AND org_id = ?", orgID).
  5891. Preload("DeviceNumber.Zone", "status = 1 AND org_id = ?", orgID).
  5892. Preload("Prescription", "status = 1 AND user_org_id = ? AND record_date = ? and patient_id = ?", orgID, scheduleDate, patient_id).
  5893. Preload("HisDoctorAdviceInfo", "status = 1 AND user_org_id = ? AND advice_date = ? and delivery_way = ? and patient_id = ? and execution_state = ? and is_settle and execution_frequency = ?", orgID, scheduleDate, deliverWay, patient_id, execution_state, cost_type, execution_frequency).
  5894. Preload("DialysisOrder", func(db *gorm.DB) *gorm.DB {
  5895. return db.Where("status = 1 AND user_org_id = ? and patient_id = ?", orgID, patient_id).Preload("DeviceNumber", "status = 1 AND org_id= ?", orgID)
  5896. }).Preload("DialysisAssesmentBefor", "status =1 AND user_org_id = ? and assessment_date =?", orgID, scheduleDate).
  5897. Where("status = 1 AND user_org_id = ?", orgID)
  5898. if scheduleDate != 0 {
  5899. db = db.Where("schedule_date = ?", scheduleDate)
  5900. }
  5901. err = db.Find(&vms).Error
  5902. } else {
  5903. db = db.Preload("SchedualPatient", "status = 1 AND user_org_id = ? and id =?", orgID, patient_id).
  5904. Preload("DeviceNumber", "status = 1 AND org_id = ?", orgID).
  5905. Preload("DeviceNumber.Zone", "status = 1 AND org_id = ?", orgID).
  5906. Preload("Prescription", "status = 1 AND user_org_id = ? AND record_date = ? and patient_id = ?", orgID, scheduleDate, patient_id).
  5907. Preload("HisDoctorAdviceInfo", "status = 1 AND user_org_id = ? AND advice_date = ? and delivery_way = ? and patient_id = ? and execution_state = ? and is_settle", orgID, scheduleDate, deliverWay, patient_id, execution_state, cost_type).
  5908. Preload("DialysisOrder", func(db *gorm.DB) *gorm.DB {
  5909. return db.Where("status = 1 AND user_org_id = ? and patient_id = ?", orgID, patient_id).Preload("DeviceNumber", "status = 1 AND org_id= ?", orgID)
  5910. }).Preload("DialysisAssesmentBefor", "status =1 AND user_org_id = ? and assessment_date =?", orgID, scheduleDate).
  5911. Where("status = 1 AND user_org_id = ?", orgID)
  5912. if scheduleDate != 0 {
  5913. db = db.Where("schedule_date = ?", scheduleDate)
  5914. }
  5915. err = db.Find(&vms).Error
  5916. }
  5917. } else {
  5918. if len(execution_frequency) > 0 {
  5919. db = db.Preload("SchedualPatient", "status = 1 AND user_org_id = ? and id =?", orgID, patient_id).
  5920. Preload("DeviceNumber", "status = 1 AND org_id = ?", orgID).
  5921. Preload("DeviceNumber.Zone", "status = 1 AND org_id = ?", orgID).
  5922. Preload("Prescription", "status = 1 AND user_org_id = ? AND record_date = ? and patient_id = ?", orgID, scheduleDate, patient_id).
  5923. Preload("HisDoctorAdviceInfo", "status = 1 AND user_org_id = ? AND advice_date = ? and delivery_way = ? and patient_id = ? and execution_state = ? and execution_frequency = ?", orgID, scheduleDate, deliverWay, patient_id, execution_state, execution_frequency).
  5924. Preload("DialysisOrder", func(db *gorm.DB) *gorm.DB {
  5925. return db.Where("status = 1 AND user_org_id = ? and patient_id = ?", orgID, patient_id).Preload("DeviceNumber", "status = 1 AND org_id= ?", orgID)
  5926. }).Preload("DialysisAssesmentBefor", "status =1 AND user_org_id = ? and assessment_date =?", orgID, scheduleDate).
  5927. Where("status = 1 AND user_org_id = ?", orgID)
  5928. if scheduleDate != 0 {
  5929. db = db.Where("schedule_date = ?", scheduleDate)
  5930. }
  5931. err = db.Find(&vms).Error
  5932. } else {
  5933. db = db.Preload("SchedualPatient", "status = 1 AND user_org_id = ? and id =?", orgID, patient_id).
  5934. Preload("DeviceNumber", "status = 1 AND org_id = ?", orgID).
  5935. Preload("DeviceNumber.Zone", "status = 1 AND org_id = ?", orgID).
  5936. Preload("Prescription", "status = 1 AND user_org_id = ? AND record_date = ? and patient_id = ?", orgID, scheduleDate, patient_id).
  5937. Preload("HisDoctorAdviceInfo", "status = 1 AND user_org_id = ? AND advice_date = ? and delivery_way = ? and patient_id = ? and execution_state = ?", orgID, scheduleDate, deliverWay, patient_id, execution_state).
  5938. Preload("DialysisOrder", func(db *gorm.DB) *gorm.DB {
  5939. return db.Where("status = 1 AND user_org_id = ? and patient_id = ?", orgID, patient_id).Preload("DeviceNumber", "status = 1 AND org_id= ?", orgID)
  5940. }).Preload("DialysisAssesmentBefor", "status =1 AND user_org_id = ? and assessment_date =?", orgID, scheduleDate).
  5941. Where("status = 1 AND user_org_id = ?", orgID)
  5942. if scheduleDate != 0 {
  5943. db = db.Where("schedule_date = ?", scheduleDate)
  5944. }
  5945. err = db.Find(&vms).Error
  5946. }
  5947. }
  5948. } else {
  5949. if cost_type > 0 {
  5950. if len(execution_frequency) > 0 {
  5951. db = db.Preload("SchedualPatient", "status = 1 AND user_org_id = ? and id =?", orgID, patient_id).
  5952. Preload("DeviceNumber", "status = 1 AND org_id = ?", orgID).
  5953. Preload("DeviceNumber.Zone", "status = 1 AND org_id = ?", orgID).
  5954. Preload("Prescription", "status = 1 AND user_org_id = ? AND record_date = ? and patient_id = ?", orgID, scheduleDate, patient_id).
  5955. Preload("HisDoctorAdviceInfo", "status = 1 AND user_org_id = ? AND advice_date = ? and delivery_way = ? and patient_id = ? and is_settle = ? and execution_frequency =?", orgID, scheduleDate, deliverWay, patient_id, cost_type, execution_frequency).
  5956. Preload("DialysisOrder", func(db *gorm.DB) *gorm.DB {
  5957. return db.Where("status = 1 AND user_org_id = ? and patient_id = ?", orgID, patient_id).Preload("DeviceNumber", "status = 1 AND org_id= ?", orgID)
  5958. }).Preload("DialysisAssesmentBefor", "status =1 AND user_org_id = ? and assessment_date =?", orgID, scheduleDate).
  5959. Where("status = 1 AND user_org_id = ?", orgID)
  5960. if scheduleDate != 0 {
  5961. db = db.Where("schedule_date = ?", scheduleDate)
  5962. }
  5963. err = db.Find(&vms).Error
  5964. } else {
  5965. db = db.Preload("SchedualPatient", "status = 1 AND user_org_id = ? and id =?", orgID, patient_id).
  5966. Preload("DeviceNumber", "status = 1 AND org_id = ?", orgID).
  5967. Preload("DeviceNumber.Zone", "status = 1 AND org_id = ?", orgID).
  5968. Preload("Prescription", "status = 1 AND user_org_id = ? AND record_date = ? and patient_id = ?", orgID, scheduleDate, patient_id).
  5969. Preload("HisDoctorAdviceInfo", "status = 1 AND user_org_id = ? AND advice_date = ? and delivery_way = ? and patient_id = ? and is_settle", orgID, scheduleDate, deliverWay, patient_id, cost_type).
  5970. Preload("DialysisOrder", func(db *gorm.DB) *gorm.DB {
  5971. return db.Where("status = 1 AND user_org_id = ? and patient_id = ?", orgID, patient_id).Preload("DeviceNumber", "status = 1 AND org_id= ?", orgID)
  5972. }).Preload("DialysisAssesmentBefor", "status =1 AND user_org_id = ? and assessment_date =?", orgID, scheduleDate).
  5973. Where("status = 1 AND user_org_id = ?", orgID)
  5974. if scheduleDate != 0 {
  5975. db = db.Where("schedule_date = ?", scheduleDate)
  5976. }
  5977. err = db.Find(&vms).Error
  5978. }
  5979. } else {
  5980. if len(execution_frequency) > 0 {
  5981. db = db.Preload("SchedualPatient", "status = 1 AND user_org_id = ? and id =?", orgID, patient_id).
  5982. Preload("DeviceNumber", "status = 1 AND org_id = ?", orgID).
  5983. Preload("DeviceNumber.Zone", "status = 1 AND org_id = ?", orgID).
  5984. Preload("Prescription", "status = 1 AND user_org_id = ? AND record_date = ? and patient_id = ?", orgID, scheduleDate, patient_id).
  5985. Preload("HisDoctorAdviceInfo", "status = 1 AND user_org_id = ? AND advice_date = ? and delivery_way = ? and patient_id = ? and execution_frequency = ?", orgID, scheduleDate, deliverWay, patient_id, execution_frequency).
  5986. Preload("DialysisOrder", func(db *gorm.DB) *gorm.DB {
  5987. return db.Where("status = 1 AND user_org_id = ? and patient_id = ?", orgID, patient_id).Preload("DeviceNumber", "status = 1 AND org_id= ?", orgID)
  5988. }).Preload("DialysisAssesmentBefor", "status =1 AND user_org_id = ? and assessment_date =?", orgID, scheduleDate).
  5989. Where("status = 1 AND user_org_id = ?", orgID)
  5990. if scheduleDate != 0 {
  5991. db = db.Where("schedule_date = ?", scheduleDate)
  5992. }
  5993. err = db.Find(&vms).Error
  5994. } else {
  5995. db = db.Preload("SchedualPatient", "status = 1 AND user_org_id = ? and id =?", orgID, patient_id).
  5996. Preload("DeviceNumber", "status = 1 AND org_id = ?", orgID).
  5997. Preload("DeviceNumber.Zone", "status = 1 AND org_id = ?", orgID).
  5998. Preload("Prescription", "status = 1 AND user_org_id = ? AND record_date = ? and patient_id = ?", orgID, scheduleDate, patient_id).
  5999. Preload("HisDoctorAdviceInfo", "status = 1 AND user_org_id = ? AND advice_date = ? and delivery_way = ? and patient_id = ?", orgID, scheduleDate, deliverWay, patient_id).
  6000. Preload("DialysisOrder", func(db *gorm.DB) *gorm.DB {
  6001. return db.Where("status = 1 AND user_org_id = ? and patient_id = ?", orgID, patient_id).Preload("DeviceNumber", "status = 1 AND org_id= ?", orgID)
  6002. }).Preload("DialysisAssesmentBefor", "status =1 AND user_org_id = ? and assessment_date =?", orgID, scheduleDate).
  6003. Where("status = 1 AND user_org_id = ?", orgID)
  6004. if scheduleDate != 0 {
  6005. db = db.Where("schedule_date = ?", scheduleDate)
  6006. }
  6007. err = db.Find(&vms).Error
  6008. }
  6009. }
  6010. }
  6011. } else {
  6012. if execution_state > 0 {
  6013. if cost_type > 0 {
  6014. if len(execution_frequency) > 0 {
  6015. db = db.Preload("SchedualPatient", "status = 1 AND user_org_id = ?", orgID).
  6016. Preload("DeviceNumber", "status = 1 AND org_id = ?", orgID).
  6017. Preload("DeviceNumber.Zone", "status = 1 AND org_id = ?", orgID).
  6018. Preload("Prescription", "status = 1 AND user_org_id = ? AND record_date = ?", orgID, scheduleDate).
  6019. Preload("HisDoctorAdviceInfo", "status = 1 AND user_org_id = ? AND advice_date = ? and delivery_way = ? and execution_state = ? and is_settle = ? and execution_frequency= ?", orgID, scheduleDate, deliverWay, execution_state, cost_type, execution_frequency).
  6020. Preload("DialysisOrder", func(db *gorm.DB) *gorm.DB {
  6021. return db.Where("status = 1 AND user_org_id = ?", orgID).Preload("DeviceNumber", "status = 1 AND org_id= ?", orgID)
  6022. }).Preload("DialysisAssesmentBefor", "status =1 AND user_org_id = ? and assessment_date =?", orgID, scheduleDate).
  6023. Where("status = 1 AND user_org_id = ?", orgID)
  6024. if scheduleDate != 0 {
  6025. db = db.Where("schedule_date = ?", scheduleDate)
  6026. }
  6027. err = db.Find(&vms).Error
  6028. } else {
  6029. db = db.Preload("SchedualPatient", "status = 1 AND user_org_id = ?", orgID).
  6030. Preload("DeviceNumber", "status = 1 AND org_id = ?", orgID).
  6031. Preload("DeviceNumber.Zone", "status = 1 AND org_id = ?", orgID).
  6032. Preload("Prescription", "status = 1 AND user_org_id = ? AND record_date = ?", orgID, scheduleDate).
  6033. Preload("HisDoctorAdviceInfo", "status = 1 AND user_org_id = ? AND advice_date = ? and delivery_way = ? and execution_state = ? and is_settle = ?", orgID, scheduleDate, deliverWay, execution_state, cost_type).
  6034. Preload("DialysisOrder", func(db *gorm.DB) *gorm.DB {
  6035. return db.Where("status = 1 AND user_org_id = ?", orgID).Preload("DeviceNumber", "status = 1 AND org_id= ?", orgID)
  6036. }).Preload("DialysisAssesmentBefor", "status =1 AND user_org_id = ? and assessment_date =?", orgID, scheduleDate).
  6037. Where("status = 1 AND user_org_id = ?", orgID)
  6038. if scheduleDate != 0 {
  6039. db = db.Where("schedule_date = ?", scheduleDate)
  6040. }
  6041. err = db.Find(&vms).Error
  6042. }
  6043. } else {
  6044. if len(execution_frequency) > 0 {
  6045. db = db.Preload("SchedualPatient", "status = 1 AND user_org_id = ?", orgID).
  6046. Preload("DeviceNumber", "status = 1 AND org_id = ?", orgID).
  6047. Preload("DeviceNumber.Zone", "status = 1 AND org_id = ?", orgID).
  6048. Preload("Prescription", "status = 1 AND user_org_id = ? AND record_date = ?", orgID, scheduleDate).
  6049. Preload("HisDoctorAdviceInfo", "status = 1 AND user_org_id = ? AND advice_date = ? and delivery_way = ? and execution_state = ? and execution_frequency =?", orgID, scheduleDate, deliverWay, execution_state, execution_frequency).
  6050. Preload("DialysisOrder", func(db *gorm.DB) *gorm.DB {
  6051. return db.Where("status = 1 AND user_org_id = ?", orgID).Preload("DeviceNumber", "status = 1 AND org_id= ?", orgID)
  6052. }).Preload("DialysisAssesmentBefor", "status =1 AND user_org_id = ? and assessment_date =?", orgID, scheduleDate).
  6053. Where("status = 1 AND user_org_id = ?", orgID)
  6054. if scheduleDate != 0 {
  6055. db = db.Where("schedule_date = ?", scheduleDate)
  6056. }
  6057. err = db.Find(&vms).Error
  6058. } else {
  6059. db = db.Preload("SchedualPatient", "status = 1 AND user_org_id = ?", orgID).
  6060. Preload("DeviceNumber", "status = 1 AND org_id = ?", orgID).
  6061. Preload("DeviceNumber.Zone", "status = 1 AND org_id = ?", orgID).
  6062. Preload("Prescription", "status = 1 AND user_org_id = ? AND record_date = ?", orgID, scheduleDate).
  6063. Preload("HisDoctorAdviceInfo", "status = 1 AND user_org_id = ? AND advice_date = ? and delivery_way = ? and execution_state = ?", orgID, scheduleDate, deliverWay, execution_state).
  6064. Preload("DialysisOrder", func(db *gorm.DB) *gorm.DB {
  6065. return db.Where("status = 1 AND user_org_id = ?", orgID).Preload("DeviceNumber", "status = 1 AND org_id= ?", orgID)
  6066. }).Preload("DialysisAssesmentBefor", "status =1 AND user_org_id = ? and assessment_date =?", orgID, scheduleDate).
  6067. Where("status = 1 AND user_org_id = ?", orgID)
  6068. if scheduleDate != 0 {
  6069. db = db.Where("schedule_date = ?", scheduleDate)
  6070. }
  6071. err = db.Find(&vms).Error
  6072. }
  6073. }
  6074. } else {
  6075. if cost_type > 0 {
  6076. if len(execution_frequency) > 0 {
  6077. db = db.Preload("SchedualPatient", "status = 1 AND user_org_id = ?", orgID).
  6078. Preload("DeviceNumber", "status = 1 AND org_id = ?", orgID).
  6079. Preload("DeviceNumber.Zone", "status = 1 AND org_id = ?", orgID).
  6080. Preload("Prescription", "status = 1 AND user_org_id = ? AND record_date = ?", orgID, scheduleDate).
  6081. Preload("HisDoctorAdviceInfo", "status = 1 AND user_org_id = ? AND advice_date = ? and delivery_way = ? and is_settle = ? and execution_frequency = ?", orgID, scheduleDate, deliverWay, cost_type, execution_frequency).
  6082. Preload("DialysisOrder", func(db *gorm.DB) *gorm.DB {
  6083. return db.Where("status = 1 AND user_org_id = ?", orgID).Preload("DeviceNumber", "status = 1 AND org_id= ?", orgID)
  6084. }).Preload("DialysisAssesmentBefor", "status =1 AND user_org_id = ? and assessment_date =?", orgID, scheduleDate).
  6085. Where("status = 1 AND user_org_id = ?", orgID)
  6086. if scheduleDate != 0 {
  6087. db = db.Where("schedule_date = ?", scheduleDate)
  6088. }
  6089. err = db.Find(&vms).Error
  6090. } else {
  6091. db = db.Preload("SchedualPatient", "status = 1 AND user_org_id = ?", orgID).
  6092. Preload("DeviceNumber", "status = 1 AND org_id = ?", orgID).
  6093. Preload("DeviceNumber.Zone", "status = 1 AND org_id = ?", orgID).
  6094. Preload("Prescription", "status = 1 AND user_org_id = ? AND record_date = ?", orgID, scheduleDate).
  6095. Preload("HisDoctorAdviceInfo", "status = 1 AND user_org_id = ? AND advice_date = ? and delivery_way = ? and is_settle = ?", orgID, scheduleDate, deliverWay, cost_type).
  6096. Preload("DialysisOrder", func(db *gorm.DB) *gorm.DB {
  6097. return db.Where("status = 1 AND user_org_id = ?", orgID).Preload("DeviceNumber", "status = 1 AND org_id= ?", orgID)
  6098. }).Preload("DialysisAssesmentBefor", "status =1 AND user_org_id = ? and assessment_date =?", orgID, scheduleDate).
  6099. Where("status = 1 AND user_org_id = ?", orgID)
  6100. if scheduleDate != 0 {
  6101. db = db.Where("schedule_date = ?", scheduleDate)
  6102. }
  6103. err = db.Find(&vms).Error
  6104. }
  6105. } else {
  6106. if len(execution_frequency) > 0 {
  6107. db = db.Preload("SchedualPatient", "status = 1 AND user_org_id = ?", orgID).
  6108. Preload("DeviceNumber", "status = 1 AND org_id = ?", orgID).
  6109. Preload("DeviceNumber.Zone", "status = 1 AND org_id = ?", orgID).
  6110. Preload("Prescription", "status = 1 AND user_org_id = ? AND record_date = ?", orgID, scheduleDate).
  6111. Preload("HisDoctorAdviceInfo", "status = 1 AND user_org_id = ? AND advice_date = ? and delivery_way = ? and execution_frequency = ?", orgID, scheduleDate, deliverWay, execution_frequency).
  6112. Preload("DialysisOrder", func(db *gorm.DB) *gorm.DB {
  6113. return db.Where("status = 1 AND user_org_id = ?", orgID).Preload("DeviceNumber", "status = 1 AND org_id= ?", orgID)
  6114. }).Preload("DialysisAssesmentBefor", "status =1 AND user_org_id = ? and assessment_date =?", orgID, scheduleDate).
  6115. Where("status = 1 AND user_org_id = ?", orgID)
  6116. if scheduleDate != 0 {
  6117. db = db.Where("schedule_date = ?", scheduleDate)
  6118. }
  6119. err = db.Find(&vms).Error
  6120. } else {
  6121. db = db.Preload("SchedualPatient", "status = 1 AND user_org_id = ?", orgID).
  6122. Preload("DeviceNumber", "status = 1 AND org_id = ?", orgID).
  6123. Preload("DeviceNumber.Zone", "status = 1 AND org_id = ?", orgID).
  6124. Preload("Prescription", "status = 1 AND user_org_id = ? AND record_date = ?", orgID, scheduleDate).
  6125. Preload("HisDoctorAdviceInfo", "status = 1 AND user_org_id = ? AND advice_date = ? and delivery_way = ?", orgID, scheduleDate, deliverWay).
  6126. Preload("DialysisOrder", func(db *gorm.DB) *gorm.DB {
  6127. return db.Where("status = 1 AND user_org_id = ?", orgID).Preload("DeviceNumber", "status = 1 AND org_id= ?", orgID)
  6128. }).Preload("DialysisAssesmentBefor", "status =1 AND user_org_id = ? and assessment_date =?", orgID, scheduleDate).
  6129. Where("status = 1 AND user_org_id = ?", orgID)
  6130. if scheduleDate != 0 {
  6131. db = db.Where("schedule_date = ?", scheduleDate)
  6132. }
  6133. err = db.Find(&vms).Error
  6134. }
  6135. }
  6136. }
  6137. }
  6138. } else {
  6139. db := readDb.Table("xt_schedule")
  6140. if scheduleType > 0 {
  6141. db = db.Where("schedule_type = ?", scheduleType)
  6142. }
  6143. if partitionType > 0 {
  6144. db = db.Where("partition_id = ?", partitionType)
  6145. }
  6146. if patient_id > 0 {
  6147. if execution_state > 0 {
  6148. if cost_type > 0 {
  6149. db = db.Preload("SchedualPatient", "status = 1 AND user_org_id = ? and id = ?", orgID, patient_id).
  6150. Preload("DeviceNumber", "status = 1 AND org_id = ?", orgID).
  6151. Preload("DeviceNumber.Zone", "status = 1 AND org_id = ?", orgID).
  6152. Preload("Prescription", "status = 1 AND user_org_id = ? AND record_date = ? and patient_id = ?", orgID, scheduleDate, patient_id).
  6153. Preload("HisDoctorAdviceInfo", "status = 1 AND user_org_id = ? AND advice_date = ? and patient_id = ? and execution_state = ? and is_settle = ?", orgID, scheduleDate, patient_id, execution_state, cost_type).
  6154. Preload("DialysisOrder", func(db *gorm.DB) *gorm.DB {
  6155. return db.Where("status = 1 AND user_org_id = ? and patient_id = ?", orgID, patient_id).Preload("DeviceNumber", "status = 1 AND org_id= ?", orgID)
  6156. }).Preload("DialysisAssesmentBefor", "status =1 AND user_org_id = ? and assessment_date =?", orgID, scheduleDate).
  6157. Where("status = 1 AND user_org_id = ?", orgID)
  6158. if scheduleDate != 0 {
  6159. db = db.Where("schedule_date = ?", scheduleDate)
  6160. }
  6161. err = db.Find(&vms).Error
  6162. } else {
  6163. db = db.Preload("SchedualPatient", "status = 1 AND user_org_id = ? and id = ?", orgID, patient_id).
  6164. Preload("DeviceNumber", "status = 1 AND org_id = ?", orgID).
  6165. Preload("DeviceNumber.Zone", "status = 1 AND org_id = ?", orgID).
  6166. Preload("Prescription", "status = 1 AND user_org_id = ? AND record_date = ? and patient_id = ?", orgID, scheduleDate, patient_id).
  6167. Preload("HisDoctorAdviceInfo", "status = 1 AND user_org_id = ? AND advice_date = ? and patient_id = ? and execution_state = ?", orgID, scheduleDate, patient_id, execution_state).
  6168. Preload("DialysisOrder", func(db *gorm.DB) *gorm.DB {
  6169. return db.Where("status = 1 AND user_org_id = ? and patient_id = ?", orgID, patient_id).Preload("DeviceNumber", "status = 1 AND org_id= ?", orgID)
  6170. }).Preload("DialysisAssesmentBefor", "status =1 AND user_org_id = ? and assessment_date =?", orgID, scheduleDate).
  6171. Where("status = 1 AND user_org_id = ?", orgID)
  6172. if scheduleDate != 0 {
  6173. db = db.Where("schedule_date = ?", scheduleDate)
  6174. }
  6175. err = db.Find(&vms).Error
  6176. }
  6177. } else {
  6178. if cost_type > 0 {
  6179. if len(execution_frequency) > 0 {
  6180. db = db.Preload("SchedualPatient", "status = 1 AND user_org_id = ? and id = ?", orgID, patient_id).
  6181. Preload("DeviceNumber", "status = 1 AND org_id = ?", orgID).
  6182. Preload("DeviceNumber.Zone", "status = 1 AND org_id = ?", orgID).
  6183. Preload("Prescription", "status = 1 AND user_org_id = ? AND record_date = ? and patient_id = ?", orgID, scheduleDate, patient_id).
  6184. Preload("HisDoctorAdviceInfo", "status = 1 AND user_org_id = ? AND advice_date = ? and patient_id = ? and is_settle = ? and execution_frequency = ?", orgID, scheduleDate, patient_id, cost_type, execution_frequency).
  6185. Preload("DialysisOrder", func(db *gorm.DB) *gorm.DB {
  6186. return db.Where("status = 1 AND user_org_id = ? and patient_id = ?", orgID, patient_id).Preload("DeviceNumber", "status = 1 AND org_id= ?", orgID)
  6187. }).Preload("DialysisAssesmentBefor", "status =1 AND user_org_id = ? and assessment_date =?", orgID, scheduleDate).
  6188. Where("status = 1 AND user_org_id = ?", orgID)
  6189. if scheduleDate != 0 {
  6190. db = db.Where("schedule_date = ?", scheduleDate)
  6191. }
  6192. err = db.Find(&vms).Error
  6193. } else {
  6194. db = db.Preload("SchedualPatient", "status = 1 AND user_org_id = ? and id = ?", orgID, patient_id).
  6195. Preload("DeviceNumber", "status = 1 AND org_id = ?", orgID).
  6196. Preload("DeviceNumber.Zone", "status = 1 AND org_id = ?", orgID).
  6197. Preload("Prescription", "status = 1 AND user_org_id = ? AND record_date = ? and patient_id = ?", orgID, scheduleDate, patient_id).
  6198. Preload("HisDoctorAdviceInfo", "status = 1 AND user_org_id = ? AND advice_date = ? and patient_id = ? and is_settle = ?", orgID, scheduleDate, patient_id, cost_type).
  6199. Preload("DialysisOrder", func(db *gorm.DB) *gorm.DB {
  6200. return db.Where("status = 1 AND user_org_id = ? and patient_id = ?", orgID, patient_id).Preload("DeviceNumber", "status = 1 AND org_id= ?", orgID)
  6201. }).Preload("DialysisAssesmentBefor", "status =1 AND user_org_id = ? and assessment_date =?", orgID, scheduleDate).
  6202. Where("status = 1 AND user_org_id = ?", orgID)
  6203. if scheduleDate != 0 {
  6204. db = db.Where("schedule_date = ?", scheduleDate)
  6205. }
  6206. err = db.Find(&vms).Error
  6207. }
  6208. } else {
  6209. if len(execution_frequency) > 0 {
  6210. db = db.Preload("SchedualPatient", "status = 1 AND user_org_id = ? and id = ?", orgID, patient_id).
  6211. Preload("DeviceNumber", "status = 1 AND org_id = ?", orgID).
  6212. Preload("DeviceNumber.Zone", "status = 1 AND org_id = ?", orgID).
  6213. Preload("Prescription", "status = 1 AND user_org_id = ? AND record_date = ? and patient_id = ?", orgID, scheduleDate, patient_id).
  6214. Preload("HisDoctorAdviceInfo", "status = 1 AND user_org_id = ? AND advice_date = ? and patient_id = ? and execution_frequency = ?", orgID, scheduleDate, patient_id, execution_frequency).
  6215. Preload("DialysisOrder", func(db *gorm.DB) *gorm.DB {
  6216. return db.Where("status = 1 AND user_org_id = ? and patient_id = ?", orgID, patient_id).Preload("DeviceNumber", "status = 1 AND org_id= ?", orgID)
  6217. }).Preload("DialysisAssesmentBefor", "status =1 AND user_org_id = ? and assessment_date =?", orgID, scheduleDate).
  6218. Where("status = 1 AND user_org_id = ?", orgID)
  6219. if scheduleDate != 0 {
  6220. db = db.Where("schedule_date = ?", scheduleDate)
  6221. }
  6222. err = db.Find(&vms).Error
  6223. } else {
  6224. db = db.Preload("SchedualPatient", "status = 1 AND user_org_id = ? and id = ?", orgID, patient_id).
  6225. Preload("DeviceNumber", "status = 1 AND org_id = ?", orgID).
  6226. Preload("DeviceNumber.Zone", "status = 1 AND org_id = ?", orgID).
  6227. Preload("Prescription", "status = 1 AND user_org_id = ? AND record_date = ? and patient_id = ?", orgID, scheduleDate, patient_id).
  6228. Preload("HisDoctorAdviceInfo", "status = 1 AND user_org_id = ? AND advice_date = ? and patient_id = ?", orgID, scheduleDate, patient_id).
  6229. Preload("DialysisOrder", func(db *gorm.DB) *gorm.DB {
  6230. return db.Where("status = 1 AND user_org_id = ? and patient_id = ?", orgID, patient_id).Preload("DeviceNumber", "status = 1 AND org_id= ?", orgID)
  6231. }).Preload("DialysisAssesmentBefor", "status =1 AND user_org_id = ? and assessment_date =?", orgID, scheduleDate).
  6232. Where("status = 1 AND user_org_id = ?", orgID)
  6233. if scheduleDate != 0 {
  6234. db = db.Where("schedule_date = ?", scheduleDate)
  6235. }
  6236. err = db.Find(&vms).Error
  6237. }
  6238. }
  6239. }
  6240. } else {
  6241. if execution_state > 0 {
  6242. if cost_type > 0 {
  6243. if len(execution_frequency) > 0 {
  6244. db = db.Preload("SchedualPatient", "status = 1 AND user_org_id = ?", orgID).
  6245. Preload("DeviceNumber", "status = 1 AND org_id = ?", orgID).
  6246. Preload("DeviceNumber.Zone", "status = 1 AND org_id = ?", orgID).
  6247. Preload("Prescription", "status = 1 AND user_org_id = ? AND record_date = ?", orgID, scheduleDate).
  6248. Preload("HisDoctorAdviceInfo", "status = 1 AND user_org_id = ? AND advice_date = ? and execution_state = ? and is_settle = ? and execution_frequency = ?", orgID, scheduleDate, execution_state, cost_type, execution_frequency).
  6249. Preload("DialysisOrder", func(db *gorm.DB) *gorm.DB {
  6250. return db.Where("status = 1 AND user_org_id = ?", orgID).Preload("DeviceNumber", "status = 1 AND org_id= ?", orgID)
  6251. }).Preload("DialysisAssesmentBefor", "status =1 AND user_org_id = ? and assessment_date =?", orgID, scheduleDate).
  6252. Where("status = 1 AND user_org_id = ?", orgID)
  6253. if scheduleDate != 0 {
  6254. db = db.Where("schedule_date = ?", scheduleDate)
  6255. }
  6256. err = db.Find(&vms).Error
  6257. } else {
  6258. db = db.Preload("SchedualPatient", "status = 1 AND user_org_id = ?", orgID).
  6259. Preload("DeviceNumber", "status = 1 AND org_id = ?", orgID).
  6260. Preload("DeviceNumber.Zone", "status = 1 AND org_id = ?", orgID).
  6261. Preload("Prescription", "status = 1 AND user_org_id = ? AND record_date = ?", orgID, scheduleDate).
  6262. Preload("HisDoctorAdviceInfo", "status = 1 AND user_org_id = ? AND advice_date = ? and execution_state = ? and is_settle = ?", orgID, scheduleDate, execution_state, cost_type).
  6263. Preload("DialysisOrder", func(db *gorm.DB) *gorm.DB {
  6264. return db.Where("status = 1 AND user_org_id = ?", orgID).Preload("DeviceNumber", "status = 1 AND org_id= ?", orgID)
  6265. }).Preload("DialysisAssesmentBefor", "status =1 AND user_org_id = ? and assessment_date =?", orgID, scheduleDate).
  6266. Where("status = 1 AND user_org_id = ?", orgID)
  6267. if scheduleDate != 0 {
  6268. db = db.Where("schedule_date = ?", scheduleDate)
  6269. }
  6270. err = db.Find(&vms).Error
  6271. }
  6272. } else {
  6273. if len(execution_frequency) > 0 {
  6274. db = db.Preload("SchedualPatient", "status = 1 AND user_org_id = ?", orgID).
  6275. Preload("DeviceNumber", "status = 1 AND org_id = ?", orgID).
  6276. Preload("DeviceNumber.Zone", "status = 1 AND org_id = ?", orgID).
  6277. Preload("Prescription", "status = 1 AND user_org_id = ? AND record_date = ?", orgID, scheduleDate).
  6278. Preload("HisDoctorAdviceInfo", "status = 1 AND user_org_id = ? AND advice_date = ? and execution_state = ? and execution_frequency = ?", orgID, scheduleDate, execution_state, execution_frequency).
  6279. Preload("DialysisOrder", func(db *gorm.DB) *gorm.DB {
  6280. return db.Where("status = 1 AND user_org_id = ?", orgID).Preload("DeviceNumber", "status = 1 AND org_id= ?", orgID)
  6281. }).Preload("DialysisAssesmentBefor", "status =1 AND user_org_id = ? and assessment_date =?", orgID, scheduleDate).
  6282. Where("status = 1 AND user_org_id = ?", orgID)
  6283. if scheduleDate != 0 {
  6284. db = db.Where("schedule_date = ?", scheduleDate)
  6285. }
  6286. err = db.Find(&vms).Error
  6287. } else {
  6288. db = db.Preload("SchedualPatient", "status = 1 AND user_org_id = ?", orgID).
  6289. Preload("DeviceNumber", "status = 1 AND org_id = ?", orgID).
  6290. Preload("DeviceNumber.Zone", "status = 1 AND org_id = ?", orgID).
  6291. Preload("Prescription", "status = 1 AND user_org_id = ? AND record_date = ?", orgID, scheduleDate).
  6292. Preload("HisDoctorAdviceInfo", "status = 1 AND user_org_id = ? AND advice_date = ? and execution_state = ?", orgID, scheduleDate, execution_state).
  6293. Preload("DialysisOrder", func(db *gorm.DB) *gorm.DB {
  6294. return db.Where("status = 1 AND user_org_id = ?", orgID).Preload("DeviceNumber", "status = 1 AND org_id= ?", orgID)
  6295. }).Preload("DialysisAssesmentBefor", "status =1 AND user_org_id = ? and assessment_date =?", orgID, scheduleDate).
  6296. Where("status = 1 AND user_org_id = ?", orgID)
  6297. if scheduleDate != 0 {
  6298. db = db.Where("schedule_date = ?", scheduleDate)
  6299. }
  6300. err = db.Find(&vms).Error
  6301. }
  6302. }
  6303. } else {
  6304. if cost_type > 0 {
  6305. if len(execution_frequency) > 0 {
  6306. db = db.Preload("SchedualPatient", "status = 1 AND user_org_id = ?", orgID).
  6307. Preload("DeviceNumber", "status = 1 AND org_id = ?", orgID).
  6308. Preload("DeviceNumber.Zone", "status = 1 AND org_id = ?", orgID).
  6309. Preload("Prescription", "status = 1 AND user_org_id = ? AND record_date = ?", orgID, scheduleDate).
  6310. Preload("HisDoctorAdviceInfo", "status = 1 AND user_org_id = ? AND advice_date = ? and is_settle = ?", orgID, scheduleDate, cost_type).
  6311. Preload("DialysisOrder", func(db *gorm.DB) *gorm.DB {
  6312. return db.Where("status = 1 AND user_org_id = ?", orgID).Preload("DeviceNumber", "status = 1 AND org_id= ?", orgID)
  6313. }).Preload("DialysisAssesmentBefor", "status =1 AND user_org_id = ? and assessment_date =?", orgID, scheduleDate).
  6314. Where("status = 1 AND user_org_id = ?", orgID)
  6315. if scheduleDate != 0 {
  6316. db = db.Where("schedule_date = ?", scheduleDate)
  6317. }
  6318. err = db.Find(&vms).Error
  6319. } else {
  6320. db = db.Preload("SchedualPatient", "status = 1 AND user_org_id = ?", orgID).
  6321. Preload("DeviceNumber", "status = 1 AND org_id = ?", orgID).
  6322. Preload("DeviceNumber.Zone", "status = 1 AND org_id = ?", orgID).
  6323. Preload("Prescription", "status = 1 AND user_org_id = ? AND record_date = ?", orgID, scheduleDate).
  6324. Preload("HisDoctorAdviceInfo", "status = 1 AND user_org_id = ? AND advice_date = ? and is_settle = ? and execution_frequency = ?", orgID, scheduleDate, cost_type, execution_frequency).
  6325. Preload("DialysisOrder", func(db *gorm.DB) *gorm.DB {
  6326. return db.Where("status = 1 AND user_org_id = ?", orgID).Preload("DeviceNumber", "status = 1 AND org_id= ?", orgID)
  6327. }).Preload("DialysisAssesmentBefor", "status =1 AND user_org_id = ? and assessment_date =?", orgID, scheduleDate).
  6328. Where("status = 1 AND user_org_id = ?", orgID)
  6329. if scheduleDate != 0 {
  6330. db = db.Where("schedule_date = ?", scheduleDate)
  6331. }
  6332. err = db.Find(&vms).Error
  6333. }
  6334. } else {
  6335. if len(execution_frequency) > 0 {
  6336. db = db.Preload("SchedualPatient", "status = 1 AND user_org_id = ?", orgID).
  6337. Preload("DeviceNumber", "status = 1 AND org_id = ?", orgID).
  6338. Preload("DeviceNumber.Zone", "status = 1 AND org_id = ?", orgID).
  6339. Preload("Prescription", "status = 1 AND user_org_id = ? AND record_date = ?", orgID, scheduleDate).
  6340. Preload("HisDoctorAdviceInfo", "status = 1 AND user_org_id = ? AND advice_date = ? and execution_frequency = ?", orgID, scheduleDate, execution_frequency).
  6341. Preload("DialysisOrder", func(db *gorm.DB) *gorm.DB {
  6342. return db.Where("status = 1 AND user_org_id = ?", orgID).Preload("DeviceNumber", "status = 1 AND org_id= ?", orgID)
  6343. }).Preload("DialysisAssesmentBefor", "status =1 AND user_org_id = ? and assessment_date =?", orgID, scheduleDate).
  6344. Where("status = 1 AND user_org_id = ?", orgID)
  6345. if scheduleDate != 0 {
  6346. db = db.Where("schedule_date = ?", scheduleDate)
  6347. }
  6348. err = db.Find(&vms).Error
  6349. } else {
  6350. db = db.Preload("SchedualPatient", "status = 1 AND user_org_id = ?", orgID).
  6351. Preload("DeviceNumber", "status = 1 AND org_id = ?", orgID).
  6352. Preload("DeviceNumber.Zone", "status = 1 AND org_id = ?", orgID).
  6353. Preload("Prescription", "status = 1 AND user_org_id = ? AND record_date = ?", orgID, scheduleDate).
  6354. Preload("HisDoctorAdviceInfo", "status = 1 AND user_org_id = ? AND advice_date = ?", orgID, scheduleDate).
  6355. Preload("DialysisOrder", func(db *gorm.DB) *gorm.DB {
  6356. return db.Where("status = 1 AND user_org_id = ?", orgID).Preload("DeviceNumber", "status = 1 AND org_id= ?", orgID)
  6357. }).Preload("DialysisAssesmentBefor", "status =1 AND user_org_id = ? and assessment_date =?", orgID, scheduleDate).
  6358. Where("status = 1 AND user_org_id = ?", orgID)
  6359. if scheduleDate != 0 {
  6360. db = db.Where("schedule_date = ?", scheduleDate)
  6361. }
  6362. err = db.Find(&vms).Error
  6363. }
  6364. }
  6365. }
  6366. }
  6367. }
  6368. return vms, err
  6369. }
  6370. func GetPatientDryWeight(org_id int64, patient_id int64) (weight []*models.SgjPatientDryweight, err error) {
  6371. err = XTReadDB().Where("user_org_id = ? and patient_id = ? and status =1", org_id, patient_id).Order("id desc").Limit(6).Find(&weight).Error
  6372. return weight, err
  6373. }
  6374. func MobileGetLongScheduleDoctorAdvices(orgID int64, scheduleDate int64, adviceType int, patientType int, adminUserId int64, deliverWay string, scheduleType int64, partitonType int64, patient_id int64, execution_state int64, cost_type int64, execution_frequency string) ([]*MScheduleDoctorAdviceVM, error) {
  6375. var vms []*MScheduleDoctorAdviceVM
  6376. adviceWhere := ""
  6377. adviceCondition := []interface{}{}
  6378. if adviceType == 1 {
  6379. if patientType == 0 {
  6380. if patient_id > 0 {
  6381. if execution_state > 0 {
  6382. if cost_type > 0 {
  6383. if len(execution_frequency) > 0 {
  6384. adviceWhere = "status = 1 AND user_org_id = ? AND advice_type = 1 and patient_id = ? and execution_state = ? and is_settle = ? and execution_frequency = ?"
  6385. adviceCondition = append(adviceCondition, adviceWhere, orgID, patient_id, execution_state, cost_type, execution_frequency)
  6386. } else {
  6387. adviceWhere = "status = 1 AND user_org_id = ? AND advice_type = 1 and patient_id = ? and execution_state = ? and is_settle = ?"
  6388. adviceCondition = append(adviceCondition, adviceWhere, orgID, patient_id, execution_state, cost_type)
  6389. }
  6390. } else {
  6391. if len(execution_frequency) > 0 {
  6392. adviceWhere = "status = 1 AND user_org_id = ? AND advice_type = 1 and patient_id = ? and execution_state = ? and execution_frequency = ?"
  6393. adviceCondition = append(adviceCondition, adviceWhere, orgID, patient_id, execution_state, execution_frequency)
  6394. } else {
  6395. adviceWhere = "status = 1 AND user_org_id = ? AND advice_type = 1 and patient_id = ? and execution_state = ?"
  6396. adviceCondition = append(adviceCondition, adviceWhere, orgID, patient_id, execution_state)
  6397. }
  6398. }
  6399. } else {
  6400. if cost_type > 0 {
  6401. if len(execution_frequency) > 0 {
  6402. adviceWhere = "status = 1 AND user_org_id = ? AND advice_type = 1 and patient_id = ? and is_settle = ? and execution_frequency = ?"
  6403. adviceCondition = append(adviceCondition, adviceWhere, orgID, patient_id, cost_type, execution_frequency)
  6404. } else {
  6405. adviceWhere = "status = 1 AND user_org_id = ? AND advice_type = 1 and patient_id = ? and is_settle = ? "
  6406. adviceCondition = append(adviceCondition, adviceWhere, orgID, patient_id, cost_type)
  6407. }
  6408. } else {
  6409. if len(execution_frequency) > 0 {
  6410. adviceWhere = "status = 1 AND user_org_id = ? AND advice_type = 1 and patient_id = ? and execution_frequency = ?"
  6411. adviceCondition = append(adviceCondition, adviceWhere, orgID, patient_id, execution_frequency)
  6412. } else {
  6413. adviceWhere = "status = 1 AND user_org_id = ? AND advice_type = 1 and patient_id = ? "
  6414. adviceCondition = append(adviceCondition, adviceWhere, orgID, patient_id)
  6415. }
  6416. }
  6417. }
  6418. } else {
  6419. if execution_state > 0 {
  6420. if cost_type > 0 {
  6421. if len(execution_frequency) > 0 {
  6422. adviceWhere = "status = 1 AND user_org_id = ? AND advice_type = 1 and execution_state = ? and is_settle = ? and execution_frequency = ?"
  6423. adviceCondition = append(adviceCondition, adviceWhere, orgID, execution_state, cost_type, execution_frequency)
  6424. } else {
  6425. adviceWhere = "status = 1 AND user_org_id = ? AND advice_type = 1 and execution_state = ? and is_settle = ?"
  6426. adviceCondition = append(adviceCondition, adviceWhere, orgID, execution_state, cost_type)
  6427. }
  6428. } else {
  6429. if len(execution_frequency) > 0 {
  6430. adviceWhere = "status = 1 AND user_org_id = ? AND advice_type = 1 and execution_state = ? and execution_frequency = ?"
  6431. adviceCondition = append(adviceCondition, adviceWhere, orgID, execution_state, execution_frequency)
  6432. } else {
  6433. adviceWhere = "status = 1 AND user_org_id = ? AND advice_type = 1 and execution_state = ?"
  6434. adviceCondition = append(adviceCondition, adviceWhere, orgID, execution_state)
  6435. }
  6436. }
  6437. } else {
  6438. if cost_type > 0 {
  6439. adviceWhere = "status = 1 AND user_org_id = ? AND advice_type = 1 and is_settle = ? "
  6440. adviceCondition = append(adviceCondition, adviceWhere, orgID, cost_type)
  6441. } else {
  6442. adviceWhere = "status = 1 AND user_org_id = ? AND advice_type = 1 "
  6443. adviceCondition = append(adviceCondition, adviceWhere, orgID)
  6444. }
  6445. }
  6446. }
  6447. } else if patientType == 1 {
  6448. if patient_id > 0 {
  6449. if execution_state > 0 {
  6450. if cost_type > 0 {
  6451. if len(execution_frequency) > 0 {
  6452. adviceWhere = "status = 1 AND user_org_id = ? AND advice_type = 1 AND advice_doctor = ? and patient_id = ? and execution_state = ? and is_settle = ? and execution_frequency = ?"
  6453. adviceCondition = append(adviceCondition, adviceWhere, orgID, adminUserId, patient_id, execution_state, cost_type, execution_frequency)
  6454. } else {
  6455. adviceWhere = "status = 1 AND user_org_id = ? AND advice_type = 1 AND advice_doctor = ? and patient_id = ? and execution_state = ? and is_settle = ?"
  6456. adviceCondition = append(adviceCondition, adviceWhere, orgID, adminUserId, patient_id, execution_state, cost_type)
  6457. }
  6458. } else {
  6459. if len(execution_frequency) > 0 {
  6460. adviceWhere = "status = 1 AND user_org_id = ? AND advice_type = 1 AND advice_doctor = ? and patient_id = ? and execution_state = ? and execution_frequency = ?"
  6461. adviceCondition = append(adviceCondition, adviceWhere, orgID, adminUserId, patient_id, execution_state, execution_frequency)
  6462. } else {
  6463. adviceWhere = "status = 1 AND user_org_id = ? AND advice_type = 1 AND advice_doctor = ? and patient_id = ? and execution_state = ?"
  6464. adviceCondition = append(adviceCondition, adviceWhere, orgID, adminUserId, patient_id, execution_state)
  6465. }
  6466. }
  6467. } else {
  6468. if cost_type > 0 {
  6469. if len(execution_frequency) > 0 {
  6470. adviceWhere = "status = 1 AND user_org_id = ? AND advice_type = 1 AND advice_doctor = ? and patient_id = ? and is_settle = ?and execution_frequency = ?"
  6471. adviceCondition = append(adviceCondition, adviceWhere, orgID, adminUserId, patient_id, cost_type, execution_frequency)
  6472. } else {
  6473. adviceWhere = "status = 1 AND user_org_id = ? AND advice_type = 1 AND advice_doctor = ? and patient_id = ? and is_settle = ?"
  6474. adviceCondition = append(adviceCondition, adviceWhere, orgID, adminUserId, patient_id, cost_type)
  6475. }
  6476. } else {
  6477. if len(execution_frequency) > 0 {
  6478. adviceWhere = "status = 1 AND user_org_id = ? AND advice_type = 1 AND advice_doctor = ? and patient_id = ? and execution_frequency = ?"
  6479. adviceCondition = append(adviceCondition, adviceWhere, orgID, adminUserId, patient_id, execution_frequency)
  6480. } else {
  6481. adviceWhere = "status = 1 AND user_org_id = ? AND advice_type = 1 AND advice_doctor = ? and patient_id = ?"
  6482. adviceCondition = append(adviceCondition, adviceWhere, orgID, adminUserId, patient_id)
  6483. }
  6484. }
  6485. }
  6486. } else {
  6487. if execution_state > 0 {
  6488. if cost_type > 0 {
  6489. if len(execution_frequency) > 0 {
  6490. adviceWhere = "status = 1 AND user_org_id = ? AND advice_type = 1 AND advice_doctor = ? and execution_state=? and is_settle = ?and execution_frequency = ?"
  6491. adviceCondition = append(adviceCondition, adviceWhere, orgID, adminUserId, execution_state, cost_type, execution_frequency)
  6492. } else {
  6493. adviceWhere = "status = 1 AND user_org_id = ? AND advice_type = 1 AND advice_doctor = ? and execution_state=? and is_settle = ?"
  6494. adviceCondition = append(adviceCondition, adviceWhere, orgID, adminUserId, execution_state, cost_type)
  6495. }
  6496. } else {
  6497. if len(execution_frequency) > 0 {
  6498. adviceWhere = "status = 1 AND user_org_id = ? AND advice_type = 1 AND advice_doctor = ? and execution_state=?and execution_frequency = ?"
  6499. adviceCondition = append(adviceCondition, adviceWhere, orgID, adminUserId, execution_state, execution_frequency)
  6500. } else {
  6501. adviceWhere = "status = 1 AND user_org_id = ? AND advice_type = 1 AND advice_doctor = ? and execution_state=?"
  6502. adviceCondition = append(adviceCondition, adviceWhere, orgID, adminUserId, execution_state)
  6503. }
  6504. }
  6505. } else {
  6506. if cost_type > 0 {
  6507. if len(execution_frequency) > 0 {
  6508. adviceWhere = "status = 1 AND user_org_id = ? AND advice_type = 1 AND advice_doctor = ? and is_settle = ? and execution_frequency = ?"
  6509. adviceCondition = append(adviceCondition, adviceWhere, orgID, adminUserId, cost_type, execution_frequency)
  6510. } else {
  6511. adviceWhere = "status = 1 AND user_org_id = ? AND advice_type = 1 AND advice_doctor = ? and is_settle = ? "
  6512. adviceCondition = append(adviceCondition, adviceWhere, orgID, adminUserId, cost_type)
  6513. }
  6514. } else {
  6515. if len(execution_frequency) > 0 {
  6516. adviceWhere = "status = 1 AND user_org_id = ? AND advice_type = 1 AND advice_doctor = ? and execution_frequency = ?"
  6517. adviceCondition = append(adviceCondition, adviceWhere, orgID, adminUserId, execution_frequency)
  6518. } else {
  6519. adviceWhere = "status = 1 AND user_org_id = ? AND advice_type = 1 AND advice_doctor = ? "
  6520. adviceCondition = append(adviceCondition, adviceWhere, orgID, adminUserId)
  6521. }
  6522. }
  6523. }
  6524. }
  6525. } else if patientType == 2 {
  6526. if patient_id > 0 {
  6527. if execution_state > 0 {
  6528. if cost_type > 0 {
  6529. if len(execution_frequency) > 0 {
  6530. adviceWhere = "status = 1 AND user_org_id = ? AND advice_type = 1 AND execution_staff = 0 and patient_id = ? and execution_state = ? and is_settle = ?and execution_frequency = ?"
  6531. adviceCondition = append(adviceCondition, adviceWhere, orgID, patient_id, execution_state, cost_type, execution_frequency)
  6532. } else {
  6533. adviceWhere = "status = 1 AND user_org_id = ? AND advice_type = 1 AND execution_staff = 0 and patient_id = ? and execution_state = ? and is_settle = ?"
  6534. adviceCondition = append(adviceCondition, adviceWhere, orgID, patient_id, execution_state, cost_type)
  6535. }
  6536. } else {
  6537. if len(execution_frequency) > 0 {
  6538. adviceWhere = "status = 1 AND user_org_id = ? AND advice_type = 1 AND execution_staff = 0 and patient_id = ? and execution_state = ? and execution_frequency = ?"
  6539. adviceCondition = append(adviceCondition, adviceWhere, orgID, patient_id, execution_state, execution_frequency)
  6540. } else {
  6541. adviceWhere = "status = 1 AND user_org_id = ? AND advice_type = 1 AND execution_staff = 0 and patient_id = ? and execution_state = ?"
  6542. adviceCondition = append(adviceCondition, adviceWhere, orgID, patient_id, execution_state)
  6543. }
  6544. }
  6545. } else {
  6546. if cost_type > 0 {
  6547. if len(execution_frequency) > 0 {
  6548. adviceWhere = "status = 1 AND user_org_id = ? AND advice_type = 1 AND execution_staff = 0 and patient_id = ? and is_settle = ? and execution_frequency = ?"
  6549. adviceCondition = append(adviceCondition, adviceWhere, orgID, patient_id, cost_type, execution_frequency)
  6550. } else {
  6551. adviceWhere = "status = 1 AND user_org_id = ? AND advice_type = 1 AND execution_staff = 0 and patient_id = ? and is_settle = ?"
  6552. adviceCondition = append(adviceCondition, adviceWhere, orgID, patient_id, cost_type)
  6553. }
  6554. } else {
  6555. if len(execution_frequency) > 0 {
  6556. adviceWhere = "status = 1 AND user_org_id = ? AND advice_type = 1 AND execution_staff = 0 and patient_id = ? and execution_frequency = ?"
  6557. adviceCondition = append(adviceCondition, adviceWhere, orgID, patient_id, execution_frequency)
  6558. } else {
  6559. adviceWhere = "status = 1 AND user_org_id = ? AND advice_type = 1 AND execution_staff = 0 and patient_id = ?"
  6560. adviceCondition = append(adviceCondition, adviceWhere, orgID, patient_id)
  6561. }
  6562. }
  6563. }
  6564. } else {
  6565. if execution_state > 0 {
  6566. if cost_type > 0 {
  6567. if len(execution_frequency) > 0 {
  6568. adviceWhere = "status = 1 AND user_org_id = ? AND advice_type = 1AND execution_staff = 0 and execution_state = ? and is_settle = ? and execution_frequency = ?"
  6569. adviceCondition = append(adviceCondition, adviceWhere, orgID, execution_state, cost_type, execution_frequency)
  6570. } else {
  6571. adviceWhere = "status = 1 AND user_org_id = ? AND advice_type = 1AND execution_staff = 0 and execution_state = ? and is_settle = ?"
  6572. adviceCondition = append(adviceCondition, adviceWhere, orgID, execution_state, cost_type)
  6573. }
  6574. } else {
  6575. if len(execution_frequency) > 0 {
  6576. adviceWhere = "status = 1 AND user_org_id = ? AND advice_type = 1 AND execution_staff = 0 and execution_state = ? and execution_frequency = ?"
  6577. adviceCondition = append(adviceCondition, adviceWhere, orgID, execution_state, execution_frequency)
  6578. } else {
  6579. adviceWhere = "status = 1 AND user_org_id = ? AND advice_type = 1 AND execution_staff = 0 and execution_state = ?"
  6580. adviceCondition = append(adviceCondition, adviceWhere, orgID, execution_state)
  6581. }
  6582. }
  6583. } else {
  6584. if cost_type > 0 {
  6585. if len(execution_frequency) > 0 {
  6586. adviceWhere = "status = 1 AND user_org_id = ? AND advice_type = 1 AND execution_staff = 0 and is_settle = ? and execution_frequency = ?"
  6587. adviceCondition = append(adviceCondition, adviceWhere, orgID, cost_type, execution_frequency)
  6588. } else {
  6589. adviceWhere = "status = 1 AND user_org_id = ? AND advice_type = 1 AND execution_staff = 0 and is_settle = ?"
  6590. adviceCondition = append(adviceCondition, adviceWhere, orgID, cost_type)
  6591. }
  6592. } else {
  6593. if len(execution_frequency) > 0 {
  6594. adviceWhere = "status = 1 AND user_org_id = ? AND advice_type = 1 AND execution_staff = 0 and execution_frequency = ?"
  6595. adviceCondition = append(adviceCondition, adviceWhere, orgID, execution_frequency)
  6596. } else {
  6597. adviceWhere = "status = 1 AND user_org_id = ? AND advice_type = 1 AND execution_staff = 0"
  6598. adviceCondition = append(adviceCondition, adviceWhere, orgID)
  6599. }
  6600. }
  6601. }
  6602. }
  6603. }
  6604. }
  6605. db := readDb.Table("xt_schedule")
  6606. if scheduleType > 0 {
  6607. db = db.Where("schedule_type = ?", scheduleType)
  6608. }
  6609. if partitonType > 0 {
  6610. db = db.Where("partition_id = ?", partitonType)
  6611. }
  6612. db = db.Preload("SchedualPatient", "status = 1 AND user_org_id = ?", orgID).
  6613. Preload("DialysisOrder", func(db *gorm.DB) *gorm.DB {
  6614. return db.Where("status = 1 AND user_org_id = ?", orgID).Preload("DeviceNumber", "status = 1 AND org_id= ?", orgID)
  6615. }).
  6616. Preload("DeviceNumber", "status = 1 AND org_id = ?", orgID).
  6617. Preload("DeviceNumber.Zone", "status = 1 AND org_id = ?", orgID).
  6618. Preload("Prescription", "status = 1 AND user_org_id = ? AND record_date = ?", orgID, scheduleDate).
  6619. Preload("DialysisAssesmentBefor", "status =1 AND user_org_id = ? and assessment_date =?", orgID, scheduleDate).
  6620. Preload("DoctorAdvices", adviceCondition...).
  6621. Where("status = 1 AND user_org_id = ?", orgID)
  6622. if scheduleDate != 0 {
  6623. db = db.Where("schedule_date = ?", scheduleDate)
  6624. }
  6625. err := db.Find(&vms).Error
  6626. return vms, err
  6627. }