self_drug_service.go 100KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721
  1. package service
  2. import (
  3. "XT_New/models"
  4. "fmt"
  5. "github.com/jinzhu/gorm"
  6. "time"
  7. )
  8. func GetCurrentPatient(orgid int64) (patients []*models.DrugPatients, err error) {
  9. err = XTReadDB().Where("user_org_id = ? and status = 1", orgid).Find(&patients).Error
  10. return patients, err
  11. }
  12. func GetAllDrugName(orgid int64) (baseDrug []*models.XtBaseDrug, err error) {
  13. err = XTReadDB().Group("drug_name").Where("org_id = ? and status = 1 and find_in_set('停用',drug_status) = 0", orgid).Find(&baseDrug).Error
  14. return baseDrug, err
  15. }
  16. func GetDrugName(drugname string, orgid int64) (*models.XtDrugName, error) {
  17. drugName := models.XtDrugName{}
  18. err := XTReadDB().Model(&drugName).Where("drug_name = ? and user_org_id = ? and status =1", drugname, orgid).Find(&drugName).Error
  19. if err == gorm.ErrRecordNotFound {
  20. return nil, err
  21. }
  22. if err != nil {
  23. return nil, err
  24. }
  25. return &drugName, nil
  26. }
  27. func SaveDrugName(drugname *models.XtDrugName) error {
  28. err := XTWriteDB().Create(&drugname).Error
  29. return err
  30. }
  31. func GetDrugNameList(orgid int64) (druname []*models.XtDrugName, err error) {
  32. err = XTReadDB().Model(&druname).Where("user_org_id = ? and status = 1", orgid).Find(&druname).Error
  33. return druname, err
  34. }
  35. func GetRulleName(orgid int64, name string) (baseDrug []*models.XtBaseDrug, err error) {
  36. err = XTReadDB().Model(&baseDrug).Where("org_id = ? and drug_name = ? and status = 1", orgid, name).Find(&baseDrug).Error
  37. return baseDrug, err
  38. }
  39. func GetDrugId(id int64) (models.XtSelfMedical, error) {
  40. medical := models.XtSelfMedical{}
  41. err := XTReadDB().Model(&medical).Where("id = ? and status = 1", id).Find(&medical).Error
  42. return medical, err
  43. }
  44. func GetRulleList(orgid int64, id int64) (rulleName []*models.XtStandName, err error) {
  45. err = XTReadDB().Model(&rulleName).Where("user_org_id = ? and drug_id = ? and status = 1", orgid, id).Find(&rulleName).Error
  46. return rulleName, err
  47. }
  48. func GetUnitByBaseId(id int64) (models.XtBaseDrug, error) {
  49. drug := models.XtBaseDrug{}
  50. err := XTReadDB().Model(&drug).Where("id = ? and status = 1", id).Find(&drug).Error
  51. return drug, err
  52. }
  53. func IsExistStandName(drugname string, drugspec string, orgid int64) (*models.XtStandName, error) {
  54. standName := models.XtStandName{}
  55. err := XTReadDB().Model(&standName).Where("drug_name = ? and drug_spec = ? and user_org_id = ? and status = 1", drugname, drugspec, orgid).Find(&standName).Error
  56. if err == gorm.ErrRecordNotFound {
  57. return nil, err
  58. }
  59. if err != nil {
  60. return nil, err
  61. }
  62. return &standName, nil
  63. }
  64. func SaveRulleName(rullName *models.XtStandName) error {
  65. err := XTWriteDB().Model(&rullName).Create(&rullName).Error
  66. return err
  67. }
  68. func GetRullerNameDetail(id int64) (models.XtStandName, error) {
  69. rullerName := models.XtStandName{}
  70. err := XTReadDB().Model(&rullerName).Where("id= ? and status = 1", id).Find(&rullerName).Error
  71. return rullerName, err
  72. }
  73. func GetIsExit(drugname string, drugspec string, id int64) (*models.XtStandName, error) {
  74. standName := models.XtStandName{}
  75. err := XTReadDB().Model(&standName).Where("drug_name = ? and drug_spec = ? and id <> ? and status = 1", drugname, drugspec, id).Find(&standName).Error
  76. if err == gorm.ErrRecordNotFound {
  77. return nil, err
  78. }
  79. if err != nil {
  80. return nil, err
  81. }
  82. return &standName, nil
  83. }
  84. func UpdatedRullerName(id int64, re *models.XtStandName) error {
  85. err := XTWriteDB().Model(&re).Where("id=?", id).Update(map[string]interface{}{"drug_spec": re.DrugSpec, "min_unit": re.MinUnit, "price": re.Price, "drug_stock_limit": re.DrugStockLimit, "drug_name": re.DrugName, "drug_name_id": re.DrugNameId, "drug_id": re.DrugId}).Error
  86. return err
  87. }
  88. //func GetAllDrugNameList(orgid int64) (rullername []*models.XtStandName, err error) {
  89. //
  90. // err = XTReadDB().Group("drug_name").Model(&rullername).Where("user_org_id = ? and status = 1", orgid).Find(&rullername).Error
  91. // return rullername, err
  92. //}
  93. func GetAllDrugNameList(orgid int64) (drugName []*models.XtDrugName, err error) {
  94. err = XTReadDB().Model(&drugName).Where("user_org_id = ? and status = 1", orgid).Find(&drugName).Error
  95. return drugName, err
  96. }
  97. func GetRullerListByDrugName(drugname string, orgid int64) (rullername []*models.XtStandName, err error) {
  98. err = XTReadDB().Model(&rullername).Where("drug_id = ? and user_org_id = ? and status = 1", drugname, orgid).Find(&rullername).Error
  99. return rullername, err
  100. }
  101. func GetBaseDrugMedical(id int64) (models.XtBaseDrug, error) {
  102. drug := models.XtBaseDrug{}
  103. err := XTReadDB().Model(&drug).Where("id = ? and status = 1", id).Find(&drug).Error
  104. return drug, err
  105. }
  106. func ModifyDrugWarehouseByInfoId(id int64, stock_max_number int64) error {
  107. info := models.DrugWarehouseInfo{}
  108. err := XTWriteDB().Model(&info).Where("id = ?", id).UpdateColumn("stock_max_number", gorm.Expr("stock_max_number - ?", stock_max_number)).Error
  109. return err
  110. }
  111. func ModifyDrugWarehouseByStockMin(id int64, stock_min_number int64) error {
  112. info := models.DrugWarehouseInfo{}
  113. err := XTWriteDB().Model(&info).Where("id = ?", id).UpdateColumn("stock_min_number", gorm.Expr("stock_min_number - ?", stock_min_number)).Error
  114. return err
  115. }
  116. func GetSelfMedicalByDrugName(drugname string, drug_spec string, patientid int64) (*models.XtSelfMedical, error) {
  117. medical := models.XtSelfMedical{}
  118. err := XTReadDB().Model(&medical).Where("drug_name = ? and drug_spec = ? and patient_id = ? and status = 1", drugname, drug_spec, patientid).Find(&medical).Error
  119. if err == gorm.ErrRecordNotFound {
  120. return nil, err
  121. }
  122. if err != nil {
  123. return nil, err
  124. }
  125. return &medical, err
  126. }
  127. func CreateSelfMedical(medical *models.XtSelfMedical) error {
  128. err = XTWriteDB().Model(&medical).Create(&medical).Error
  129. return err
  130. }
  131. func GetCurrentOrgAllStaff(orgid int64, app int64) (role []*models.SgjUserAdminRole, err error) {
  132. err = UserReadDB().Model(&role).Where("org_id = ? and app_id = ? and status = 1", orgid, app).Find(&role).Error
  133. return role, err
  134. }
  135. func CreateStock(stock *models.XtSelfStock) error {
  136. err := XTWriteDB().Model(&stock).Create(&stock).Error
  137. return err
  138. }
  139. func CreateOutStock(stock *models.XtSelfOutStock) error {
  140. err := XTWriteDB().Model(&stock).Create(&stock).Error
  141. return err
  142. }
  143. func GetStandDrugByDrugName(drugname string, orgid int64) (*models.XtStandName, error) {
  144. standname := models.XtStandName{}
  145. err := XTReadDB().Model(&standname).Where("drug_name = ? and user_org_id = ? and status = 1", drugname, orgid).Find(&standname).Error
  146. if err == gorm.ErrRecordNotFound {
  147. return nil, err
  148. }
  149. if err != nil {
  150. return nil, err
  151. }
  152. return &standname, nil
  153. }
  154. func DeleteDrugName(id int64) (models.XtDrugName, error) {
  155. standName := models.XtDrugName{}
  156. err := XTWriteDB().Model(&standName).Where("id = ?", id).Update(map[string]interface{}{"status": 0}).Error
  157. return standName, err
  158. }
  159. func GetDrugSetByUserOrgId(orgid int64) (*models.XtDrugSet, error) {
  160. set := models.XtDrugSet{}
  161. err := XTReadDB().Model(&set).Where("user_org_id = ? and status = 1", orgid).Find(&set).Error
  162. if err == gorm.ErrRecordNotFound {
  163. return nil, err
  164. }
  165. if err != nil {
  166. return nil, err
  167. }
  168. return &set, nil
  169. }
  170. func SaveRadio(drugSet *models.XtDrugSet) error {
  171. err := XTWriteDB().Model(&drugSet).Create(&drugSet).Error
  172. return err
  173. }
  174. func UpdateDrugSet(set *models.XtDrugSet, orgid int64) error {
  175. err := XTWriteDB().Model(&set).Where("user_org_id = ?", orgid).Update(map[string]interface{}{"drug_start": set.DrugStart}).Error
  176. return err
  177. }
  178. func GetMedicalsByName(orgid int64, drugname string) (*models.XtSelfMedical, error) {
  179. medical := models.XtSelfMedical{}
  180. err := XTReadDB().Model(&medical).Where("user_org_id = ? and drug_name = ? and status = 1", orgid, drugname).Find(&medical).Error
  181. if err == gorm.ErrRecordNotFound {
  182. return nil, err
  183. }
  184. if err != nil {
  185. return nil, err
  186. }
  187. return &medical, nil
  188. }
  189. func DeleteDrugStand(id int64) error {
  190. standName := models.XtStandName{}
  191. err := XTWriteDB().Model(&standName).Where("id =?", id).Update(map[string]interface{}{"status": 0}).Error
  192. return err
  193. }
  194. //func GetStockList(patientid int64, startime int64, keyword string) (stock []*models.SelfStocks, err error) {
  195. // db := XTReadDB().Table("xt_self_stock as x").Where("x.status = 1")
  196. // likeKey := "%" + keyword + "%"
  197. // table := XTReadDB().Table("xt_patients as s")
  198. // fmt.Println(table)
  199. // if patientid > 0 {
  200. // db = db.Where("x.patient_id = ?", patientid)
  201. // }
  202. // if startime > 0 {
  203. // db = db.Where("x.storck_time <= ?", startime)
  204. // }
  205. // err = db.Group("x.drug_name,x.drug_spec").Select("x.id,x.drug_name,x.drug_name_id,x.drug_spec,x.remarks,x.store_number,x.admin_user_id,x.storck_time,x.user_org_id,x.stock_in_number,x.patient_id,x.min_unit,sum(x.store_number) as total").Joins("left join xt_patients as s on s.id = x.patient_id").Where("s.name like ? or s.dialysis_no like ?", likeKey, likeKey).Scan(&stock).Error
  206. // return stock, err
  207. //}
  208. func GetStockList(patientid int64, startime int64, keyword string, orgid int64) (stock []*models.XtSelfMedicals, err error) {
  209. likeKey := "%" + keyword + "%"
  210. db := XTReadDB().Table("xt_self_medical as x").Where("x.status = 1")
  211. if patientid > 0 {
  212. db = db.Where("x.patient_id = ?", patientid)
  213. }
  214. if orgid > 0 {
  215. db = db.Where("x.user_org_id = ?", orgid)
  216. }
  217. err = db.Group("x.drug_name,x.drug_spec").Select("x.id,x.drug_name,x.drug_name_id,x.drug_spec,x.min_unit,sum(t.store_number) as total,t.remarks,x.patient_id,t.stock_in_number,t.storck_time,t.admin_user_id,t.medic_id").Joins("left join xt_self_stock as t on t.medic_id = x.id").Where("t.storck_time<=?", startime).Joins("left join xt_patients as s on s.id = x.patient_id").Where("s.name like ? or s.dialysis_no like ?", likeKey, likeKey).Scan(&stock).Error
  218. return stock, err
  219. }
  220. func GetOutStockList(patientid int64, startime int64, keyword string, orgid int64) (outStock []*models.SelfOutStock, err error) {
  221. likeKey := "%" + keyword + "%"
  222. db := XTReadDB().Table("xt_self_medical as x").Where("x.status = 1")
  223. if patientid > 0 {
  224. db = db.Where("x.patient_id = ?", patientid)
  225. }
  226. if orgid > 0 {
  227. db = db.Where("x.user_org_id = ?", orgid)
  228. }
  229. err = db.Group("x.drug_name,x.drug_spec").Select("x.id,x.drug_name,x.drug_name_id,x.drug_spec,x.min_unit,sum(t.outstore_number) as count,t.remarks,x.patient_id,t.stock_out_number,t.storck_time,t.admin_user_id,t.medic_id").Joins("left join xt_self_out_stock as t on t.medic_id = x.id").Where("t.storck_time<=?", startime).Joins("left join xt_patients as s on s.id = x.patient_id").Where("s.name like ? or s.dialysis_no like ?", likeKey, likeKey).Scan(&outStock).Error
  230. return outStock, err
  231. }
  232. func GetTotalOutStockList(patientid int64, startime int64, keyword string, orgid int64) (outStock []*models.SelfOutStock, err error) {
  233. likeKey := "%" + keyword + "%"
  234. db := XTReadDB().Table("xt_self_out_stock as x").Where("x.status = 1")
  235. if patientid > 0 {
  236. db = db.Where("x.patient_id = ?", patientid)
  237. }
  238. if orgid > 0 {
  239. db = db.Where("x.user_org_id = ?", orgid)
  240. }
  241. if startime > 0 {
  242. db = db.Where("x.storck_time<=?", startime)
  243. }
  244. err = db.Select("x.id,x.drug_name,x.drug_name_id,x.drug_spec,x.remarks,x.outstore_number,x.admin_user_id,x.storck_time,x.user_org_id,x.patient_id,x.exit_mode,x.medic_id").Joins("left join xt_patients as s on s.id = x.patient_id").Where("s.name like ? or s.dialysis_no like ?", likeKey, likeKey).Find(&outStock).Error
  245. return outStock, err
  246. }
  247. //func GetOutStockList(patientid int64, startime int64, keyword string) (outStock []*models.XtSelfOutStocks, err error) {
  248. // db := XTReadDB().Table("xt_self_out_stock as x").Where("x.status = 1")
  249. // likeKey := "%" + keyword + "%"
  250. // table := XTReadDB().Table("xt_patients as s")
  251. // fmt.Println(table)
  252. // if patientid > 0 {
  253. // db = db.Where("x.patient_id = ?", patientid)
  254. // }
  255. // if startime > 0 {
  256. // db = db.Where("x.storck_time <= ?", startime)
  257. // }
  258. // err = db.Group("x.drug_name,x.drug_spec").Select("x.drug_name,x.drug_spec,x.patient_id,x.stock_out_number,sum(x.outstore_number) as count").Joins("left join xt_patients as s on s.id = x.patient_id").Where("s.name like ? or s.dialysis_no like ?", likeKey, likeKey).Scan(&outStock).Error
  259. // return outStock, err
  260. //}
  261. func GetMedicalList(patientid int64, orgid int64, keyword string) (medical []*models.XtSelfMedicals, err error) {
  262. likeKey := "%" + keyword + "%"
  263. db := XTReadDB().Table("xt_self_medical as x").Where("x.status = 1")
  264. if patientid > 0 {
  265. db = db.Where("x.patient_id = ?", patientid)
  266. }
  267. if orgid > 0 {
  268. db = db.Where("x.user_org_id = ?", orgid)
  269. }
  270. err = db.Select("x.drug_name,x.id,x.drug_spec,x.patient_id,x.min_unit").Joins("left join xt_patients as s on s.id = x.patient_id").Where("s.name like ? or s.dialysis_no like ?", likeKey, likeKey).Group("x.drug_name,x.drug_spec").Scan(&medical).Error
  271. //err = XTReadDB().Model(&medical).Where("patient_id = ? and user_org_id = ? and status = 1", patientid, orgid).Group("drug_name,drug_spec").Find(&medical).Error
  272. return medical, err
  273. }
  274. func GetStockOutDetail(durgname string, patientid int64) (stock []*models.XtSelfOutStock, err error) {
  275. err = XTReadDB().Model(&stock).Where("drug_name = ? and patient_id = ? and status = 1", durgname, patientid).Find(&stock).Error
  276. return stock, err
  277. }
  278. func DeleteDrugStockNumber(drugname string, patientid int64) (models.XtSelfStock, error) {
  279. stock := models.XtSelfStock{}
  280. err := XTWriteDB().Model(&stock).Where("drug_name = ? and patient_id = ?", drugname, patientid).Update(map[string]interface{}{"status": 0}).Error
  281. return stock, err
  282. }
  283. func GetStockDetail(drugname string, drugspec string, startime int64, endtime int64, patientid int64, orgid int64) (stock []*models.XtSelfStock, err error) {
  284. err = XTReadDB().Model(&stock).Where("drug_name = ? and drug_spec = ? and patient_id =? and user_org_id = ? and status = 1 and storck_time>=? and storck_time<=?", drugname, drugspec, patientid, orgid, startime, endtime).Order("storck_time asc").Find(&stock).Error
  285. return stock, err
  286. }
  287. func GetOutStockDetail(drugname string, drugspec string, startime int64, endtime int64, patientid int64, orgid int64) (outStock []*models.XtSelfOutStock, err error) {
  288. err = XTReadDB().Model(&outStock).Where("drug_name = ? and drug_spec=? and patient_id = ? and user_org_id = ? and status = 1 and storck_time>=? and storck_time<=?", drugname, drugspec, patientid, orgid, startime, endtime).Order("storck_time asc").Find(&outStock).Error
  289. return outStock, err
  290. }
  291. func GetAllPatientStockList(drug_name string, drug_spec string, startime int64, endtime int64, keyword string, orgid int64) (stocks []*models.SelfStocks, err error) {
  292. db := XTReadDB().Table("xt_self_stock as x").Where("x.status = 1")
  293. likeKey := "%" + keyword + "%"
  294. table := XTReadDB().Table("xt_patients as s")
  295. fmt.Println(table)
  296. if len(drug_name) > 0 {
  297. db = db.Where("x.drug_name = ?", drug_name)
  298. }
  299. if len(drug_spec) > 0 {
  300. db = db.Where("x.drug_spec = ?", drug_spec)
  301. }
  302. //if startime > 0 {
  303. // db = db.Where("x.storck_time >= ?", startime)
  304. //}
  305. //if endtime > 0 {
  306. // db = db.Where("x.storck_time <= ?", endtime)
  307. //}
  308. if orgid > 0 {
  309. db = db.Where("x.user_org_id = ?", orgid)
  310. }
  311. err = db.Group("x.patient_id,x.drug_name,x.drug_spec").Select("t.drug_name,t.drug_spec,x.patient_id,x.store_number,sum(x.store_number) as total,s.name,s.dialysis_no,x.min_unit,x.drug_name_id").Joins("left join xt_patients as s on s.id = x.patient_id").Joins("left join xt_self_medical as t on t.id = x.medic_id").Where("s.name like ? or s.dialysis_no like ?", likeKey, likeKey).Scan(&stocks).Error
  312. return stocks, err
  313. }
  314. func GetAllPatientOutStockList(drug_name string, drug_spec string, startime int64, endtime int64, keyword string, orgid int64) (outStock []*models.XtSelfOutStocks, err error) {
  315. db := XTReadDB().Table("xt_self_out_stock as x").Where("x.status = 1")
  316. likeKey := "%" + keyword + "%"
  317. table := XTReadDB().Table("xt_patients as s")
  318. fmt.Println(table)
  319. if len(drug_name) > 0 {
  320. db = db.Where("x.drug_name = ?", drug_name)
  321. }
  322. if len(drug_spec) > 0 {
  323. db = db.Where("x.drug_spec=?", drug_spec)
  324. }
  325. if startime > 0 {
  326. db = db.Where("x.storck_time >= ?", startime)
  327. }
  328. if endtime > 0 {
  329. db = db.Where("x.storck_time<=?", endtime)
  330. }
  331. if orgid > 0 {
  332. db = db.Where("x.user_org_id = ?", orgid)
  333. }
  334. err = db.Group("x.patient_id,x.drug_name,x.drug_spec").Select("x.drug_name,x.drug_spec,x.patient_id,x.stock_out_number,sum(x.outstore_number) as count,s.name,s.dialysis_no,x.drug_name_id").Joins("left join xt_patients as s on s.id = x.patient_id").Where("s.name like ? or s.dialysis_no like ?", likeKey, likeKey).Scan(&outStock).Error
  335. return outStock, err
  336. }
  337. func GetDrugDataByPatientId(patientid int64) (selfMedical []*models.XtSelfMedical, err error) {
  338. err = XTReadDB().Group("drug_name,drug_spec").Model(&selfMedical).Where("patient_id = ? and status = 1", patientid).Find(&selfMedical).Error
  339. return selfMedical, err
  340. }
  341. func GetDruckStockConfig(orgid int64) (models.XtDrugStockConfig, error) {
  342. drugConfig := models.XtDrugStockConfig{}
  343. err := XTReadDB().Model(&drugConfig).Where("org_id = ? and status = 1", orgid).Find(&drugConfig).Error
  344. return drugConfig, err
  345. }
  346. func GetSetSelfMedical(orgid int64) (models.XtDrugSet, error) {
  347. medical := models.XtDrugSet{}
  348. err := XTReadDB().Model(&medical).Where("user_org_id = ? and status = 1", orgid).Find(&medical).Error
  349. return medical, err
  350. }
  351. func GetSelfMedicalList(patientid int64) (selfmedical []*models.XtSelfMedical, err error) {
  352. err = XTReadDB().Group("drug_name").Model(&selfmedical).Where("patient_id = ? and status = 1", patientid).Find(&selfmedical).Error
  353. return selfmedical, err
  354. }
  355. func GetDrugDescByDrugName(drugname string, patient_id int64, orgid int64) (selfMedical []*models.XtSelfMedical, err error) {
  356. err = XTReadDB().Model(&selfMedical).Where("drug_name = ? and patient_id = ? and user_org_id = ? and status = 1", drugname, patient_id, orgid).Find(&selfMedical).Error
  357. return selfMedical, err
  358. }
  359. func GetBaseMedcal(drugname string, orgid int64) (baseDrug []*models.XtBaseDrug, err error) {
  360. err = XTReadDB().Model(&baseDrug).Where("drug_name = ? and org_id = ? and status = 1", drugname, orgid).Find(&baseDrug).Error
  361. return baseDrug, err
  362. }
  363. func GetTotalBaseMedicalCount(drug_id int64, orgid int64) (drugInfo []*models.DrugWarehousingInfo, err error) {
  364. db := XTReadDB().Table("xt_drug_warehouse_info as x").Where("x.status = 1")
  365. err = db.Select("x.drug_id,sum(x.warehousing_count) as count").Where("drug_id = ? and org_id = ?", drug_id, orgid).Scan(&drugInfo).Error
  366. return drugInfo, err
  367. }
  368. func GetTotalBaseMedicalCountOut(drug_id int64, orgid int64) (drugOut []*models.DrugWarehousingInfo, err error) {
  369. db := XTReadDB().Table("xt_drug_warehouse_out_info as x").Where("x.status = 1")
  370. err = db.Select("x.drug_id,sum(x.count) as count").Where("drug_id = ? and org_id = ?", drug_id, orgid).Scan(&drugOut).Error
  371. return drugOut, err
  372. }
  373. func GetDrugWareseOut(startime int64, orgid int64) (*models.XtDrugWarehouse, error) {
  374. warehouse := models.XtDrugWarehouse{}
  375. err := XTReadDB().Model(&warehouse).Where("warehousing_time = ? and org_id = ? and status = 1", startime, orgid).Find(&warehouse).Error
  376. if err == gorm.ErrRecordNotFound {
  377. return nil, err
  378. }
  379. if err != nil {
  380. return nil, err
  381. }
  382. return &warehouse, nil
  383. }
  384. func GetManufacturer(id int64) (models.XtBaseDrug, error) {
  385. drug := models.XtBaseDrug{}
  386. err := XTReadDB().Model(&drug).Where("id = ? and status = 1", id).Find(&drug).Error
  387. return drug, err
  388. }
  389. func CreateDrugWarehoue(warehouse *models.XtDrugWarehouse) error {
  390. err := XTWriteDB().Model(&warehouse).Create(&warehouse).Error
  391. return err
  392. }
  393. func GetTodayWareHousringOrder(startime int64, orgid int64) (models.XtDrugWarehouseOut, error) {
  394. warehouse := models.XtDrugWarehouseOut{}
  395. err := XTReadDB().Model(&warehouse).Where("warehouse_out_time = ? and org_id = ? and status = 1", startime, orgid).Find(&warehouse).Error
  396. return warehouse, err
  397. }
  398. func CreateDrugWareHouseOut(out *models.XtDrugWarehouseOut) error {
  399. err := XTWriteDB().Model(&out).Create(&out).Error
  400. return err
  401. }
  402. func CreateWareHouseOutInfo(info *models.XtDrugWarehouseOutInfo) error {
  403. err := XTWriteDB().Model(&info).Create(&info).Error
  404. return err
  405. }
  406. func CreateAotoMaticReduceDetail(detail *models.XtDrugAutomaticReduceDetail) error {
  407. err := XTWriteDB().Model(&detail).Create(&detail).Error
  408. return err
  409. }
  410. func GetDrugStockConfig(orgid int64) (models.XtDrugStockConfig, error) {
  411. config := models.XtDrugStockConfig{}
  412. err := XTReadDB().Model(&config).Where("org_id =? and status = 1", orgid).Find(&config).Error
  413. return config, err
  414. }
  415. func GetDrugSet(orgid int64) (models.XtDrugSet, error) {
  416. drugSet := models.XtDrugSet{}
  417. err := XTReadDB().Model(&drugSet).Where("user_org_id =? and status = 1", orgid).Find(&drugSet).Error
  418. return drugSet, err
  419. }
  420. type Drugs struct {
  421. ID int64 `gorm:"column:id" json:"id" form:"id"`
  422. DrugName string `gorm:"column:drug_name" json:"drug_name" form:"drug_name"`
  423. Pinyin string `gorm:"column:pinyin" json:"pinyin" form:"pinyin"`
  424. Wubi string `gorm:"column:wubi" json:"wubi" form:"wubi"`
  425. DrugAlias string `gorm:"column:drug_alias" json:"drug_alias" form:"drug_alias"`
  426. DrugAliasPinyin string `gorm:"column:drug_alias_pinyin" json:"drug_alias_pinyin" form:"drug_alias_pinyin"`
  427. DrugAliasWubi string `gorm:"column:drug_alias_wubi" json:"drug_alias_wubi" form:"drug_alias_wubi"`
  428. DrugCategory int64 `gorm:"column:drug_category" json:"drug_category" form:"drug_category"`
  429. DrugSpec string `gorm:"column:drug_spec" json:"drug_spec" form:"drug_spec"`
  430. DrugType int64 `gorm:"column:drug_type" json:"drug_type" form:"drug_type"`
  431. DrugStockLimit string `gorm:"column:drug_stock_limit" json:"drug_stock_limit" form:"drug_stock_limit"`
  432. DrugStatus string `gorm:"column:drug_status" json:"drug_status" form:"drug_status"`
  433. DeliveryWay string `gorm:"column:delivery_way" json:"delivery_way" form:"delivery_way"`
  434. ExecutionFrequency string `gorm:"column:execution_frequency" json:"execution_frequency" form:"execution_frequency"`
  435. SingleDose float64 `gorm:"column:single_dose" json:"single_dose" form:"single_dose"`
  436. PrescribingNumber float64 `gorm:"column:prescribing_number" json:"prescribing_number" form:"prescribing_number"`
  437. Status int64 `gorm:"column:status" json:"status" form:"status"`
  438. OrgId int64 `gorm:"column:org_id" json:"org_id" form:"org_id"`
  439. MinUnit string `gorm:"column:min_unit" json:"min_unit" form:"min_unit"`
  440. Drugs []*Drugs `gorm:"ForeignKey:DrugName;AssociationForeignKey:DrugName" json:"drug_specs"`
  441. HospApprFlag int64 `gorm:"column:hosp_appr_flag" json:"hosp_appr_flag" form:"hosp_appr_flag"`
  442. LmtUsedFlag int64 `gorm:"column:lmt_used_flag" json:"lmt_used_flag" form:"lmt_used_flag"`
  443. PrescribingNumberUnit string `gorm:"column:prescribing_number_unit" json:"prescribing_number_unit" form:"prescribing_number_unit"`
  444. MinNumber int64 `gorm:"column:min_number" json:"min_number" form:"min_number"`
  445. Dose string `gorm:"column:dose" json:"dose" form:"dose"`
  446. DoseUnit string `gorm:"column:dose_unit" json:"dose_unit" form:"dose_unit"`
  447. MaxUnit string `gorm:"column:max_unit" json:"max_unit" form:"max_unit"`
  448. DrugDoseUnit int64 `grom:"column:drug_dose_unit" json:"drug_dose_unit" form:"drug_dose_unit"`
  449. }
  450. func (Drugs) TableName() string {
  451. return "xt_base_drug"
  452. }
  453. func GetAllBaseDrugLibList(org_id int64) (drugs []*Drugs, err error) {
  454. db := readDb.Model(&models.BaseDrugLib{}).Preload("Drugs", "status = 1 AND org_id = ? AND find_in_set('停用',drug_status) = 0", org_id).Where("org_id = ? AND status = 1 AND find_in_set('停用',drug_status) = 0", org_id).Group("drug_name")
  455. err = db.Find(&drugs).Error
  456. return
  457. }
  458. type PrivateDrug struct {
  459. DrugName string `gorm:"column:drug_name" json:"drug_name" form:"drug_name"`
  460. ID int64 `gorm:"column:id" json:"id" form:"id"`
  461. DrugSpec string `gorm:"column:drug_spec" json:"drug_spec" form:"drug_spec"`
  462. PatientId int64 `gorm:"column:patient_id" json:"patient_id" form:"patient_id"`
  463. DrugNameId int64 `gorm:"column:drug_name_id" json:"drug_name_id" form:"drug_name_id"`
  464. Status int64 `gorm:"column:status" json:"status" form:"status"`
  465. UserOrgId int64 `gorm:"column:user_org_id" json:"user_org_id" form:"user_org_id"`
  466. CreatedTime int64 `gorm:"column:created_time" json:"created_time" form:"created_time"`
  467. UpdatedTime int64 `gorm:"column:updated_time" json:"updated_time" form:"updated_time"`
  468. MinUnit string `gorm:"column:min_unit" json:"min_unit" form:"min_unit"`
  469. ExecutionFrequency string `gorm:"column:execution_frequency" json:"execution_frequency" form:"execution_frequency"`
  470. PrescribingNumber float64 `gorm:"column:prescribing_number" json:"prescribing_number" form:"prescribing_number"`
  471. DeliveryWay string `gorm:"column:delivery_way" json:"delivery_way" form:"delivery_way"`
  472. SingleDose float64 `gorm:"column:single_dose" json:"single_dose" form:"single_dose"`
  473. PrivateDrug []*PrivateDrug `gorm:"ForeignKey:DrugName;AssociationForeignKey:DrugName" json:"drug_specs"`
  474. }
  475. func (PrivateDrug) TableName() string {
  476. return "xt_self_medical"
  477. }
  478. func GetPrivateDrugList(patient_id int64, org_id int64) (pds []*PrivateDrug, err error) {
  479. err = XTReadDB().Model(&PrivateDrug{}).Preload("PrivateDrug", "status = 1 AND user_org_id = ? AND patient_id = ? ", org_id, patient_id).Where("patient_id = ? and status = 1 AND user_org_id = ?", patient_id, org_id).Group("drug_name_id").Find(&pds).Error
  480. return
  481. }
  482. func GetAllMedicalList(orgid int64) (list []*models.XtSelfMedical, err error) {
  483. err = XTReadDB().Model(&list).Where("user_org_id = ? and status = 1", orgid).Group("drug_name").Find(&list).Error
  484. return list, err
  485. }
  486. func DeleteDrugNameById(id int64) (models.XtSelfMedical, error) {
  487. medical := models.XtSelfMedical{}
  488. err := XTWriteDB().Model(&medical).Where("id = ?", id).Updates(map[string]interface{}{"status": 0}).Error
  489. return medical, err
  490. }
  491. func GetDrugNameIsExist(drugid int64, orgid int64) (*models.XtDrugName, error) {
  492. drugName := models.XtDrugName{}
  493. err := XTReadDB().Model(&drugName).Where("drug_id = ? and user_org_id = ? and status = 1", drugid, orgid).Find(&drugName).Error
  494. if err == gorm.ErrRecordNotFound {
  495. return nil, err
  496. }
  497. if err != nil {
  498. return nil, err
  499. }
  500. return &drugName, nil
  501. }
  502. func UpdatedDrugName(id int64, orgid int64, drugName *models.XtDrugName) error {
  503. err := XTWriteDB().Model(&drugName).Where("drug_id = ? and user_org_id = ? and status = 1", id, orgid).Update(map[string]interface{}{"drug_name": drugName.DrugName}).Error
  504. return err
  505. }
  506. func GetStandNameIsExist(id int64, orgid int64) (*models.XtStandName, error) {
  507. standName := models.XtStandName{}
  508. err := XTReadDB().Model(&standName).Where("drug_name_id = ? and user_org_id = ? and status = 1", id, orgid).Find(&standName).Error
  509. if err == gorm.ErrRecordNotFound {
  510. return nil, err
  511. }
  512. if err != nil {
  513. return nil, err
  514. }
  515. return &standName, nil
  516. }
  517. func UpdateStandName(id int64, orgid int64, standName *models.XtStandName) error {
  518. err := XTWriteDB().Model(&standName).Where("drug_name_id = ? and user_org_id = ? and status = 1", id, orgid).Update(map[string]interface{}{"drug_name": standName.DrugName, "drug_spec": standName.DrugSpec, "drug_stock_limit": standName.DrugStockLimit, "min_unit": standName.MinUnit}).Error
  519. return err
  520. }
  521. func GetSelfMedicalIsExist(id int64, orgid int64) (*models.XtSelfMedical, error) {
  522. medical := models.XtSelfMedical{}
  523. err := XTReadDB().Model(&medical).Where("drug_name_id = ? and user_org_id = ? and status =1", id, orgid).Find(&medical).Error
  524. if err == gorm.ErrRecordNotFound {
  525. return nil, err
  526. }
  527. if err != nil {
  528. return nil, err
  529. }
  530. return &medical, nil
  531. }
  532. func UpdateSelfMedical(id int64, orgid int64, medical *models.XtSelfMedical) error {
  533. err := XTWriteDB().Model(&medical).Where("drug_name_id = ? and user_org_id = ? and status = 1", id, orgid).Update(map[string]interface{}{"drug_name": medical.DrugName, "drug_spec": medical.DrugSpec, "execution_frequency": medical.ExecutionFrequency, "prescribing_number": medical.PrescribingNumber, "delivery_way": medical.DeliveryWay, "single_dose": medical.SingleDose, "min_unit": medical.MinUnit}).Error
  534. return err
  535. }
  536. func GetDrugNameId(id int64, orgid int64) (models.XtSelfMedical, error) {
  537. medical := models.XtSelfMedical{}
  538. err := XTReadDB().Model(&medical).Where("drug_name_id = ? and status = 1 and user_org_id = ?", id, orgid).Find(&medical).Error
  539. return medical, err
  540. }
  541. func GetSelfStosckIsExist(id int64, orgid int64) (*models.XtSelfStock, error) {
  542. medical := models.XtSelfStock{}
  543. err := XTReadDB().Model(&medical).Where("drug_name_id = ? and user_org_id = ? and status =1", id, orgid).Find(&medical).Error
  544. if err == gorm.ErrRecordNotFound {
  545. return nil, err
  546. }
  547. if err != nil {
  548. return nil, err
  549. }
  550. return &medical, nil
  551. }
  552. func UpdatedSelfStock(stock *models.XtSelfStock, id int64, orgid int64) error {
  553. err := XTWriteDB().Model(&stock).Where("drug_name_id=? and user_org_id = ? and status = 1", id, orgid).Update(map[string]interface{}{"drug_name": stock.DrugName, "min_unit": stock.MinUnit, "drug_spec": stock.DrugSpec}).Error
  554. return err
  555. }
  556. func GetOutSelfOutStockIsExist(id int64, orgid int64) (*models.XtSelfOutStock, error) {
  557. outStock := models.XtSelfOutStock{}
  558. err := XTReadDB().Model(&outStock).Where("drug_name_id = ? and user_org_id = ? and status = 1", id, orgid).Find(&outStock).Error
  559. if err == gorm.ErrRecordNotFound {
  560. return nil, err
  561. }
  562. if err != nil {
  563. return nil, err
  564. }
  565. return &outStock, nil
  566. }
  567. func UpdatedOutSelfStock(stock *models.XtSelfOutStock, id int64, orgid int64) error {
  568. err := XTWriteDB().Model(&stock).Where("drug_name_id = ? and user_org_id = ? and status = 1", id, orgid).Update(map[string]interface{}{"drug_name": stock.DrugName, "drug_spec": stock.DrugSpec}).Error
  569. return err
  570. }
  571. func GetDoctorAdviceIsExist(id int64, orgid int64) (*models.DoctorAdvice, error) {
  572. advice := models.DoctorAdvice{}
  573. err := XTReadDB().Model(&advice).Where("drug_id = ? and user_org_id = ? and status = 1", id, orgid).Find(&advice).Error
  574. if err == gorm.ErrRecordNotFound {
  575. return nil, err
  576. }
  577. if err != nil {
  578. return nil, err
  579. }
  580. return &advice, nil
  581. }
  582. func UpdateNoExcuteDoctorAdvice(id int64, orgid int64, advice *models.DoctorAdvice) error {
  583. err := XTWriteDB().Model(&advice).Where("drug_id = ? and user_org_id = ? and status = 1 and execution_state = 2", id, orgid).Updates(map[string]interface{}{"advice_name": advice.AdviceName, "advice_desc": advice.AdviceDesc, "single_dose": advice.SingleDose, "single_dose_unit": advice.SingleDoseUnit, "delivery_way": advice.DeliveryWay, "execution_frequency": advice.ExecutionFrequency}).Error
  584. return err
  585. }
  586. func GetDoctorAdviceTemplateIsExist(id int64, orgid int64) (*models.DoctorAdviceTemplate, error) {
  587. template := models.DoctorAdviceTemplate{}
  588. err := XTReadDB().Model(&template).Where("drug_id = ? and org_id = ? and status = 1", id, orgid).Find(&template).Error
  589. if err == gorm.ErrRecordNotFound {
  590. return nil, err
  591. }
  592. if err != nil {
  593. return nil, err
  594. }
  595. return &template, nil
  596. }
  597. func UpdatedDoctorAdviceTemplate(id int64, orgid int64, template *models.DoctorAdviceTemplate) error {
  598. err := XTWriteDB().Model(&template).Where("drug_id = ? and org_id = ? and status = 1", id, orgid).Updates(map[string]interface{}{"advice_name": template.AdviceName, "advice_desc": template.AdviceDesc, "single_dose": template.SingleDose, "single_dose_unit": template.SingleDoseUnit, "delivery_way": template.DeliveryWay, "execution_frequency": template.ExecutionFrequency}).Error
  599. return err
  600. }
  601. func ToSeachPatient(keyword string, orgid int64) (patients []*models.Patients, err error) {
  602. likeKey := "%" + keyword + "%"
  603. err = XTReadDB().Model(&patients).Where("name like ? and user_org_id = ? and status = 1", likeKey, orgid).Find(&patients).Error
  604. return patients, err
  605. }
  606. func GetMedicalDrugNameList(orgid int64) (drugName []*models.DrugName, err error) {
  607. db := XTReadDB().Model(&drugName).Where("user_org_id = ? and status = 1", orgid)
  608. err = db.Preload("XtStandName", "status =1 and user_org_id = ?", orgid).Find(&drugName).Error
  609. return drugName, err
  610. }
  611. func GetSelfOutStock(orgid int64, advicedate int64, patientid int64, adivicename string, advicedesc string) (*models.XtSelfOutStock, error) {
  612. stock := models.XtSelfOutStock{}
  613. err = XTReadDB().Model(&stock).Where("user_org_id = ? and storck_time = ? and patient_id = ? and drug_name = ? and drug_spec = ? and status = 1", orgid, advicedate, patientid, adivicename, advicedesc).Find(&stock).Error
  614. if err == gorm.ErrRecordNotFound {
  615. return nil, err
  616. }
  617. if err != nil {
  618. return nil, err
  619. }
  620. return &stock, err
  621. }
  622. func UpdatedSelfOutSatock(id int64, stock *models.XtSelfOutStock) error {
  623. err := XTWriteDB().Model(&stock).Where("id = ?", id).Updates(map[string]interface{}{"drug_name": stock.DrugName, "drug_name_id": stock.DrugNameId, "drug_spec": stock.DrugSpec, "outstore_number": stock.OutstoreNumber, "admin_user_id": stock.AdminUserId, "storck_time": stock.StorckTime, "patient_id": stock.PatientId, "stock_out_number": stock.StockOutNumber, "exit_mode": stock.ExitMode, "medic_id": stock.MedicId, "updated_time": time.Now().Unix()}).Error
  624. return err
  625. }
  626. func GetSelfStockQuery(typename int64, keywords string, startime int64, endtime int64, orgid int64, limit int64, page int64) (selfoutstock []*models.XtSelfOutStockOne, total int64, err error) {
  627. offset := (page - 1) * limit
  628. db := XTReadDB().Table("xt_self_stock as x").Where("x.status = 1")
  629. likeKey := "%" + keywords + "%"
  630. if len(keywords) > 0 {
  631. db = db.Where("x.drug_name like ? ", likeKey)
  632. }
  633. if startime > 0 {
  634. db = db.Where("x.storck_time >=?", startime)
  635. }
  636. if endtime > 0 {
  637. db = db.Where("x.storck_time<=?", endtime)
  638. }
  639. if orgid > 0 {
  640. db = db.Where("x.user_org_id = ?", orgid)
  641. }
  642. if typename > 0 {
  643. err = db.Select("x.drug_name,x.drug_name_id,x.drug_spec,Sum(store_number) as count,b.drug_type").Joins("left join xt_base_drug as b on b.id = x.drug_name_id and b.org_id = ? and b.status =1 ", orgid).Where("b.drug_type = ?", typename).Group("x.drug_name_id").Count(&total).Offset(offset).Limit(limit).Scan(&selfoutstock).Error
  644. } else {
  645. err = db.Select("x.drug_name,x.drug_name_id,x.drug_spec,Sum(store_number) as count,b.drug_type").Joins("left join xt_base_drug as b on b.id = x.drug_name_id and b.org_id = ? and b.status =1", orgid).Group("x.drug_name_id").Count(&total).Offset(offset).Limit(limit).Scan(&selfoutstock).Error
  646. }
  647. return selfoutstock, total, err
  648. }
  649. func GetSelfOutStockQuery(startTime int64, endTime int64, orgid int64) (selfoutstock []*models.XtSelfOutStockOne, err error) {
  650. db := XTReadDB().Table("xt_self_out_stock as x").Where("x.status = 1")
  651. if startTime > 0 {
  652. db = db.Where("x.storck_time >?", startTime)
  653. }
  654. if endTime > 0 {
  655. db = db.Where("x.storck_time<=?", endTime)
  656. }
  657. if orgid > 0 {
  658. db = db.Where("x.user_org_id = ?", orgid)
  659. }
  660. err = db.Select("x.drug_name_id,Sum(x.outstore_number) as count").Group("x.drug_name").Scan(&selfoutstock).Error
  661. return selfoutstock, err
  662. }
  663. func GetLastDrugWarehouseOutInfo(drugid int64, warehouseOutId int64, orgid int64) (models.XtDrugWarehouseOutInfo, error) {
  664. info := models.XtDrugWarehouseOutInfo{}
  665. err = XTReadDB().Model(&info).Where("drug_id = ? and warehouse_out_id = ? and org_id = ? and status = 1", drugid, warehouseOutId, orgid).Last(&info).Error
  666. return info, err
  667. }
  668. func PostSearchDrugWarehouseList(keyword string, orgid int64, storehouse_id int64) (info []*models.BloodDrugWarehouseInfo, err error) {
  669. db := XTReadDB().Table("xt_drug_warehouse_info as x").Where("x.status = 1 and x.is_check = 1")
  670. table := XTReadDB().Table("xt_base_drug as t").Where("t.status")
  671. fmt.Println(table)
  672. likeKey := "%" + keyword + "%"
  673. if orgid > 0 {
  674. db = db.Where("x.org_id = ?", orgid)
  675. }
  676. if storehouse_id > 0 {
  677. db = db.Where("x.storehouse_id = ?", storehouse_id)
  678. }
  679. err = db.Group("x.drug_id").Select("x.id,x.warehousing_id,x.drug_id,t.number,x.product_date,x.expiry_date,x.warehousing_count,x.price,x.total_price,x.dealer,x.remark,x.warehousing_order,x.warehouseing_unit,x.stock_max_number,x.stock_min_number,x.batch_number,x.storehouse_id,t.drug_origin_place,t.drug_name,t.min_unit,x.manufacturer,t.retail_price,t.max_unit,t.min_number,t.dose,t.dose_unit,t.last_price,t.drug_origin_place").Joins("left join xt_base_drug as t on t.id = x.drug_id").Where("t.drug_name like ? and t.org_id = ?", likeKey, orgid).Order("x.ctime desc").Scan(&info).Error
  680. return info, err
  681. }
  682. func CreateDrugPrice(price models.XtDrugAdjustPrice) error {
  683. err := XTWriteDB().Create(&price).Error
  684. return err
  685. }
  686. func GetDrugPriceList(startime int64, endtime int64, orgId int64, keyword string, limit int64, page int64) (adjust []*models.VmDrugAdjustPrice, total int64, err error) {
  687. likeKey := "%" + keyword + "%"
  688. offset := (page - 1) * limit
  689. db := XTReadDB().Table("xt_drug_adjust_price as x").Where("x.status = 1")
  690. table := XTReadDB().Table("xt_base_drug as t").Where("t.status = 1")
  691. tab := UserReadDB().Table("sgj_user_admin_role as r").Where("r.status = 1")
  692. fmt.Println(table, tab)
  693. if len(keyword) > 0 {
  694. db = db.Where("x.warehousing_order = ? or r.user_name like ?", keyword, likeKey)
  695. }
  696. if orgId > 0 {
  697. db = db.Where("x.user_org_id = ?", orgId)
  698. }
  699. if startime > 0 {
  700. db = db.Where("x.ctime>=?", startime)
  701. }
  702. if endtime > 0 {
  703. db = db.Where("x.ctime<=?", endtime)
  704. }
  705. err = db.Group("x.id").Select("x.id,x.drug_name,x.specification_name,x.warehousing_unit,x.count,x.last_price,x.retail_price,x.new_price,x.manufacturer,x.dealer,x.remark,x.drug_id,x.warehousing_order,x.start_time,x.creater,x.checker,x.checker_status,x.checker_time,x.number").Joins("left join sgj_users.sgj_user_admin_role as r on r.admin_user_id = x.creater").Joins("left join xt_base_drug as t on t.id =x.drug_id").Count(&total).Offset(offset).Limit(limit).Scan(&adjust).Error
  706. return adjust, total, err
  707. }
  708. func UpdateDrugAdjuestPrice(ids []string, info models.XtDrugAdjustPrice) error {
  709. err := XTWriteDB().Model(&info).Where("id in(?)", ids).Updates(map[string]interface{}{"checker": info.Checker, "checker_status": info.CheckerStatus, "checker_time": info.CheckerTime}).Error
  710. return err
  711. }
  712. func GetDrugAdjuestPrice(ids []string) (info []*models.XtDrugAdjustPrice, err error) {
  713. err = XTReadDB().Model(&info).Where("id in(?) and status = 1", ids).Find(&info).Error
  714. return info, err
  715. }
  716. func GetDrugDamage(ids []string) (info []*models.XtDrugDamage, err error) {
  717. err = XTReadDB().Model(&info).Where("id in(?) and status = 1", ids).Find(&info).Error
  718. return info, err
  719. }
  720. func CreateDrugDamage(damage models.XtDrugDamage) error {
  721. err := XTWriteDB().Create(&damage).Error
  722. return err
  723. }
  724. func GetDrugDamageList(startime int64, endtime int64, orgId int64, keyword string, limit int64, page int64, storehouse_id int64) (adjust []*models.VmDrugInventory, total int64, err error) {
  725. likeKey := "%" + keyword + "%"
  726. offset := (page - 1) * limit
  727. db := XTReadDB().Table("xt_drug_inventory as x").Where("x.status = 1 and type = 4")
  728. table := XTReadDB().Table("xt_base_drug as t").Where("t.status = 1")
  729. tab := UserReadDB().Table("sgj_user_admin_role as r").Where("r.status = 1")
  730. fmt.Println(table, tab)
  731. //if len(keyword) > 0 {
  732. // db = db.Where("x.warehousing_order = ? or r.user_name like ?", keyword, likeKey)
  733. //}
  734. if len(keyword) > 0 {
  735. db = db.Where("x.drug_name like ?", likeKey)
  736. }
  737. if orgId > 0 {
  738. db = db.Where("x.user_org_id = ?", orgId)
  739. }
  740. if startime > 0 {
  741. db = db.Where("x.ctime >=?", startime)
  742. }
  743. if endtime > 0 {
  744. db = db.Where("x.ctime <=?", endtime)
  745. }
  746. if storehouse_id > 0 {
  747. db = db.Where("x.storehouse_id = ?", storehouse_id)
  748. }
  749. err = db.Group("x.drug_id").Select("x.id,x.drug_name,x.specification_name,x.warehousing_unit,x.count,x.last_price,x.retail_price,x.new_price,x.manufacturer,x.dealer,x.remark,x.drug_id,x.warehousing_order,x.start_time,x.creater,x.checker,x.checker_status,x.checker_time,x.number,x.drug_origin_place,x.warehouse_info_id,x.batch_number,x.stock_max_number,x.stock_min_number,x.storehouse_id,t.min_number,t.max_unit,t.min_unit,t.min_price").Joins("left join sgj_users.sgj_user_admin_role as r on r.admin_user_id = x.creater").Joins("left join xt_base_drug as t on t.id =x.drug_id").Count(&total).Offset(offset).Limit(limit).Scan(&adjust).Error
  750. return adjust, total, err
  751. }
  752. func GetDrugDamageByOrgId(orgid int64) (list []*models.XtDrugInventory, err error) {
  753. err = XTReadDB().Model(&list).Where("user_org_id = ? and type = 4 and status = 1", orgid).Find(&list).Error
  754. return list, err
  755. }
  756. func UpdateDrugDamage(ids []string, damage models.XtDrugDamage) error {
  757. err := XTWriteDB().Model(&damage).Where("id in(?)", ids).Updates(map[string]interface{}{"checker": damage.Checker, "checker_status": damage.CheckerStatus, "checker_time": damage.CheckerTime}).Error
  758. return err
  759. }
  760. func GetDrugModifyPrice(id int64) (models.XtDrugAdjustPrice, error) {
  761. adjuest := models.XtDrugAdjustPrice{}
  762. err := XTReadDB().Model(&adjuest).Where("id=? and status = 1", id).Find(&adjuest).Error
  763. return adjuest, err
  764. }
  765. func ModifyDrugPrice(id int64, adjust models.XtDrugAdjustPrice) error {
  766. err := XTWriteDB().Model(&adjust).Where("id=? and status = 1", id).Updates(map[string]interface{}{"drug_name": adjust.DrugName, "retail_price": adjust.RetailPrice, "new_price": adjust.NewPrice, "count": adjust.Count, "remark": adjust.Remark, "specification_name": adjust.SpecificationName, "warehousing_unit": adjust.WarehousingUnit, "manufacturer": adjust.Manufacturer, "number": adjust.Number, "drug_id": adjust.DrugId}).Error
  767. return err
  768. }
  769. func GetModifyPricePrint(ids []string) (info []*models.XtDrugAdjustPrice, err error) {
  770. err = XTReadDB().Model(&info).Where("id in(?) and status = 1", ids).Find(&info).Error
  771. return info, err
  772. }
  773. func GetDrugDamageDetail(id int64) (models.XtDrugDamage, error) {
  774. damage := models.XtDrugDamage{}
  775. err := XTReadDB().Model(&damage).Where("id=? and status = 1", id).Find(&damage).Error
  776. return damage, err
  777. }
  778. func ModifyDrugDamage(id int64, damage models.XtDrugDamage) error {
  779. err := XTWriteDB().Model(&damage).Where("id=? and status = 1", id).Updates(map[string]interface{}{"drug_name": damage.DrugName, "warehousing_unit": damage.WarehousingUnit, "count": damage.Count, "last_price": damage.LastPrice, "retail_price": damage.RetailPrice, "new_price": damage.NewPrice, "manufacturer": damage.Manufacturer, "remark": damage.Remark, "number": damage.Number, "drug_id": damage.DrugId, "stock_max_number": damage.StockMaxNumber, "stock_min_number": damage.StockMinNumber, "warehousing_info_id": damage.WarehousingInfoId, "drug_origin_place": damage.DrugOriginPlace}).Error
  780. return err
  781. }
  782. func DeleteDrugDamage(id int64) error {
  783. damage := models.XtDrugDamage{}
  784. err := XTWriteDB().Model(&damage).Where("id=? and status = 1").Updates(map[string]interface{}{"status": 0}).Error
  785. return err
  786. }
  787. func GetDrugDamagePrint(ids []string) (damage []*models.XtDrugDamage, err error) {
  788. err = XTReadDB().Model(&damage).Where("id in(?) and status = 1", ids).Find(&damage).Error
  789. return damage, err
  790. }
  791. func GetWarehoseInfoById(id int64, storehouse_id int64) (info []*models.XtDrugWarehouseInfo, err error) {
  792. err = XTReadDB().Model(&info).Where("drug_id=? and status = 1 and storehouse_id = ? and is_check = 1", id, storehouse_id).Preload("XtBaseDrug", "status= 1").Find(&info).Error
  793. return info, err
  794. }
  795. func CreateDrugInventory(inventory models.XtDrugInventory) error {
  796. err := XTWriteDB().Create(&inventory).Error
  797. return err
  798. }
  799. func GetDrugInventoryList(keyword string, page int64, limit int64, orgid int64, startime int64, endtime int64) (list []*models.VmDrugInventory, total int64, err error) {
  800. fmt.Println("startdate", limit, page)
  801. likeKey := "%" + keyword + "%"
  802. offset := (page - 1) * limit
  803. db := XTReadDB().Table("xt_drug_inventory as x").Where("x.status = 1")
  804. table := XTReadDB().Table("xt_base_drug as t").Where("t.status = 1")
  805. tab := UserReadDB().Table("sgj_user_admin_role as r").Where("r.status = 1")
  806. fmt.Println(table, tab)
  807. if len(keyword) > 0 {
  808. db = db.Where("x.warehousing_order = ? or r.user_name like ?", keyword, likeKey)
  809. }
  810. if orgid > 0 {
  811. db = db.Where("x.user_org_id = ?", orgid)
  812. }
  813. if startime > 0 {
  814. db = db.Where("x.start_time >=?", startime)
  815. }
  816. if endtime > 0 {
  817. db = db.Where("x.start_time<=?", endtime)
  818. }
  819. err = db.Select("x.id,x.drug_name,x.specification_name,x.warehousing_unit,x.count,x.last_price,x.retail_price,x.manufacturer,x.dealer,x.remark,x.drug_id,x.warehousing_order,x.number,x.batch_number,x.start_time,x.creater,x.checker,x.checker_status,x.checker_time,x.min_count,x.min_unit,t.dose,t.dose_unit,t.max_unit,t.min_unit").Joins("left join sgj_users.sgj_user_admin_role as r on r.id = x.creater").Joins("left join xt_base_drug as t on t.id =x.drug_id").Count(&total).Order("x.id desc").Offset(offset).Limit(limit).Order("x.ctime desc").Scan(&list).Error
  820. return list, total, err
  821. }
  822. func UpdateDrugInventory(ids []string, inventory models.XtDrugInventory) error {
  823. err := XTWriteDB().Model(&inventory).Where("id in(?) and status = 1", ids).Updates(map[string]interface{}{"checker": inventory.Checker, "checker_status": inventory.CheckerStatus, "checker_time": inventory.CheckerTime}).Error
  824. return err
  825. }
  826. func GetDrugInventoryListByIds(ids []string) (inventory []*models.XtDrugInventory, err error) {
  827. err = XTReadDB().Model(&inventory).Where("id in(?) and status = 1", ids).Find(&inventory).Error
  828. return inventory, err
  829. }
  830. func GetDrugDetailByDrugId(drug_id int64) (models.XtBaseDrug, error) {
  831. drug := models.XtBaseDrug{}
  832. err := XTReadDB().Model(&drug).Where("id = ? and status = 1", drug_id).Find(&drug).Error
  833. return drug, err
  834. }
  835. func GetDrugWareInfoById(id int64) (models.XtDrugWarehouseInfo, error) {
  836. info := models.XtDrugWarehouseInfo{}
  837. err := XTReadDB().Model(&info).Where("id = ? and status = 1", id).Find(&info).Error
  838. return info, err
  839. }
  840. func GetDrugWareInfoByIdTwo(id int64) (info []*models.XtDrugWarehouseInfo, err error) {
  841. err = XTReadDB().Model(&info).Where("(id = ? or warehousing_info_id = ?) and status = 1", id, id).Find(&info).Error
  842. return info, err
  843. }
  844. func GetLastDrugWarehouse(orgid int64) (models.DrugWarehouse, error) {
  845. info := models.DrugWarehouse{}
  846. err := XTReadDB().Model(&info).Where("org_id=? and status = 1", orgid).Last(&info).Error
  847. return info, err
  848. }
  849. func GetLastDrugWarehouseOut(orgid int64) (models.DrugWarehouseOut, error) {
  850. info := models.DrugWarehouseOut{}
  851. err := XTReadDB().Model(&info).Where("org_id=? and status = 1", orgid).Last(&info).Error
  852. return info, err
  853. }
  854. func GetLastDrugWarehouseInfSix(drugid int64) (models.XtDrugWarehouseInfo, error) {
  855. info := models.XtDrugWarehouseInfo{}
  856. err := XTReadDB().Model(&info).Where("drug_id=? and status = 1", drugid).Last(&info).Error
  857. return info, err
  858. }
  859. func GetFirstDrugWarehouseInfo(drugid int64) (models.XtDrugWarehouseInfo, error) {
  860. info := models.XtDrugWarehouseInfo{}
  861. err := XTReadDB().Model(&info).Where("id=? and status = 1", drugid).First(&info).Error
  862. return info, err
  863. }
  864. func GetDrugInventoryDetail(id int64) (models.XtDrugInventory, error) {
  865. inventory := models.XtDrugInventory{}
  866. err := XTReadDB().Model(&inventory).Where("id = ? and status = 1", id).Find(&inventory).Error
  867. return inventory, err
  868. }
  869. func ModifyDrugInventory(id int64, info models.XtDrugInventory) error {
  870. err := XTWriteDB().Model(&info).Where("id=? and status = 1", id).Updates(map[string]interface{}{"drug_name": info.DrugName, "specification_name": info.SpecificationName, "warehousing_unit": info.WarehousingUnit, "count": info.Count, "last_price": info.LastPrice, "manufacturer": info.Manufacturer, "remark": info.Remark, "drug_id": info.DrugId, "warehousing_order": info.WarehousingOrder, "number": info.Number, "total": info.Number, "drug_origin_place": info.DrugOriginPlace, "stock_max_number": info.StockMaxNumber, "stock_min_number": info.StockMinNumber, "warehouse_info_id": info.WarehouseInfoId, "min_count": info.MinCount, "min_unit": info.MinUnit}).Error
  871. return err
  872. }
  873. func DeleteDrugInventory(id int64) error {
  874. inventory := models.XtDrugInventory{}
  875. err := XTWriteDB().Model(&inventory).Where("id = ? and status = 1", id).Updates(map[string]interface{}{"status": 0}).Error
  876. return err
  877. }
  878. func GetDrugInventoryPrintList(ids []string) (info []*models.XtDrugInventory, err error) {
  879. err = XTReadDB().Where("id in(?) and status = 1", ids).Find(&info).Error
  880. return info, err
  881. }
  882. func GetDrugInventoryDetailList(keyword string, page int64, limit int64, orgid int64, storehouse_id int64) (list []*models.VmDrugInventory, total int64, err error) {
  883. likeKey := "%" + keyword + "%"
  884. offset := (page - 1) * limit
  885. db := XTReadDB().Table("xt_drug_inventory as x").Where("x.status = 1")
  886. table := XTReadDB().Table("xt_base_drug as t").Where("t.status = 1")
  887. tab := UserReadDB().Table("sgj_user_admin_role as r").Where("r.status = 1")
  888. fmt.Println(table, tab)
  889. if len(keyword) > 0 {
  890. db = db.Where("x.warehousing_order = ? or r.user_name like ? or t.drug_name like ?", keyword, likeKey, likeKey)
  891. }
  892. if orgid > 0 {
  893. db = db.Where("x.user_org_id = ?", orgid)
  894. }
  895. if storehouse_id > 0 {
  896. db = db.Where("x.storehouse_id = ?", storehouse_id)
  897. }
  898. err = db.Select("x.id,x.drug_name,x.specification_name,x.warehousing_unit,x.count,x.last_price,x.retail_price,x.manufacturer,x.dealer,x.remark,x.drug_id,x.warehousing_order,x.number,x.batch_number,x.start_time,x.creater,x.checker,x.checker_status,x.checker_time,x.total,x.drug_origin_place,x.expiry_date,x.product_date,x.min_count,x.storehouse_id,x.warehouse_info_id,t.dose,t.dose_unit,t.max_unit,x.min_unit,x.stock_max_number,x.stock_min_number,x.last_stock_max_number,x.last_stock_min_number,x.inventory_type,t.min_number,t.retail_price").Joins("left join sgj_users.sgj_user_admin_role as r on r.id = x.creater").Joins("left join xt_base_drug as t on t.id =x.drug_id").Count(&total).Offset(offset).Limit(limit).Scan(&list).Error
  899. return list, total, err
  900. }
  901. func GetDrugInventoryDetailListTwo(keyword string, page int64, limit int64, orgid int64, storehouse_id int64) (list []*models.XtDrugInventory, total int64, err error) {
  902. db := XTReadDB().Model(&list).Where("status = 1")
  903. if orgid > 0 {
  904. db = db.Where("user_org_id = ?", orgid)
  905. }
  906. if storehouse_id > 0 {
  907. db = db.Where("storehouse_id = ?", storehouse_id)
  908. }
  909. offset := (page - 1) * limit
  910. err = db.Preload("BaseDrugLib", "org_id = ? and status = 1", orgid).Preload("DrugWarehouseInfo", "org_id = ? and status = 1", orgid).Count(&total).Offset(offset).Limit(limit).Find(&list).Error
  911. return list, total, err
  912. }
  913. func UpdateDrugProofInventory(id int64, inventory *models.XtDrugInventory) error {
  914. err := XTWriteDB().Model(&inventory).Where("id=? and status = 1", id).Updates(map[string]interface{}{"warehouse_info_id": inventory.WarehouseInfoId, "proof_count": inventory.ProofCount, "warehousing_unit": inventory.WarehousingUnit, "remark": inventory.Remark}).Error
  915. return err
  916. }
  917. func UpdateDrugWarehouseInfoById(id int64, inventory *models.XtDrugWarehouseInfo) error {
  918. err := XTWriteDB().Model(&inventory).Where("id = ?", id).Updates(map[string]interface{}{"stock_max_number": inventory.StockMaxNumber}).Error
  919. return err
  920. }
  921. func GetDrugWarehouseInfoTotal(id int64) (list []*models.XtDrugWarehouseInfo, err error) {
  922. err = XTReadDB().Where("id = ? or warehousing_info_id = ? and status = 1", id, id).Preload("XtBaseDrug", "status = 1").Find(&list).Error
  923. return list, err
  924. }
  925. func CreateDrugWarehouseInfo(info models.DrugWarehouseInfo) error {
  926. err := XTWriteDB().Create(&info).Error
  927. return err
  928. }
  929. func CreateDrugWarehouseOutInfo(info models.DrugWarehouseOutInfo) error {
  930. err := XTWriteDB().Create(&info).Error
  931. return err
  932. }
  933. func GetDamageByDrugId(drugid int64, warhousingorder string, drugtype int64) (drug []*models.VmXtDrugInventory, err error) {
  934. db := XTReadDB().Table("xt_drug_inventory").Where("status = 1")
  935. if drugid > 0 {
  936. db = db.Where("drug_id = ?", drugid)
  937. }
  938. if len(warhousingorder) > 0 {
  939. db = db.Where("warehousing_order = ?", warhousingorder)
  940. }
  941. if drugtype > 0 {
  942. db = db.Where("type = ?", drugtype)
  943. }
  944. if drugtype == 0 {
  945. db = db.Where("type = 4")
  946. }
  947. err = db.Preload("XtBaseDrug", "status = 1").Find(&drug).Error
  948. return drug, err
  949. }
  950. func GetInventoryModeList(orgid int64) (info []*models.PatientDrugWarehouseInfo, err error) {
  951. db := XTReadDB().Table("xt_drug_warehouse_info as x").Where("x.status = 1")
  952. table := XTReadDB().Table("xt_base_drug as t").Where("t.status = 1")
  953. fmt.Println(table)
  954. if orgid > 0 {
  955. db = db.Where("x.org_id = ?", orgid)
  956. }
  957. err = db.Select("x.drug_id,x.number,x.product_date,x.expiry_date,x.stock_max_number,x.stock_min_number,x.batch_number,t.drug_name,t.max_unit,t.min_unit,t.min_number,t.dose,t.dose_unit,x.manufacturer,x.dealer").Joins("left join xt_base_drug as t on t.id = x.drug_id").Group("x.drug_id,x.batch_number").Scan(&info).Error
  958. return info, err
  959. }
  960. func GetManufacturerListByKeyword(orgid int64, keyword string) (list []*models.BloodManufacturer, err error) {
  961. likeKey := "%" + keyword + "%"
  962. db := XTReadDB().Model(&list).Where("status = 1")
  963. if orgid > 0 {
  964. db = db.Where("org_id = ?", orgid)
  965. }
  966. if len(keyword) > 0 {
  967. db = db.Where("manufacturer_name like ?", likeKey)
  968. }
  969. err = db.Find(&list).Error
  970. return list, err
  971. }
  972. func GetGoodNameByword(orgid int64, keyword string) (list []*models.GoodInfo, err error) {
  973. likeKey := "%" + keyword + "%"
  974. db := XTReadDB().Model(&list).Where("status = 1")
  975. if orgid > 0 {
  976. db = db.Where("org_id = ?", orgid)
  977. }
  978. if len(keyword) > 0 {
  979. db = db.Where("good_name like ?", likeKey)
  980. }
  981. err = db.Find(&list).Error
  982. return list, err
  983. }
  984. func GetDrugNameByword(orgid int64, keyword string) (list []*models.XtBaseDrug, err error) {
  985. likeKey := "%" + keyword + "%"
  986. db := XTReadDB().Model(&list).Where("status = 1")
  987. if orgid > 0 {
  988. db = db.Where("org_id = ?", orgid)
  989. }
  990. if len(keyword) > 0 {
  991. db = db.Where("drug_name like ?", likeKey)
  992. }
  993. err = db.Find(&list).Error
  994. return list, err
  995. }
  996. func GetGoodWarehouseInfoByOrgId(orgid int64, storehouse_id int64) (info []*models.WarehousingInfo, err error) {
  997. db := XTReadDB().Model(&info).Where("is_check =1 and status =1")
  998. if orgid > 0 {
  999. db = db.Where("org_id = ?", orgid)
  1000. }
  1001. if storehouse_id > 0 {
  1002. db = db.Where("storehouse_id = ?", storehouse_id)
  1003. }
  1004. err = db.Group("good_id").Find(&info).Error
  1005. return info, err
  1006. }
  1007. func GetGoodWarehouseInfoByOrgIdTwo(orgid int64) (info []*models.GoodQueryNewWarehousingInfo, err error) {
  1008. db := XTReadDB().Model(&info).Where("is_check =1 and status =1")
  1009. if orgid > 0 {
  1010. db = db.Where("org_id = ?", orgid)
  1011. }
  1012. err = db.Group("good_id").Find(&info).Error
  1013. return info, err
  1014. }
  1015. func GetGoodNewQuery(orgId int64, storehouse_id int64, good_type int64, keyword string, page int64, limit int64, ids []int64, goodIds []int64, startime int64, endtime int64) (good []*models.NewGoodInformation, total int64, err error) {
  1016. offset := (page - 1) * limit
  1017. likeKey := "%" + keyword + "%"
  1018. db := XTReadDB().Table("xt_good_information as x").Where("x.status = 1 and x.total_count > 0 and x.org_id =?", orgId)
  1019. if good_type == 2 {
  1020. db = db.Where(" x.total_count<=x.stock_warn_count")
  1021. }
  1022. if len(goodIds) > 0 {
  1023. db = db.Where("id in(?)", goodIds)
  1024. }
  1025. if len(keyword) > 0 {
  1026. db = db.Where("good_name like ? or manufacturer in(?)", likeKey, ids)
  1027. }
  1028. err = db.Count(&total).Offset(offset).Limit(limit).Order("x.ctime desc").Find(&good).Error
  1029. return good, total, err
  1030. }
  1031. func FindGoodWarehouseInfoGroup(good_id int64, orgid int64, storhouse_id int64, startime int64, endtime int64) (info []*models.WarehousingInfo, err error) {
  1032. db := XTReadDB().Model(&info).Where("status = 1 and is_check = 1")
  1033. if good_id > 0 {
  1034. db = db.Where("good_id = ?", good_id)
  1035. }
  1036. if orgid > 0 {
  1037. db = db.Where("org_id = ?", orgid)
  1038. }
  1039. if storhouse_id > 0 {
  1040. db = db.Where("storehouse_id = ?", storhouse_id)
  1041. }
  1042. if startime > 0 {
  1043. db = db.Where("ctime >=?", startime)
  1044. }
  1045. if endtime > 0 {
  1046. db = db.Where("ctime<=?", endtime)
  1047. }
  1048. db.Group("storehouse_id").Find(&info)
  1049. return info, err
  1050. }
  1051. func FindGoodWarehouseInfo(good_id int64, orgid int64, storhouse_id int64, startime int64, endtime int64) (info []*models.WarehousingInfo, err error) {
  1052. db := XTReadDB().Model(&info).Where("status = 1 and is_check = 1")
  1053. if good_id > 0 {
  1054. db = db.Where("good_id = ?", good_id)
  1055. }
  1056. if orgid > 0 {
  1057. db = db.Where("org_id = ?", orgid)
  1058. }
  1059. if storhouse_id > 0 {
  1060. db = db.Where("storehouse_id = ?", storhouse_id)
  1061. }
  1062. if startime > 0 {
  1063. db = db.Where("ctime >=?", startime)
  1064. }
  1065. if endtime > 0 {
  1066. db = db.Where("ctime<=?", endtime)
  1067. }
  1068. db.Find(&info)
  1069. return info, err
  1070. }
  1071. func FindGoodWarehouseOutInfo(good_id int64, orgid int64, storhouse_id int64, startime int64, endtime int64) (out []*models.WarehouseOutInfo, err error) {
  1072. db := XTReadDB().Model(&out).Where("status = 1 and is_check = 1")
  1073. if good_id > 0 {
  1074. db = db.Where("good_id = ?", good_id)
  1075. }
  1076. if orgid > 0 {
  1077. db = db.Where("org_id = ?", orgid)
  1078. }
  1079. if storhouse_id > 0 {
  1080. db = db.Where("storehouse_id = ?", storhouse_id)
  1081. }
  1082. if startime > 0 {
  1083. db = db.Where("ctime>=?", startime)
  1084. }
  1085. if endtime > 0 {
  1086. db = db.Where("ctime<=?", endtime)
  1087. }
  1088. err = db.Find(&out).Error
  1089. return out, err
  1090. }
  1091. func FindCancelStockInfo(good_id int64, orgid int64, storhouse_id int64, startime int64, endtime int64) (info []*models.CancelStockInfo, err error) {
  1092. db := XTReadDB().Model(&info).Where("status = 1 and is_check = 1")
  1093. if good_id > 0 {
  1094. db = db.Where("good_id = ?", good_id)
  1095. }
  1096. if orgid > 0 {
  1097. db = db.Where("org_id = ?", orgid)
  1098. }
  1099. if storhouse_id > 0 {
  1100. db = db.Where("storehouse_id = ?", storhouse_id)
  1101. }
  1102. if startime > 0 {
  1103. db = db.Where("ctime>=?", startime)
  1104. }
  1105. if endtime > 0 {
  1106. db = db.Where("ctime<=?", endtime)
  1107. }
  1108. err = db.Find(&info).Error
  1109. return info, err
  1110. }
  1111. func FindGoodStockOutFlow(good_id int64, user_org_id int64, storhouse_id int64, startime int64, endtime int64) (info []*models.VmStockFlow, err error) {
  1112. db := XTReadDB().Model(&info).Where("status = 1 and (consumable_type = 2 or consumable_type = 3)")
  1113. if good_id > 0 {
  1114. db = db.Where("good_id = ?", good_id)
  1115. }
  1116. if user_org_id > 0 {
  1117. db = db.Where("user_org_id = ?", user_org_id)
  1118. }
  1119. if storhouse_id > 0 {
  1120. db = db.Where("storehouse_id = ?", storhouse_id)
  1121. }
  1122. if startime > 0 {
  1123. db = db.Where("ctime >= ?", storhouse_id)
  1124. }
  1125. if endtime > 0 {
  1126. db = db.Where("ctime <= ?", storhouse_id)
  1127. }
  1128. err = db.Find(&info).Error
  1129. return info, err
  1130. }
  1131. func FindGoodCancelFlow(good_id int64, user_org_id int64, storhouse_id int64, startime int64, endtime int64) (info []*models.VmStockFlow, err error) {
  1132. db := XTReadDB().Model(&info).Where("status = 1 and (consumable_type = 4 or consumable_type = 7)")
  1133. if good_id > 0 {
  1134. db = db.Where("good_id = ?", good_id)
  1135. }
  1136. if user_org_id > 0 {
  1137. db = db.Where("user_org_id = ?", user_org_id)
  1138. }
  1139. if storhouse_id > 0 {
  1140. db = db.Where("storehouse_id = ?", storhouse_id)
  1141. }
  1142. if startime > 0 {
  1143. db = db.Where("ctime >= ?", storhouse_id)
  1144. }
  1145. if endtime > 0 {
  1146. db = db.Where("ctime <= ?", storhouse_id)
  1147. }
  1148. err = db.Find(&info).Error
  1149. return info, err
  1150. }
  1151. func GetGoodWarehouseOutInfoByIdList(good_id int64, limit int64, page int64, orgid int64, startime int64, endtime int64, storehouse_id int64) (info []*models.WarehouseOutInfo, total int64, err error) {
  1152. db := XTReadDB().Model(&info).Where("status = 1")
  1153. offset := (page - 1) * limit
  1154. if good_id > 0 {
  1155. db = db.Where("good_id = ?", good_id)
  1156. }
  1157. if orgid > 0 {
  1158. db = db.Where("org_id =?", orgid)
  1159. }
  1160. if startime > 0 {
  1161. db = db.Where("ctime >=?", startime)
  1162. }
  1163. if endtime > 0 {
  1164. db = db.Where("ctime<=?", endtime)
  1165. }
  1166. if storehouse_id > 0 {
  1167. db = db.Where("storehouse_id = ?", storehouse_id)
  1168. }
  1169. err = db.Count(&total).Offset(offset).Limit(limit).Preload("VmStockFlow", "status = 1 and user_org_id = ?", orgid).Preload("GoodInfo", "status = 1 and org_id = ?", orgid).Order("id desc").Find(&info).Error
  1170. return info, total, err
  1171. }
  1172. func GetStockFlushByGoodId(good_id int64, org_id int64, startime int64, endtime int64) (flushinfo []*models.XtWarehouseFlushInfo, err error) {
  1173. db := XTReadDB().Model(&models.XtWarehouseFlushInfo{}).Where("status = 1 and type = 1")
  1174. if good_id > 0 {
  1175. db = db.Where("good_id = ?", good_id)
  1176. }
  1177. if org_id > 0 {
  1178. db = db.Where("user_org_id = ?", org_id)
  1179. }
  1180. if startime > 0 {
  1181. db = db.Where("ctime >=?", startime)
  1182. }
  1183. if endtime > 0 {
  1184. db = db.Where("ctime<=?", endtime)
  1185. }
  1186. err = db.Find(&flushinfo).Error
  1187. return flushinfo, err
  1188. }
  1189. func GetGoodWarehouseOutInfoByIdListTwenty(good_id int64, limit int64, page int64, orgid int64, startime int64, endtime int64) (info []*models.WarehouseOutInfo, err error) {
  1190. db := XTReadDB().Model(&info).Where("status = 1")
  1191. if good_id > 0 {
  1192. db = db.Where("good_id = ?", good_id)
  1193. }
  1194. if orgid > 0 {
  1195. db = db.Where("org_id =?", orgid)
  1196. }
  1197. if startime > 0 {
  1198. db = db.Where("ctime >=?", startime)
  1199. }
  1200. if endtime > 0 {
  1201. db = db.Where("ctime<=?", endtime)
  1202. }
  1203. err = db.Find(&info).Error
  1204. return info, err
  1205. }
  1206. func GetGoodWarehouseInfoByList(goodid int64, orgid int64, startime int64, endtime int64) (info []*models.WarehousingInfo, err error) {
  1207. db := XTReadDB().Model(&info).Where("status= 1 and is_check = 1")
  1208. if goodid > 0 {
  1209. db = db.Where("good_id = ?", goodid)
  1210. }
  1211. if orgid > 0 {
  1212. db = db.Where("org_id = ?", orgid)
  1213. }
  1214. err = db.Find(&info).Error
  1215. return info, err
  1216. }
  1217. func GetGoodCancelStockInfoByList(goodid int64, orgid int64, startime int64, endtime int64) (info []*models.CancelStockInfo, err error) {
  1218. db := XTReadDB().Model(&info).Where("status = 1 and is_check = 1")
  1219. if goodid > 0 {
  1220. db = db.Where("good_id = ?", goodid)
  1221. }
  1222. if orgid > 0 {
  1223. db = db.Where("org_id = ?", orgid)
  1224. }
  1225. err = db.Find(&info).Error
  1226. return info, err
  1227. }
  1228. func GetGoodPatientList(orgid int64, keyword string) (patient []*models.XtPatients, err error) {
  1229. likeKey := "%" + keyword + "%"
  1230. if len(keyword) > 0 {
  1231. err = XTReadDB().Where("user_org_id = ? and status = 1 and name like ?", orgid, likeKey).Find(&patient).Error
  1232. } else {
  1233. err = XTReadDB().Where("user_org_id = ? and status = 1", orgid).Find(&patient).Error
  1234. }
  1235. return patient, err
  1236. }
  1237. func GetWarehouseOutDetailByPatientIdOne(orgid int64, patient_id int64, startime int64, endtime int64, limit int64, page int64) (info []*models.WarehouseOutInfo, total int64, err error) {
  1238. db := XTReadDB().Model(&info).Where("status = 1 and (is_sys = 1 or is_sys = 5)")
  1239. offset := (page - 1) * limit
  1240. if orgid > 0 {
  1241. db = db.Where("org_id = ?", orgid)
  1242. }
  1243. if patient_id > 0 {
  1244. db = db.Where("patient_id = ?", patient_id)
  1245. }
  1246. if startime > 0 {
  1247. db = db.Where("ctime>=?", startime)
  1248. }
  1249. if endtime > 0 {
  1250. db = db.Where("ctime<=?", endtime)
  1251. }
  1252. err = db.Group("good_id").Preload("GoodInfo", "org_id = ? and status = 1", orgid).Count(&total).Offset(offset).Limit(limit).Find(&info).Error
  1253. return info, total, err
  1254. }
  1255. func GetWarehouseOutDetailByPatientId(orgid int64, patient_id int64, startime int64, endtime int64) (info []*models.WarehouseOutInfo, err error) {
  1256. db := XTReadDB().Model(&info).Where("status = 1 and (is_sys = 1 or is_sys =5)")
  1257. if orgid > 0 {
  1258. db = db.Where("org_id = ?", orgid)
  1259. }
  1260. if patient_id > 0 {
  1261. db = db.Where("patient_id = ?", patient_id)
  1262. }
  1263. if startime > 0 {
  1264. db = db.Where("ctime>=?", startime)
  1265. }
  1266. if endtime > 0 {
  1267. db = db.Where("ctime<=?", endtime)
  1268. }
  1269. err = db.Preload("GoodInfo", "org_id = ? and status = 1", orgid).Find(&info).Error
  1270. return info, err
  1271. }
  1272. func GetGoodExpiryDateQuery(storehouse_id int64, expiry_type int64, keyword string, page int64, limit int64, orgid int64, ids []int64, goodIds []int64, startime int64, endtime int64) (info []*models.WarehousingInfo, total int64, err error) {
  1273. offset := (page - 1) * limit
  1274. db := XTReadDB().Table("xt_warehouse_info as x").Where("x.status = 1 and x.is_check = 1 and x.stock_count >0")
  1275. if storehouse_id > 0 {
  1276. db = db.Where("x.storehouse_id = ?", storehouse_id)
  1277. }
  1278. //已过期
  1279. if expiry_type == 1 {
  1280. db = db.Where("x.expiry_date < ?", startime)
  1281. }
  1282. if expiry_type > 1 {
  1283. db = db.Where("x.expiry_date > ? and x.expiry_date<=?", startime, endtime)
  1284. }
  1285. if orgid > 0 {
  1286. db = db.Where("x.org_id = ?", orgid)
  1287. }
  1288. if len(keyword) > 0 {
  1289. db = db.Where("x.manufacturer in(?) or x.good_id in(?)", ids, goodIds)
  1290. }
  1291. err = db.Count(&total).Offset(offset).Limit(limit).Preload("GoodInfo", "org_id = ? and status = 1", orgid).Find(&info).Error
  1292. return info, total, err
  1293. }
  1294. func GetGoodPurchaseStockQuery(good_type int64, keyword string, page int64, limit int64, orgid int64, ids []int64, goodIds []int64) (goodinfo []*models.GoodInfoTwenty, total int64, err error) {
  1295. db := XTReadDB().Model(&goodinfo).Where("status = 1 and total_count > 0")
  1296. offset := (page - 1) * limit
  1297. likeKey := "%" + keyword + "%"
  1298. if good_type > 0 {
  1299. db = db.Where("good_type_id = ?", good_type)
  1300. }
  1301. if orgid > 0 {
  1302. db = db.Where("org_id = ?", orgid)
  1303. }
  1304. if len(ids) > 0 {
  1305. db = db.Where("id in(?)", goodIds)
  1306. }
  1307. if len(keyword) > 0 {
  1308. db = db.Where("good_name like ? or manufacturer in(?)", likeKey, ids)
  1309. }
  1310. err = db.Count(&total).Offset(offset).Limit(limit).Order("ctime desc").Find(&goodinfo).Error
  1311. return goodinfo, total, err
  1312. }
  1313. func GetDrugWarehouseOutDetailByPatientIdOne(patient_id int64, orgid int64, startime int64, endtime int64, page int64, limit int64) (info []*models.DrugWarehouseOutInfo, total int64, err error) {
  1314. db := XTReadDB().Model(&info).Where("status = 1")
  1315. offset := (page - 1) * limit
  1316. if patient_id > 0 {
  1317. db = db.Where("patient_id = ?", patient_id)
  1318. }
  1319. if orgid > 0 {
  1320. db = db.Where("org_id = ?", orgid)
  1321. }
  1322. if startime > 0 {
  1323. db = db.Where("sys_record_time >= ?", startime)
  1324. }
  1325. if endtime > 0 {
  1326. db = db.Where("sys_record_time <= ?", endtime)
  1327. }
  1328. err = db.Group("drug_id").Count(&total).Offset(offset).Limit(limit).Preload("BaseDrugLib", "status = 1 and org_id = ?", orgid).Find(&info).Error
  1329. return
  1330. }
  1331. func GetDrugWarehouseOutDetailByPatientId(patient_id int64, orgid int64, startime int64, endtime int64) (info []*models.DrugWarehouseOutInfo, err error) {
  1332. db := XTReadDB().Model(&info).Where("status = 1")
  1333. if patient_id > 0 {
  1334. db = db.Where("patient_id = ?", patient_id)
  1335. }
  1336. if orgid > 0 {
  1337. db = db.Where("org_id = ?", orgid)
  1338. }
  1339. if startime > 0 {
  1340. db = db.Where("sys_record_time >= ?", startime)
  1341. }
  1342. if endtime > 0 {
  1343. db = db.Where("sys_record_time <= ?", endtime)
  1344. }
  1345. err = db.Preload("BaseDrugLib", "status = 1 and org_id = ?", orgid).Find(&info).Error
  1346. return
  1347. }
  1348. func GetDrugExpiryDateQuery(storehouse_id int64, expiry_type int64, keyword string, page int64, limit int64, orgid int64, ids []int64, goodIds []int64, startime int64, endtime int64) (info []*models.XtDrugWarehouseInfo, total int64, err error) {
  1349. offset := (page - 1) * limit
  1350. db := XTReadDB().Table("xt_drug_warehouse_info as x").Where("x.status = 1 and x.is_check = 1 and (x.stock_max_number>0 or x.stock_min_number >0)")
  1351. if storehouse_id > 0 {
  1352. db = db.Where("x.storehouse_id = ?", storehouse_id)
  1353. }
  1354. //已过期
  1355. if expiry_type == 1 {
  1356. db = db.Where("x.expiry_date < ?", startime)
  1357. }
  1358. if expiry_type > 1 {
  1359. db = db.Where("x.expiry_date > ? and x.expiry_date<=?", startime, endtime)
  1360. }
  1361. if orgid > 0 {
  1362. db = db.Where("x.org_id = ?", orgid)
  1363. }
  1364. if len(keyword) > 0 {
  1365. db = db.Where("x.manufacturer in(?) or x.drug_id in(?)", ids, goodIds)
  1366. }
  1367. err = db.Count(&total).Offset(offset).Limit(limit).Preload("XtBaseDrug", "org_id = ? and status = 1", orgid).Find(&info).Error
  1368. return info, total, err
  1369. }
  1370. func GetDrugPurchaseStockQuery(good_type int64, keyword string, page int64, limit int64, orgid int64, startime int64, endtime int64, ids []int64, infos []int64) (druginfo []*models.VmBaseDrugTwenty, total int64, err error) {
  1371. db := XTReadDB().Model(&druginfo).Where("status = 1")
  1372. offset := (page - 1) * limit
  1373. likeKey := "%" + keyword + "%"
  1374. if good_type > 0 {
  1375. db = db.Where("drug_type = ?", good_type)
  1376. }
  1377. if orgid > 0 {
  1378. db = db.Where("org_id = ?", orgid)
  1379. }
  1380. if len(keyword) > 0 {
  1381. db = db.Where("drug_name like ? or manufacturer in(?)", likeKey, ids)
  1382. }
  1383. if len(infos) > 0 {
  1384. db = db.Where("id in(?)", infos)
  1385. }
  1386. err = db.Count(&total).Offset(offset).Limit(limit).Order("ctime desc").Find(&druginfo).Error
  1387. return druginfo, total, err
  1388. }
  1389. func GetDrugWarehouseInfoByOrgId(orgid int64, storehouse_id int64) (info []*models.XtDrugWarehouseInfo, err error) {
  1390. db := XTReadDB().Model(&info).Where("is_check = 1 and status = 1")
  1391. if orgid > 0 {
  1392. db = db.Where("org_id = ?", orgid)
  1393. }
  1394. if storehouse_id > 0 {
  1395. db = db.Where("storehouse_id = ?", storehouse_id)
  1396. }
  1397. err = db.Group("drug_id").Find(&info).Error
  1398. return info, err
  1399. }
  1400. func GetDrugWarehouseInfoByOrgIdTwo(orgid int64) (info []*models.XtDrugWarehouseInfo, err error) {
  1401. db := XTReadDB().Model(&info).Where("is_check = 1 and status = 1")
  1402. if orgid > 0 {
  1403. db = db.Where("org_id = ?", orgid)
  1404. }
  1405. err = db.Group("drug_id").Find(&info).Error
  1406. return info, err
  1407. }
  1408. func GetDrugNewQuery(orgId int64, storehouse_id int64, good_type int64, keyword string, page int64, limit int64, ids []int64, goodIds []int64, startime int64, endtime int64) (drug []*models.VmBaseDrug, total int64, err error) {
  1409. offset := (page - 1) * limit
  1410. likeKey := "%" + keyword + "%"
  1411. db := XTReadDB().Table("xt_base_drug as x").Where("x.status = 1")
  1412. if good_type == 2 {
  1413. db = db.Where("x.total_count<=x.drug_stock_limit")
  1414. }
  1415. if storehouse_id > 0 {
  1416. db = db.Preload("DrugWarehouseInfo", "org_id = ? and status = 1 and storehouse_id = ? and is_check = 1", orgId, storehouse_id)
  1417. } else {
  1418. db = db.Preload("DrugWarehouseInfo", "org_id = ? and status = 1 and is_check = 1", orgId)
  1419. }
  1420. if len(goodIds) > 0 {
  1421. db = db.Where("id in(?)", goodIds)
  1422. }
  1423. if len(keyword) > 0 {
  1424. db = db.Where("drug_name like ? or manufacturer in(?)", likeKey, ids)
  1425. }
  1426. if orgId > 0 {
  1427. db = db.Where("x.org_id = ?", orgId)
  1428. }
  1429. err = db.Count(&total).Offset(offset).Limit(limit).Preload("DrugWarehouse", func(db *gorm.DB) *gorm.DB {
  1430. if startime > 0 {
  1431. db = db.Where("ctime>=?", startime)
  1432. }
  1433. if endtime > 0 {
  1434. db = db.Where("ctime<=?", endtime)
  1435. }
  1436. if storehouse_id > 0 {
  1437. db = db.Where("storehouse_id = ?", storehouse_id)
  1438. }
  1439. return db.Where("status = 1").Group("drug_id,storehouse_id")
  1440. }).Preload("DrugCancelStockInfo", func(db *gorm.DB) *gorm.DB {
  1441. if startime > 0 {
  1442. db = db.Where("ctime>=?", startime)
  1443. }
  1444. if endtime > 0 {
  1445. db = db.Where("ctime<=?", endtime)
  1446. }
  1447. return db.Where("status = 1")
  1448. }).Preload("DrugWarehouseOutInfo", func(db *gorm.DB) *gorm.DB {
  1449. if startime > 0 {
  1450. db = db.Where("ctime>=?", startime)
  1451. }
  1452. if endtime > 0 {
  1453. db = db.Where("ctime<=?", endtime)
  1454. }
  1455. return db.Where("status = 1")
  1456. }).Preload("DrugFlowWarehouseInfo", func(db *gorm.DB) *gorm.DB {
  1457. if startime > 0 {
  1458. db = db.Where("ctime>=?", startime)
  1459. }
  1460. if endtime > 0 {
  1461. db = db.Where("ctime<=?", endtime)
  1462. }
  1463. if storehouse_id > 0 {
  1464. db = db.Where("storehouse_id = ?", storehouse_id)
  1465. }
  1466. return db.Where("status = 1 and (consumable_type = 2 or consumable_type = 3) and user_org_id = ?", orgId)
  1467. }).Preload("DrugActFlowWarehouseInfo", func(db *gorm.DB) *gorm.DB {
  1468. if startime > 0 {
  1469. db = db.Where("ctime>=?", startime)
  1470. }
  1471. if endtime > 0 {
  1472. db = db.Where("ctime<=?", endtime)
  1473. }
  1474. if storehouse_id > 0 {
  1475. db = db.Where("storehouse_id = ?", storehouse_id)
  1476. }
  1477. return db.Where("status = 1 and (consumable_type = 2 or consumable_type = 3) and user_org_id = ?", orgId)
  1478. }).Order("x.ctime desc").Find(&drug).Error
  1479. return drug, total, err
  1480. }
  1481. func GetDrugStockCountList(orgId int64, storehouse_id int64, good_type int64, keyword string, page int64, limit int64, ids []int64, goodIds []int64, startime int64, endtime int64) (drug []*models.NewBaseDrugOne, total int64, err error) {
  1482. offset := (page - 1) * limit
  1483. likeKey := "%" + keyword + "%"
  1484. db := XTReadDB().Table("xt_base_drug as x").Where("x.status = 1 AND find_in_set('停用',x.drug_status) = 0")
  1485. if good_type == 2 {
  1486. db = db.Where("x.total_count<=x.drug_stock_limit")
  1487. }
  1488. if good_type == 3 {
  1489. db = db.Where("x.sum_count = 0")
  1490. }
  1491. if good_type == 4 {
  1492. db = db.Where("x.sum_count > 0")
  1493. }
  1494. if storehouse_id > 0 {
  1495. db = db.Preload("DrugWarehouseInfo", "org_id = ? and status = 1 and storehouse_id = ? and is_check = 1", orgId, storehouse_id)
  1496. } else {
  1497. db = db.Preload("DrugWarehouseInfo", "org_id = ? and status = 1 and is_check = 1", orgId)
  1498. }
  1499. //if len(goodIds) > 0 {
  1500. // db = db.Where("id in(?)", goodIds)
  1501. //}
  1502. if len(keyword) > 0 {
  1503. db = db.Where("drug_name like ? or manufacturer in(?)", likeKey, ids)
  1504. }
  1505. if orgId > 0 {
  1506. db = db.Where("x.org_id = ?", orgId)
  1507. }
  1508. err = db.Preload("XtDrugStockCount", func(db *gorm.DB) *gorm.DB {
  1509. if storehouse_id > 0 {
  1510. db = db.Where("storehouse_id = ?", storehouse_id)
  1511. }
  1512. return db.Where("status = 1 and user_org_id = ?", orgId)
  1513. }).Preload("DrugStockCount", func(db *gorm.DB) *gorm.DB {
  1514. if storehouse_id > 0 {
  1515. db = db.Where("storehouse_id = ?", storehouse_id)
  1516. }
  1517. return db.Where("status = 1 and user_org_id = ?", orgId).Group("drug_id,storehouse_id")
  1518. }).Count(&total).Offset(offset).Limit(limit).Order("x.ctime desc").Find(&drug).Error
  1519. return drug, total, err
  1520. }
  1521. func GetDrugWarehouseOutInfoByIdList(good_id int64, limit int64, page int64, orgid int64, startime int64, endtime int64, storehouse_id int64) (info []*models.DrugWarehouseOutInfo, total int64, err error) {
  1522. db := XTReadDB().Model(&info).Where("status = 1")
  1523. offset := (page - 1) * limit
  1524. if good_id > 0 {
  1525. db = db.Where("drug_id = ?", good_id)
  1526. }
  1527. if orgid > 0 {
  1528. db = db.Where("org_id =?", orgid)
  1529. }
  1530. if startime > 0 {
  1531. db = db.Where("ctime >=?", startime)
  1532. }
  1533. if endtime > 0 {
  1534. db = db.Where("ctime<=?", endtime)
  1535. }
  1536. if storehouse_id > 0 {
  1537. db = db.Where("storehouse_id = ?", storehouse_id)
  1538. }
  1539. err = db.Count(&total).Offset(offset).Limit(limit).Preload("BaseDrugLib", "status=1 and org_id = ?", orgid).Order("id desc").Find(&info).Error
  1540. return info, total, err
  1541. }
  1542. func GetAllGoodListSeven(orgid int64) (good []*models.GoodInfoSeven, err error) {
  1543. err = XTReadDB().Where("org_id = ? and status = 1", orgid).Find(&good).Error
  1544. return good, err
  1545. }
  1546. func GetAllGoodListEight(orgid int64) (good []*models.GoodInfoSeven, err error) {
  1547. err = XTReadDB().Where("org_id = ? and status = 1 AND find_in_set('停用',good_status) = 0", orgid).Find(&good).Error
  1548. return good, err
  1549. }
  1550. func GetGoodInformationWarehouseInfo(good_id int64, orgid int64) (info []*models.WarehousingInfoTen, err error) {
  1551. err = XTReadDB().Where("good_id = ? and org_id = ? and status = 1 and is_check = 1 and stock_count > 0", good_id, orgid).Find(&info).Error
  1552. return info, err
  1553. }
  1554. func UpdateGoodInformation(id int64, orgid int64, total_count int64) error {
  1555. err := XTWriteDB().Model(&models.GoodInfoTen{}).Where("id = ? and org_id = ? and status = 1", id, orgid).Update(map[string]interface{}{"total_count": total_count}).Error
  1556. return err
  1557. }
  1558. func GetBaseDrugName(orgid int64) (drug []*models.BaseDrugLibTwenty, err error) {
  1559. err = XTReadDB().Where("org_id = ? and status = 1", orgid).Find(&drug).Error
  1560. return drug, err
  1561. }
  1562. func GetDrugWarehouseInfoName(drugid int64, orgid int64) (info []*models.DrugWarehouseInfoTen, err error) {
  1563. err = XTReadDB().Where("drug_id = ? and org_id = ? and is_check = 1 and (stock_max_number >0 or stock_min_number > 0) and status = 1", drugid, orgid).Find(&info).Error
  1564. return info, err
  1565. }
  1566. func UpdateDrugById(id int64, orgid int64, limit_count int64, total_count int64) error {
  1567. err := XTWriteDB().Model(&models.BaseDrugLibTen{}).Where("id = ? and org_id = ? and status = 1", id, orgid).Update(map[string]interface{}{"drug_stock_limit_count": limit_count, "total_count": total_count}).Error
  1568. return err
  1569. }
  1570. func GetDrugFlowFlush(drugid int64, org_id int64, startime int64, endtime int64) (info []*models.XtDrugWarehouseFlushInfo, err error) {
  1571. db := XTReadDB().Model(&info).Where("status = 1 and type = 1")
  1572. if drugid > 0 {
  1573. db = db.Where("drug_id = ?", drugid)
  1574. }
  1575. if org_id > 0 {
  1576. db = db.Where("user_org_id = ?", org_id)
  1577. }
  1578. if startime > 0 {
  1579. db = db.Where("ctime >=?", startime)
  1580. }
  1581. if endtime > 0 {
  1582. db = db.Where("ctime <=?", endtime)
  1583. }
  1584. err = db.Find(&info).Error
  1585. return info, err
  1586. }
  1587. func GetDrugFlowFlushOne(drugid int64, org_id int64, startime int64, endtime int64) (info []*models.XtDrugWarehouseFlushInfo, err error) {
  1588. db := XTReadDB().Model(&info).Where("status = 0 and type = 1")
  1589. if drugid > 0 {
  1590. db = db.Where("drug_id = ?", drugid)
  1591. }
  1592. if org_id > 0 {
  1593. db = db.Where("user_org_id = ?", org_id)
  1594. }
  1595. if startime > 0 {
  1596. db = db.Where("ctime >=?", startime)
  1597. }
  1598. if endtime > 0 {
  1599. db = db.Where("ctime <=?", endtime)
  1600. }
  1601. err = db.Find(&info).Error
  1602. return info, err
  1603. }
  1604. func GetStartGoodWarehouseInfoList(good_id int64, orgid int64, startime int64) (info []*models.StartWarehousingInfo, err error) {
  1605. db := XTReadDB().Model(&info).Where("status = 1 and is_check =1")
  1606. if good_id > 0 {
  1607. db = db.Where("good_id = ?", good_id)
  1608. }
  1609. if orgid > 0 {
  1610. db = db.Where("org_id = ?", orgid)
  1611. }
  1612. if startime > 0 {
  1613. db = db.Where("ctime <?", startime)
  1614. }
  1615. err = db.Find(&info).Error
  1616. return info, err
  1617. }
  1618. func GetEndGoodWarehouseInfoList(good_id int64, orgid int64, endtime int64) (info []*models.StartWarehousingInfo, err error) {
  1619. db := XTReadDB().Model(&info).Where("status = 1 and is_check =1")
  1620. if good_id > 0 {
  1621. db = db.Where("good_id = ?", good_id)
  1622. }
  1623. if orgid > 0 {
  1624. db = db.Where("org_id = ?", orgid)
  1625. }
  1626. if endtime > 0 {
  1627. db = db.Where("ctime <=?", endtime)
  1628. }
  1629. err = db.Find(&info).Error
  1630. return info, err
  1631. }
  1632. func GetAddGoodWarehouseInfoList(good_id int64, orgid int64, startime int64, endtime int64) (info []*models.StartWarehousingInfo, err error) {
  1633. db := XTReadDB().Model(&info).Where("status = 1 and is_check =1")
  1634. if good_id > 0 {
  1635. db = db.Where("good_id = ?", good_id)
  1636. }
  1637. if orgid > 0 {
  1638. db = db.Where("org_id = ?", orgid)
  1639. }
  1640. if startime > 0 {
  1641. db = db.Where("ctime >=?", startime)
  1642. }
  1643. if endtime > 0 {
  1644. db = db.Where("ctime <=?", endtime)
  1645. }
  1646. err = db.Find(&info).Error
  1647. return info, err
  1648. }
  1649. func GetAddStartFlow(good_id int64, orgid int64, startime int64, endtime int64) (info []*models.VmStockFlowTwenty, err error) {
  1650. db := XTReadDB().Model(&info).Where("status = 1 and consumable_type =1")
  1651. if good_id > 0 {
  1652. db = db.Where("good_id = ?", good_id)
  1653. }
  1654. if orgid > 0 {
  1655. db = db.Where("user_org_id = ?", orgid)
  1656. }
  1657. if startime > 0 {
  1658. db = db.Where("ctime >=?", startime)
  1659. }
  1660. if endtime > 0 {
  1661. db = db.Where("ctime <=?", endtime)
  1662. }
  1663. err = db.Find(&info).Error
  1664. return info, err
  1665. }
  1666. func GetReduceWarehouseInfoList(good_id int64, orgid int64, startime int64, endtime int64) (outinfo []*models.VmStockFlowTwenty, err error) {
  1667. db := XTReadDB().Model(&outinfo).Where("status = 1 and (consumable_type = 2 or consumable_type = 3 or consumable_type= 15)")
  1668. if good_id > 0 {
  1669. db = db.Where("good_id = ?", good_id)
  1670. }
  1671. if orgid > 0 {
  1672. db = db.Where("user_org_id = ?", orgid)
  1673. }
  1674. if startime > 0 {
  1675. db = db.Where("ctime >=?", startime)
  1676. }
  1677. if endtime > 0 {
  1678. db = db.Where("ctime <=?", endtime)
  1679. }
  1680. err = db.Preload("WarehousingInfo", "org_id = ? and status = 1", orgid).Find(&outinfo).Error
  1681. return outinfo, err
  1682. }
  1683. func GetStartEndCancelFLowInfo(good_id int64, orgid int64, startime int64, endtime int64) (outinfo []*models.VmStockFlowTwenty, err error) {
  1684. db := XTReadDB().Model(&outinfo).Where("status = 1 and (consumable_type = 7)")
  1685. if good_id > 0 {
  1686. db = db.Where("good_id = ?", good_id)
  1687. }
  1688. if orgid > 0 {
  1689. db = db.Where("user_org_id = ?", orgid)
  1690. }
  1691. if startime > 0 {
  1692. db = db.Where("ctime >=?", startime)
  1693. }
  1694. if endtime > 0 {
  1695. db = db.Where("ctime <=?", endtime)
  1696. }
  1697. err = db.Preload("WarehousingInfo", "org_id = ? and status = 1", orgid).Find(&outinfo).Error
  1698. return outinfo, err
  1699. }
  1700. func FindeStartFlowInfo(good_id int64, orgid int64, startime int64) (info []*models.VmStockFlowTwenty, err error) {
  1701. db := XTReadDB().Model(&info).Where("status = 1 and consumable_type = 1")
  1702. if good_id > 0 {
  1703. db = db.Where("good_id = ?", good_id)
  1704. }
  1705. if orgid > 0 {
  1706. db = db.Where("user_org_id = ?", orgid)
  1707. }
  1708. if startime > 0 {
  1709. db = db.Where("ctime <?", startime)
  1710. }
  1711. err = db.Preload("WarehousingInfo", "org_id = ? and status = 1", orgid).Find(&info).Error
  1712. return info, err
  1713. }
  1714. func FindeStartFlowOutInfo(good_id int64, orgid int64, startime int64) (info []*models.VmStockFlowTwenty, err error) {
  1715. db := XTReadDB().Model(&info).Where("status = 1 and (consumable_type = 2 or consumable_type = 3)")
  1716. if good_id > 0 {
  1717. db = db.Where("good_id = ?", good_id)
  1718. }
  1719. if orgid > 0 {
  1720. db = db.Where("user_org_id = ?", orgid)
  1721. }
  1722. if startime > 0 {
  1723. db = db.Where("ctime <?", startime)
  1724. }
  1725. err = db.Preload("WarehousingInfo", "org_id = ? and status = 1", orgid).Find(&info).Error
  1726. return info, err
  1727. }
  1728. func FindeStartCancelInfo(good_id int64, orgid int64, startime int64) (info []*models.VmStockFlowTwenty, err error) {
  1729. db := XTReadDB().Model(&info).Where("status = 1 and (consumable_type = 4 or consumable_type = 7)")
  1730. if good_id > 0 {
  1731. db = db.Where("good_id = ?", good_id)
  1732. }
  1733. if orgid > 0 {
  1734. db = db.Where("user_org_id = ?", orgid)
  1735. }
  1736. if startime > 0 {
  1737. db = db.Where("ctime <?", startime)
  1738. }
  1739. err = db.Preload("WarehousingInfo", "org_id = ? and status = 1", orgid).Find(&info).Error
  1740. return info, err
  1741. }
  1742. func FindEndStartFlowInfo(good_id int64, orgid int64, endtime int64) (info []*models.VmStockFlowTwenty, err error) {
  1743. db := XTReadDB().Model(&info).Where("status = 1 and consumable_type = 1")
  1744. if good_id > 0 {
  1745. db = db.Where("good_id = ?", good_id)
  1746. }
  1747. if orgid > 0 {
  1748. db = db.Where("user_org_id = ?", orgid)
  1749. }
  1750. if endtime > 0 {
  1751. db = db.Where("ctime <=?", endtime)
  1752. }
  1753. err = db.Preload("WarehousingInfo", "org_id = ? and status = 1", orgid).Find(&info).Error
  1754. return info, err
  1755. }
  1756. func FindeEndFLowOutInfo(good_id int64, orgid int64, endtime int64) (info []*models.VmStockFlowTwenty, err error) {
  1757. db := XTReadDB().Model(&info).Where("status = 1 and (consumable_type = 2 or consumable_type = 3)")
  1758. if good_id > 0 {
  1759. db = db.Where("good_id = ?", good_id)
  1760. }
  1761. if orgid > 0 {
  1762. db = db.Where("user_org_id = ?", orgid)
  1763. }
  1764. if endtime > 0 {
  1765. db = db.Where("ctime <?", endtime)
  1766. }
  1767. err = db.Preload("WarehousingInfo", "org_id = ? and status = 1", orgid).Find(&info).Error
  1768. return info, err
  1769. }
  1770. func FindEndCancelInfo(good_id int64, orgid int64, endtime int64) (info []*models.VmStockFlowTwenty, err error) {
  1771. db := XTReadDB().Model(&info).Where("status = 1 and (consumable_type = 4 or consumable_type = 7)")
  1772. if good_id > 0 {
  1773. db = db.Where("good_id = ?", good_id)
  1774. }
  1775. if orgid > 0 {
  1776. db = db.Where("user_org_id = ?", orgid)
  1777. }
  1778. if endtime > 0 {
  1779. db = db.Where("ctime <?", endtime)
  1780. }
  1781. err = db.Preload("WarehousingInfo", "org_id = ? and status = 1", orgid).Find(&info).Error
  1782. return info, err
  1783. }
  1784. func FindeWarehouseOutInfo(good_id int64, orgid int64, startime int64) (outinfo []*models.VmStockFlowTwenty, err error) {
  1785. db := XTReadDB().Model(&outinfo).Where("status = 1 and (consumable_type = 2 or consumable_type = 3 or consumable_type = 15)")
  1786. if good_id > 0 {
  1787. db = db.Where("good_id = ?", good_id)
  1788. }
  1789. if orgid > 0 {
  1790. db = db.Where("user_org_id = ?", orgid)
  1791. }
  1792. if startime > 0 {
  1793. db = db.Where("ctime <?", startime)
  1794. }
  1795. err = db.Preload("WarehousingInfo", "org_id = ? and status = 1", orgid).Find(&outinfo).Error
  1796. return outinfo, err
  1797. }
  1798. func FindeStartStockInventoryProfit(good_id int64, orgid int64, startime int64) (outinfo []*models.VmStockFlowTwenty, err error) {
  1799. db := XTReadDB().Model(&outinfo).Where("status = 1 and (consumable_type = 10)")
  1800. if good_id > 0 {
  1801. db = db.Where("good_id = ?", good_id)
  1802. }
  1803. if orgid > 0 {
  1804. db = db.Where("user_org_id = ?", orgid)
  1805. }
  1806. if startime > 0 {
  1807. db = db.Where("ctime <?", startime)
  1808. }
  1809. err = db.Preload("WarehousingInfo", "org_id = ? and status = 1", orgid).Find(&outinfo).Error
  1810. return outinfo, err
  1811. }
  1812. func FindeEndStokInventoryProfit(good_id int64, orgid int64, startime int64, endtime int64) (outinfo []*models.VmStockFlowTwenty, err error) {
  1813. db := XTReadDB().Model(&outinfo).Where("status = 1 and (consumable_type = 10)")
  1814. if good_id > 0 {
  1815. db = db.Where("good_id = ?", good_id)
  1816. }
  1817. if orgid > 0 {
  1818. db = db.Where("user_org_id = ?", orgid)
  1819. }
  1820. if startime > 0 {
  1821. db = db.Where("ctime >=?", startime)
  1822. }
  1823. if endtime < 0 {
  1824. db = db.Where("ctime <=?", endtime)
  1825. }
  1826. err = db.Preload("WarehousingInfo", "org_id = ? and status = 1", orgid).Find(&outinfo).Error
  1827. return outinfo, err
  1828. }
  1829. func FindeEndStockInventoryLosses(good_id int64, orgid int64, startime int64, endtime int64) (outinfo []*models.VmStockFlowTwenty, err error) {
  1830. db := XTReadDB().Model(&outinfo).Where("status = 1 and (consumable_type = 11)")
  1831. if good_id > 0 {
  1832. db = db.Where("good_id = ?", good_id)
  1833. }
  1834. if orgid > 0 {
  1835. db = db.Where("user_org_id = ?", orgid)
  1836. }
  1837. if startime > 0 {
  1838. db = db.Where("ctime >=?", startime)
  1839. }
  1840. if endtime < 0 {
  1841. db = db.Where("ctime <=?", endtime)
  1842. }
  1843. err = db.Preload("WarehousingInfo", "org_id = ? and status = 1", orgid).Find(&outinfo).Error
  1844. return outinfo, err
  1845. }
  1846. func FindStartStockInventoryLosses(good_id int64, orgid int64, startime int64) (outinfo []*models.VmStockFlowTwenty, err error) {
  1847. db := XTReadDB().Model(&outinfo).Where("status = 1 and (consumable_type = 11)")
  1848. if good_id > 0 {
  1849. db = db.Where("good_id = ?", good_id)
  1850. }
  1851. if orgid > 0 {
  1852. db = db.Where("user_org_id = ?", orgid)
  1853. }
  1854. if startime > 0 {
  1855. db = db.Where("ctime <?", startime)
  1856. }
  1857. err = db.Preload("WarehousingInfo", "org_id = ? and status = 1", orgid).Find(&outinfo).Error
  1858. return outinfo, err
  1859. }
  1860. func GetDrugWarehouseInfoStart(drug_id int64, orgid int64, startTime int64) (info []*models.DrugFlowTwenty, err error) {
  1861. db := XTReadDB().Model(&info).Where("status = 1 and consumable_type=1 ")
  1862. if drug_id > 0 {
  1863. db = db.Where("drug_id = ?", drug_id)
  1864. }
  1865. if orgid > 0 {
  1866. db = db.Where("user_org_id = ?", orgid)
  1867. }
  1868. if startTime > 0 {
  1869. db = db.Where("ctime<?", startTime)
  1870. }
  1871. err = db.Preload("DrugWarehouseInfoOne", "org_id =? and status = 1", orgid).Find(&info).Error
  1872. return info, err
  1873. }
  1874. func DrugWarehouseInfoEnd(drug_id int64, orgid int64, endTime int64) (info []*models.DrugFlowTwenty, err error) {
  1875. db := XTReadDB().Model(&info).Where("status = 1 and consumable_type = 1")
  1876. if drug_id > 0 {
  1877. db = db.Where("drug_id = ?", drug_id)
  1878. }
  1879. if orgid > 0 {
  1880. db = db.Where("user_org_id = ?", orgid)
  1881. }
  1882. if endTime > 0 {
  1883. db = db.Where("ctime<=?", endTime)
  1884. }
  1885. err = db.Preload("DrugWarehouseInfoOne", "org_id =? and status = 1", orgid).Find(&info).Error
  1886. return info, err
  1887. }
  1888. func DrugWarehouseOutInfoEnd(drug_id int64, orgid int64, endTime int64) (info []*models.DrugFlowTwenty, err error) {
  1889. db := XTReadDB().Model(&info).Where("status = 1 and (consumable_type = 2 or consumable_type= 3 or consumable_type= 15)")
  1890. if drug_id > 0 {
  1891. db = db.Where("drug_id = ?", drug_id)
  1892. }
  1893. if orgid > 0 {
  1894. db = db.Where("user_org_id = ?", orgid)
  1895. }
  1896. if endTime > 0 {
  1897. db = db.Where("ctime<=?", endTime)
  1898. }
  1899. err = db.Preload("DrugWarehouseInfoOne", "org_id =? and status = 1", orgid).Find(&info).Error
  1900. return info, err
  1901. }
  1902. func GetEndDrugFlowCancelInfo(drug_id int64, orgid int64, endTime int64) (info []*models.DrugFlowTwenty, err error) {
  1903. db := XTReadDB().Model(&info).Where("status = 1 and (consumable_type = 4 or consumable_type= 7)")
  1904. if drug_id > 0 {
  1905. db = db.Where("drug_id = ?", drug_id)
  1906. }
  1907. if orgid > 0 {
  1908. db = db.Where("user_org_id = ?", orgid)
  1909. }
  1910. if endTime > 0 {
  1911. db = db.Where("ctime<=?", endTime)
  1912. }
  1913. err = db.Preload("DrugWarehouseInfoOne", "org_id =? and status = 1", orgid).Find(&info).Error
  1914. return info, err
  1915. }
  1916. func GetDrugWarehouseStartEnd(drug_id int64, orgid int64, startTime int64, endTime int64) (info []*models.DrugFlowTwenty, err error) {
  1917. db := XTReadDB().Model(&info).Where("status = 1 and consumable_type = 1")
  1918. if drug_id > 0 {
  1919. db = db.Where("drug_id = ?", drug_id)
  1920. }
  1921. if orgid > 0 {
  1922. db = db.Where("user_org_id = ?", orgid)
  1923. }
  1924. if startTime > 0 {
  1925. db = db.Where("ctime>=?", startTime)
  1926. }
  1927. if endTime > 0 {
  1928. db = db.Where("ctime<=?", endTime)
  1929. }
  1930. err = db.Preload("DrugWarehouseInfoOne", "org_id =? and status = 1", orgid).Find(&info).Error
  1931. return info, err
  1932. }
  1933. func FindeDrugWarehouseOutInfo(drug_id int64, orgid int64, startTime int64, endTime int64) (info []*models.DrugFlowTwenty, err error) {
  1934. db := XTReadDB().Model(&info).Where("status = 1 and (consumable_type = 2 or consumable_type= 3 or consumable_type= 15 )")
  1935. if drug_id > 0 {
  1936. db = db.Where("drug_id = ?", drug_id)
  1937. }
  1938. if orgid > 0 {
  1939. db = db.Where("user_org_id = ?", orgid)
  1940. }
  1941. if startTime > 0 {
  1942. db = db.Where("ctime>=?", startTime)
  1943. }
  1944. if endTime > 0 {
  1945. db = db.Where("ctime<=?", endTime)
  1946. }
  1947. err = db.Preload("DrugWarehouseInfoOne", "status= 1 and org_id = ?", orgid).Find(&info).Error
  1948. return info, err
  1949. }
  1950. func FindStartEndDrugWarehouseOutInfo(drug_id int64, orgid int64, startTime int64, endTime int64) (info []*models.DrugFlowTwenty, err error) {
  1951. db := XTReadDB().Model(&info).Where("status = 1 and (consumable_type= 7)")
  1952. if drug_id > 0 {
  1953. db = db.Where("drug_id = ?", drug_id)
  1954. }
  1955. if orgid > 0 {
  1956. db = db.Where("user_org_id = ?", orgid)
  1957. }
  1958. if startTime > 0 {
  1959. db = db.Where("ctime>=?", startTime)
  1960. }
  1961. if endTime > 0 {
  1962. db = db.Where("ctime<=?", endTime)
  1963. }
  1964. err = db.Preload("DrugWarehouseInfoOne", "status= 1 and org_id = ?", orgid).Find(&info).Error
  1965. return info, err
  1966. }
  1967. func FindeDrugWarehouseOutStart(drug_id int64, orgid int64, startTime int64) (info []*models.DrugFlow, err error) {
  1968. db := XTReadDB().Model(&info).Where("status = 1 and (consumable_type = 2 or consumable_type= 3)")
  1969. if drug_id > 0 {
  1970. db = db.Where("drug_id = ?", drug_id)
  1971. }
  1972. if orgid > 0 {
  1973. db = db.Where("user_org_id = ?", orgid)
  1974. }
  1975. if startTime > 0 {
  1976. db = db.Where("ctime <?", startTime)
  1977. }
  1978. err = db.Preload("DrugWarehouseInfoOne", "status= 1 and org_id = ?", orgid).Find(&info).Error
  1979. return info, err
  1980. }
  1981. func GetHisPrescriptionProjectByOrgId(orgid int64) (project []*models.HisPrescriptionProject, err error) {
  1982. err = XTReadDB().Where("user_org_id = ? and status = 0 and type = 3", orgid).Find(&project).Error
  1983. return project, err
  1984. }
  1985. func GetPatientStockFlow(patient_id int64, record_date int64, good_id int64) (models.VmStockFlow, error) {
  1986. flow := models.VmStockFlow{}
  1987. err = XTReadDB().Where("patient_id = ? and system_time = ? and good_id = ?", patient_id, record_date, good_id).Find(&flow).Error
  1988. return flow, err
  1989. }
  1990. func ModifyPatientStockFlow(id int64, flow models.VmStockFlow) error {
  1991. err = XTReadDB().Model(&models.VmStockFlow{}).Where("id = ?", id).Updates(map[string]interface{}{"count": flow.Count, "status": 1, "is_read": 1}).Error
  1992. return err
  1993. }
  1994. func GetDrugFlowSart(drug_id int64, user_org_id int64, ctime int64) (flow []*models.DrugFlow, err error) {
  1995. db := XTReadDB().Model(&flow).Where("status = 1 and consumable_type = 1")
  1996. if drug_id > 0 {
  1997. db = db.Where("drug_id = ?", drug_id)
  1998. }
  1999. if user_org_id > 0 {
  2000. db = db.Where("user_org_id = ?", user_org_id)
  2001. }
  2002. if ctime > 0 {
  2003. db = db.Where("ctime <?", ctime)
  2004. }
  2005. err = db.Preload("DrugWarehouseInfoOne", "org_id =? and status = 1", user_org_id).Find(&flow).Error
  2006. return flow, err
  2007. }
  2008. func GetDrugFlowOut(drug_id int64, user_org_id int64, ctime int64) (flow []*models.DrugFlowTwenty, err error) {
  2009. db := XTReadDB().Model(&flow).Where("status = 1 and (consumable_type = 2 or consumable_type= 3 or consumable_type= 15)")
  2010. if drug_id > 0 {
  2011. db = db.Where("drug_id = ?", drug_id)
  2012. }
  2013. if user_org_id > 0 {
  2014. db = db.Where("user_org_id = ?", user_org_id)
  2015. }
  2016. if ctime > 0 {
  2017. db = db.Where("ctime <?", ctime)
  2018. }
  2019. err = db.Preload("DrugWarehouseInfoOne", "org_id =? and status = 1", user_org_id).Find(&flow).Error
  2020. return flow, err
  2021. }
  2022. func GetStartDrugFlowCancelInfo(drug_id int64, user_org_id int64, ctime int64) (flow []*models.DrugFlowTwenty, err error) {
  2023. db := XTReadDB().Model(&flow).Where("status = 1 and (consumable_type = 4 or consumable_type = 7)")
  2024. if drug_id > 0 {
  2025. db = db.Where("drug_id = ?", drug_id)
  2026. }
  2027. if user_org_id > 0 {
  2028. db = db.Where("user_org_id = ?", user_org_id)
  2029. }
  2030. if ctime > 0 {
  2031. db = db.Where("ctime <?", ctime)
  2032. }
  2033. err = db.Preload("DrugWarehouseInfoOne", "org_id =? and status = 1", user_org_id).Find(&flow).Error
  2034. return flow, err
  2035. }
  2036. func GetDrugFlowStartProfit(drug_id int64, user_org_id int64, ctime int64) (flow []*models.DrugFlowTwenty, err error) {
  2037. db := XTReadDB().Model(&flow).Where("status = 1 and consumable_type = 10")
  2038. if drug_id > 0 {
  2039. db = db.Where("drug_id = ?", drug_id)
  2040. }
  2041. if user_org_id > 0 {
  2042. db = db.Where("user_org_id = ?", user_org_id)
  2043. }
  2044. if ctime > 0 {
  2045. db = db.Where("ctime <?", ctime)
  2046. }
  2047. err = db.Preload("DrugWarehouseInfoOne", "org_id =? and status = 1", user_org_id).Find(&flow).Error
  2048. return flow, err
  2049. }
  2050. func GetDrugFlowStartLosses(drug_id int64, user_org_id int64, ctime int64) (flow []*models.DrugFlowTwenty, err error) {
  2051. db := XTReadDB().Model(&flow).Where("status = 1 and consumable_type = 11 ")
  2052. if drug_id > 0 {
  2053. db = db.Where("drug_id = ?", drug_id)
  2054. }
  2055. if user_org_id > 0 {
  2056. db = db.Where("user_org_id = ?", user_org_id)
  2057. }
  2058. if ctime > 0 {
  2059. db = db.Where("ctime <?", ctime)
  2060. }
  2061. err = db.Preload("DrugWarehouseInfoOne", "org_id =? and status = 1", user_org_id).Find(&flow).Error
  2062. return flow, err
  2063. }
  2064. func GetDrugFlowEndProfit(drug_id int64, user_org_id int64, endtime int64) (flow []*models.DrugFlowTwenty, err error) {
  2065. db := XTReadDB().Model(&flow).Where("status = 1 and consumable_type = 10")
  2066. if drug_id > 0 {
  2067. db = db.Where("drug_id = ?", drug_id)
  2068. }
  2069. if user_org_id > 0 {
  2070. db = db.Where("user_org_id = ?", user_org_id)
  2071. }
  2072. if endtime > 0 {
  2073. db = db.Where("ctime <=?", endtime)
  2074. }
  2075. err = db.Preload("DrugWarehouseInfoOne", "org_id =? and status = 1", user_org_id).Find(&flow).Error
  2076. return flow, err
  2077. }
  2078. func GetDrugFlowEndLosses(drug_id int64, user_org_id int64, endtime int64) (flow []*models.DrugFlowTwenty, err error) {
  2079. db := XTReadDB().Model(&flow).Where("status = 1 and consumable_type = 11")
  2080. if drug_id > 0 {
  2081. db = db.Where("drug_id = ?", drug_id)
  2082. }
  2083. if user_org_id > 0 {
  2084. db = db.Where("user_org_id = ?", user_org_id)
  2085. }
  2086. if endtime > 0 {
  2087. db = db.Where("ctime <=?", endtime)
  2088. }
  2089. err = db.Preload("DrugWarehouseInfoOne", "org_id =? and status = 1", user_org_id).Find(&flow).Error
  2090. return flow, err
  2091. }
  2092. func GetDrugFlowStartEndProfit(drug_id int64, user_org_id int64, startime int64, endtime int64) (flow []*models.DrugFlowTwenty, err error) {
  2093. db := XTReadDB().Model(&flow).Where("status = 1 and consumable_type = 10 ")
  2094. if drug_id > 0 {
  2095. db = db.Where("drug_id = ?", drug_id)
  2096. }
  2097. if user_org_id > 0 {
  2098. db = db.Where("user_org_id = ?", user_org_id)
  2099. }
  2100. if startime > 0 {
  2101. db = db.Where("ctime >=?", startime)
  2102. }
  2103. if endtime > 0 {
  2104. db = db.Where("ctime<=?", endtime)
  2105. }
  2106. err = db.Preload("DrugWarehouseInfoOne", "org_id =? and status = 1", user_org_id).Find(&flow).Error
  2107. return flow, err
  2108. }
  2109. func GetDrugFlowStartEndLosses(drug_id int64, user_org_id int64, startime int64, endtime int64) (flow []*models.DrugFlowTwenty, err error) {
  2110. db := XTReadDB().Model(&flow).Where("status = 1 and consumable_type = 11 ")
  2111. if drug_id > 0 {
  2112. db = db.Where("drug_id = ?", drug_id)
  2113. }
  2114. if user_org_id > 0 {
  2115. db = db.Where("user_org_id = ?", user_org_id)
  2116. }
  2117. if startime > 0 {
  2118. db = db.Where("ctime >=?", startime)
  2119. }
  2120. if endtime > 0 {
  2121. db = db.Where("ctime<=?", endtime)
  2122. }
  2123. err = db.Preload("DrugWarehouseInfoOne", "org_id =? and status = 1", user_org_id).Find(&flow).Error
  2124. return flow, err
  2125. }
  2126. func GetDrugWarehouseInfoStorehouseList(orgid int64) (info []*models.DrugWarehouseInfo, err error) {
  2127. err = XTReadDB().Where("org_id = ? and is_check= 1 and status = 1", orgid).Group("drug_id,storehouse_id").Find(&info).Error
  2128. return info, err
  2129. }
  2130. func GetDrugStockCout(drug_id int64, storehouse_id int64, user_org_id int64) (models.XtDrugStockCount, error) {
  2131. drugCount := models.XtDrugStockCount{}
  2132. err := XTReadDB().Where("drug_id = ? and storehouse_id = ? and user_org_id = ? and is_check =1 and status = 1", drug_id, storehouse_id, user_org_id).Find(&drugCount).Error
  2133. return drugCount, err
  2134. }
  2135. func GetDrugWarehouseInfoByStorehouseId(storehouse_id int64, drug_id int64, org_id int64) (info []*models.DrugWarehouseInfo, err error) {
  2136. err = XTReadDB().Where("drug_id = ? and storehouse_id = ? and org_id = ? and status =1 and is_check = 1", drug_id, storehouse_id, org_id).Find(&info).Error
  2137. return info, err
  2138. }
  2139. func GetDrugFlowStockOutCount(storehouse_id int64, drug_id int64, org_id int64) (flow []*models.DrugFlow, err error) {
  2140. err = XTReadDB().Where("storehouse_id = ? and drug_id = ? and user_org_id = ? and status = 1 and (consumable_type = 2 or consumable_type =3)", storehouse_id, drug_id, org_id).Find(&flow).Error
  2141. return flow, err
  2142. }
  2143. func GetDrugFlowStockCancelCount(storehouse_id int64, drug_id int64, org_id int64) (flow []*models.DrugFlow, err error) {
  2144. err = XTReadDB().Where("storehouse_id = ? and drug_id = ? and user_org_id = ? and status = 1 and consumable_type = 7", storehouse_id, drug_id, org_id).Find(&flow).Error
  2145. return flow, err
  2146. }
  2147. func CreateDrugStockCount(stockCount models.XtDrugStockCount) error {
  2148. err := XTWriteDB().Create(&stockCount).Error
  2149. return err
  2150. }
  2151. func GetGoodNewPurchaseStockQuery(good_type int64, keyword string, page int64, limit int64, orgid int64, ids []int64, goodIds []int64) (goodinfo []*models.GoodInfoTwenty, total int64, err error) {
  2152. db := XTReadDB().Model(&goodinfo).Where("status = 1 and total_count > 0")
  2153. offset := (page - 1) * limit
  2154. likeKey := "%" + keyword + "%"
  2155. if good_type > 0 {
  2156. db = db.Where("good_type_id = ?", good_type)
  2157. }
  2158. if orgid > 0 {
  2159. db = db.Where("org_id = ?", orgid)
  2160. }
  2161. if len(ids) > 0 {
  2162. db = db.Where("id in(?)", goodIds)
  2163. }
  2164. if len(keyword) > 0 {
  2165. db = db.Where("good_name like ? or manufacturer in(?)", likeKey, ids)
  2166. }
  2167. err = db.Count(&total).Offset(offset).Limit(limit).Order("ctime desc").Find(&goodinfo).Error
  2168. return goodinfo, total, err
  2169. }
  2170. func GetGoodNewPurchaseStockQueryOne(good_type int64, keyword string, page int64, limit int64, orgid int64, ids []int64, goodIds []int64) (goodinfo []*models.GoodInfoTwenty, total int64, err error) {
  2171. db := XTReadDB().Model(&goodinfo).Where("status = 1")
  2172. offset := (page - 1) * limit
  2173. likeKey := "%" + keyword + "%"
  2174. if good_type > 0 {
  2175. db = db.Where("good_type_id = ?", good_type)
  2176. }
  2177. if orgid > 0 {
  2178. db = db.Where("org_id = ?", orgid)
  2179. }
  2180. if len(ids) > 0 {
  2181. db = db.Where("id in(?)", goodIds)
  2182. }
  2183. if len(keyword) > 0 {
  2184. db = db.Where("good_name like ? or manufacturer in(?)", likeKey, ids)
  2185. }
  2186. err = db.Count(&total).Offset(offset).Limit(limit).Order("ctime desc").Find(&goodinfo).Error
  2187. return goodinfo, total, err
  2188. }
  2189. func GetStartLastFLow(goodid int64, orgid int64, startime int64) (models.VmStockFlowTwenty, error) {
  2190. flwo := models.VmStockFlowTwenty{}
  2191. err := XTReadDB().Where("good_id = ? and user_org_id = ? and status = 1 and ctime < ?", goodid, orgid, startime).Last(&flwo).Error
  2192. return flwo, err
  2193. }
  2194. func GetEndLastFlow(goodid int64, orgid int64, endtime int64) (models.VmStockFlowTwenty, error) {
  2195. flwo := models.VmStockFlowTwenty{}
  2196. err := XTReadDB().Where("good_id = ? and user_org_id = ? and status = 1 and ctime <= ?", goodid, orgid, endtime).Last(&flwo).Error
  2197. return flwo, err
  2198. }
  2199. func GetDrugNewPurchaseStockQuery(good_type int64, keyword string, page int64, limit int64, orgid int64, startime int64, endtime int64, ids []int64, infos []int64) (druginfo []*models.VmBaseDrugTwenty, total int64, err error) {
  2200. db := XTReadDB().Model(&druginfo).Where("status = 1")
  2201. offset := (page - 1) * limit
  2202. likeKey := "%" + keyword + "%"
  2203. if good_type > 0 {
  2204. db = db.Where("drug_type = ?", good_type)
  2205. }
  2206. if orgid > 0 {
  2207. db = db.Where("org_id = ?", orgid)
  2208. }
  2209. if len(keyword) > 0 {
  2210. db = db.Where("drug_name like ? or manufacturer in(?)", likeKey, ids)
  2211. }
  2212. if len(infos) > 0 {
  2213. db = db.Where("id in(?)", infos)
  2214. }
  2215. err = db.Count(&total).Offset(offset).Limit(limit).Order("ctime desc").Find(&druginfo).Error
  2216. return druginfo, total, err
  2217. }
  2218. func GetDrugStartFlow(drug_id int64, user_org_id int64, startime int64) (models.DrugFlowTwenty, error) {
  2219. flow := models.DrugFlowTwenty{}
  2220. err := XTReadDB().Where("drug_id = ? and user_org_id = ? and ctime<? and status = 1", drug_id, user_org_id, startime).Last(&flow).Error
  2221. return flow, err
  2222. }
  2223. func GetDrugEndFlow(drug_id int64, user_org_id int64, endtime int64) (models.DrugFlowTwenty, error) {
  2224. flow := models.DrugFlowTwenty{}
  2225. err := XTReadDB().Where("drug_id = ? and user_org_id = ? and ctime<=? and status = 1", drug_id, user_org_id, endtime).Last(&flow).Error
  2226. return flow, err
  2227. }
  2228. func GetAllStockCount(orgid int64) (stock []*models.XtGoodStockCount, err error) {
  2229. err = XTReadDB().Where("user_org_id = ? and status = 1", orgid).Find(&stock).Error
  2230. return stock, err
  2231. }
  2232. func GetLastStockFlow(good_id int64) (models.VmStockFlow, error) {
  2233. flow := models.VmStockFlow{}
  2234. err := XTReadDB().Where("good_id = ? and status =1 and ctime<=1667231999", good_id).Last(&flow).Error
  2235. return flow, err
  2236. }
  2237. func ModifyStockFlowById(id int64, over_count int64) error {
  2238. err := XTWriteDB().Model(&models.VmStockFlow{}).Where("id = ? and status = 1", id).Update(map[string]interface{}{"over_count": over_count}).Error
  2239. return err
  2240. }
  2241. func GetAllDrugCount(user_org_id int64) (drug []*models.XtDrugStockCount, err error) {
  2242. err = XTReadDB().Where("user_org_id = ? and status = 1", user_org_id).Find(&drug).Error
  2243. return drug, err
  2244. }
  2245. func GetLastDrugFlow(drug_id int64) (models.DrugFlow, error) {
  2246. flow := models.DrugFlow{}
  2247. err := XTReadDB().Where("drug_id = ? and status =1 and ctime<=1667231999", drug_id).Last(&flow).Error
  2248. return flow, err
  2249. }
  2250. func ModifyDrugFlowById(id int64, over_count int64) error {
  2251. err := XTWriteDB().Model(&models.DrugFlow{}).Where("id = ? and status = 1", id).Update(map[string]interface{}{"over_count": over_count}).Error
  2252. return err
  2253. }
  2254. func GetDrugInventoryWarehouseInfoList(org_id int64, storehouse_id int64) (info []*models.XtDrugWarehouseInfo, err error) {
  2255. err = XTReadDB().Model(&info).Where("status = 1 and storehouse_id = ? and is_check = 1 and org_id = ?", storehouse_id, org_id).Preload("XtBaseDrug", "status= 1").Find(&info).Error
  2256. return info, err
  2257. }