manage_service.go 81KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797
  1. package service
  2. import (
  3. "XT_New/models"
  4. "fmt"
  5. "github.com/jinzhu/gorm"
  6. "strings"
  7. "time"
  8. )
  9. func GetEquitmentName(unit_type string, orgid int64) (*models.DeviceEquimentname, error) {
  10. var equimentname models.DeviceEquimentname
  11. var err error
  12. err = UserReadDB().Model(&equimentname).Where("equitment_name = ? and user_org_id = ? and status = 1", unit_type, orgid).Find(&equimentname).Error
  13. if err == gorm.ErrRecordNotFound {
  14. return nil, err
  15. }
  16. if err != nil {
  17. return nil, err
  18. }
  19. return &equimentname, nil
  20. }
  21. func CreateEquimentName(equimentname models.DeviceEquimentname) error {
  22. //err := XTWriteDB().Create(&equimentname).Error
  23. //return err
  24. err := writeUserDb.Create(&equimentname).Error
  25. return err
  26. }
  27. func GetEquitmentByBedID(bedid int64, orgid int64) (models.DeviceAddmacher, error) {
  28. addmacher := models.DeviceAddmacher{}
  29. err := UserReadDB().Model(&addmacher).Where("bed_id = ? and user_org_id = ? and status = 1", bedid, orgid).First(&addmacher).Error
  30. return addmacher, err
  31. }
  32. func CreateMacher(machers *models.DeviceAddmacher) error {
  33. //err := writeDb.Create(&machers).Error
  34. //xt := writeDb.Begin()
  35. // //fmt.Println("hhhhhhhh",xt)
  36. // //err := xt.Model(&models.DeviceAddmacher{}).Create(machers).Error
  37. // //fmt.Println("err",err)
  38. // //if err !=nil{
  39. // // xt.Rollback()
  40. // //}
  41. // //xt.Commit()
  42. // //return err
  43. err := writeUserDb.Create(&machers).Error
  44. return err
  45. }
  46. func UpdateMachine(id int64, orgid int64, addmacher *models.DeviceAddmacher) error {
  47. err := writeUserDb.Model(&addmacher).Where("id = ? AND user_org_id = ? AND status = ?", id, orgid, 1).Updates(map[string]interface{}{"serial_number": addmacher.SerialNumber, "device_type": addmacher.DeviceType, "bed_number": addmacher.BedNumber, "device_name": addmacher.DeviceName, "manufacture_factory": addmacher.ManufactureFactory, "service_manufacturer": addmacher.ServiceManufacturer, "unit_type": addmacher.UnitType, "use_section": addmacher.UseSection, "section_number": addmacher.SectionNumber, "buy_date": addmacher.BuyDate, "install_date": addmacher.InstallDate, "start_date": addmacher.StartDate, "maintenace_engineer": addmacher.MaintenaceEngineer, "telephone": addmacher.Telephone, "guarantee_date": addmacher.GuaranteeDate, "machine_status": addmacher.MachineStatus, "user_total": addmacher.UserTotal, "remarks": addmacher.Remarks, "rubbish_date": addmacher.RubbishDate, "rubbish_reason": addmacher.RubbishReason, "user_year": addmacher.UserYear, "work_time": addmacher.WorkTime, "bed_id": addmacher.BedId, "disinfection_mode": addmacher.DisinfectionMode, "revers_mode": addmacher.ReversMode, "mtime": time.Now().Unix()}).Error
  48. return err
  49. }
  50. func GetZoneName(zoneid int64, orgid int64) (models.DeviceZone, error) {
  51. zone := models.DeviceZone{}
  52. err := XTReadDB().Where("id = ? AND org_id = ?", zoneid, orgid).Find(&zone).Error
  53. return zone, err
  54. }
  55. func UpdateTreatMode(id int64, orgid int64, treatmodes []int64) (err error) {
  56. utx := XTWriteDB().Begin()
  57. err = utx.Model(models.DeviceTreatmentmode{}).Where("machine_id = ? AND user_org_id = ?", id, orgid).Updates(map[string]interface{}{"status": 2, "mtime": time.Now().Unix()}).Error
  58. fmt.Println("错误是什么", err)
  59. if err != nil {
  60. utx.Rollback()
  61. return
  62. }
  63. if len(treatmodes) > 0 {
  64. thisSQL := "INSERT INTO xt_device_treatmentmode(machine_id,treate_mode,status,ctime,user_org_id) VALUES "
  65. insertParams := make([]string, 0)
  66. insertData := make([]interface{}, 0)
  67. for _, treatmode := range treatmodes {
  68. insertParams = append(insertParams, "(?, ?, ?, ?, ?)")
  69. insertData = append(insertData, id)
  70. insertData = append(insertData, treatmode)
  71. insertData = append(insertData, 1)
  72. insertData = append(insertData, time.Now().Unix())
  73. insertData = append(insertData, orgid)
  74. }
  75. thisSQL += strings.Join(insertParams, ",")
  76. err = utx.Exec(thisSQL, insertData...).Error
  77. if err != nil {
  78. utx.Rollback()
  79. return
  80. }
  81. }
  82. utx.Commit()
  83. return
  84. }
  85. func GetAllEquimentName(orgid int64) (equit []*models.DeviceEquimentname, err error) {
  86. err = readUserDb.Model(&equit).Where("user_org_id = ? AND status = ?", orgid, 1).Group("equitment_name").Find(&equit).Error
  87. return equit, err
  88. }
  89. func GetAllDeviceMode(orgid int64) (device []*models.DeviceMode, err error) {
  90. err = readUserDb.Model(&device).Where("user_org_id = ? and status = 1", orgid).Find(&device).Error
  91. return device, err
  92. }
  93. func GetBed(equitid int64) (models.DeviceAddmacher, error) {
  94. addmacher := models.DeviceAddmacher{}
  95. err := UserReadDB().Where("id=? AND status = ?", equitid, 1).Find(&addmacher).Error
  96. return addmacher, err
  97. }
  98. func QueryPlan(orgid int64, devicetype int64, ids []int64, classids []int64, equitid int64) (*models.DevicePlan, error) {
  99. var pre models.DevicePlan
  100. var err error
  101. //for _, id := range ids {
  102. // for _, classids := range classids {
  103. // err = UserReadDB().Model(&pre).Where("user_org_id = ? AND device_type = ? AND time = ? AND classtime = ? AND equiment_id = ? AND status = 1", orgid, devicetype, id, classids, equitid).Find(&pre).Error
  104. // }
  105. //}
  106. //if err == gorm.ErrRecordNotFound {
  107. // return nil, err
  108. //}
  109. //if err != nil {
  110. // return nil, err
  111. //}
  112. //return &pre, nil
  113. if len(ids) == 1 && len(classids) == 1 {
  114. err = UserWriteDB().Model(&models.DevicePlan{}).Where("user_org_id = ? and device_type = ? and time = ? and classtime = ? and status = 1 ", orgid, devicetype, ids[0], classids[0]).Find(&pre).Error
  115. if err == gorm.ErrRecordNotFound {
  116. return nil, err
  117. }
  118. if err != nil {
  119. return nil, err
  120. }
  121. } else {
  122. err = UserWriteDB().Model(models.DevicePlan{}).Where("time IN(?) and user_org_id = ? and device_type = ? AND classtime IN(?) and status = 1", ids, orgid, devicetype, classids).Find(&pre).Error
  123. if err == gorm.ErrRecordNotFound {
  124. return nil, err
  125. }
  126. if err != nil {
  127. return nil, err
  128. }
  129. }
  130. return &pre, nil
  131. }
  132. func AddPlan(orgid int64, deviceType int64, disinfecTime string, ids []int64, classids []int64, way int64, machinedisinfectant int64, disinfectantway int64, disinfectant int64, equimentid int64, bedid int64, bed_way int64) (err error) {
  133. xt := UserWriteDB().Begin()
  134. if len(ids) > 0 {
  135. thisSQL := "INSERT INTO xt_device_plan(device_type,disinfec_time,time,classtime,way,machine_disinfectant,disinfectan_way,disinfectant,status,ctime,user_org_id,equiment_id,bed_id,bed_way) VALUES "
  136. insertParams := make([]string, 0)
  137. insertData := make([]interface{}, 0)
  138. for _, id := range ids {
  139. for _, classids := range classids {
  140. insertParams = append(insertParams, "(?,?,?,?,?,?,?,?,?,?,?,?,?,?)")
  141. insertData = append(insertData, deviceType)
  142. insertData = append(insertData, disinfecTime)
  143. insertData = append(insertData, id)
  144. insertData = append(insertData, classids)
  145. insertData = append(insertData, way)
  146. insertData = append(insertData, machinedisinfectant)
  147. insertData = append(insertData, disinfectantway)
  148. insertData = append(insertData, disinfectant)
  149. insertData = append(insertData, 1)
  150. insertData = append(insertData, time.Now().Unix())
  151. insertData = append(insertData, orgid)
  152. insertData = append(insertData, equimentid)
  153. insertData = append(insertData, bedid)
  154. insertData = append(insertData, bed_way)
  155. }
  156. }
  157. thisSQL += strings.Join(insertParams, ",")
  158. err = xt.Exec(thisSQL, insertData...).Error
  159. if err != nil {
  160. xt.Rollback()
  161. return
  162. }
  163. }
  164. xt.Commit()
  165. return
  166. }
  167. func GetAllPlan(orgid int64) (plan []*models.DevicePlans, err error) {
  168. //db := readUserDb.Table("xt_device_plan as p").Where("p.status = 1")
  169. // //table := readUserDb.Table("xt_device_addmacher as e")
  170. // //fmt.Println("table", table)
  171. // //if orgid > 0 {
  172. // // db = db.Where("p.user_org_id = ?", orgid)
  173. // //}
  174. // //err = db.Select("p.id,p.device_type,p.disinfec_time,p.time,p.classtime,p.way,p.machine_disinfectant,p.disinfectan_way,p.disinfectant,e.unit_type").Group("p.id").Joins("Left JOIN xt_device_addmacher as e On e.id = p.device_type").Order("e.unit_type asc,p.time").Scan(&plan).Error
  175. // //return plan, err
  176. err = readUserDb.Raw("select DISTINCT p.id,p.device_type,p.disinfec_time,p.time,p.classtime,p.way,p.machine_disinfectant,p.disinfectan_way,p.disinfectant,p.equiment_id,p.bed_id,e.device_mode,p.bed_way from xt_device_plan as p left join xt_device_mode as e On e.id = p.device_type where p.user_org_id = ? and p.status = 1", orgid).Order("e.device_mode asc,p.time").Scan(&plan).Error
  177. return plan, err
  178. }
  179. func GetDeviceType(unitype string) (models.DeviceMode, error) {
  180. equimentname := models.DeviceMode{}
  181. err := UserReadDB().Where("id = ?", unitype).Find(&equimentname).Error
  182. return equimentname, err
  183. }
  184. func GetAllPlanDetail(id int64, orgid int64) (plan []*models.DevicePlans, err error) {
  185. //db := readUserDb.Table("xt_device_plan as p").Where("p.status = 1")
  186. //table := readUserDb.Table("xt_device_addmacher as e")
  187. //fmt.Println("table", table)
  188. //if orgid > 0 {
  189. // db = db.Where("p.user_org_id = ?", orgid)
  190. //}
  191. //if id > 0 {
  192. // db = db.Where("p.equiment_id = ?", id)
  193. //}
  194. //err = db.Select("p.id,p.device_type,p.disinfec_time,p.time,p.classtime,p.way,p.machine_disinfectant,p.disinfectan_way,p.disinfectant,e.unit_type").Group("p.id").Joins("Left JOIN xt_device_addmacher as e On e.id = p.equiment_id").Order("p.time asc").Scan(&plan).Error
  195. //return plan, err
  196. err = readUserDb.Raw("select DISTINCT p.id,p.device_type,p.disinfec_time,p.time,p.classtime,p.way,p.machine_disinfectant,p.disinfectan_way,p.disinfectant,p.equiment_id,p.bed_id,e.device_mode,p.bed_way from xt_device_plan as p left join xt_device_mode as e On e.id = p.device_type where p.user_org_id = ? and p.device_type = ? and p.status = 1", orgid, id).Order("p.time asc,p.classtime asc").Scan(&plan).Error
  197. return plan, err
  198. }
  199. func DeletePlan(id int64) (err error) {
  200. err = UserWriteDB().Model(&models.DevicePlan{}).Where("id=?", id).Updates(map[string]interface{}{"status": 0, "mtime": time.Now().Unix()}).Error
  201. return
  202. }
  203. func DeletePlans(orgid int64, ids []int64) (err error) {
  204. if len(ids) == 1 {
  205. err = UserWriteDB().Model(&models.DevicePlan{}).Where("id=? and user_org_id = ?", ids[0], orgid).Updates(map[string]interface{}{"status": 0, "mtime": time.Now().Unix()}).Error
  206. } else {
  207. err = UserWriteDB().Model(models.DevicePlan{}).Where("id IN(?) and user_org_id = ?", ids, orgid).Updates(map[string]interface{}{"status": 0, "mtime": time.Now().Unix()}).Error
  208. }
  209. return
  210. }
  211. func GetPlanDetailById(id int64, orgid int64) (models.DevicePlanss, error) {
  212. plans := models.DevicePlanss{}
  213. db := UserReadDB().Table("xt_device_plan as x").Where("x.status = 1")
  214. table := UserReadDB().Table("xt_device_addmacher as a").Where("a.status = 1")
  215. fmt.Println("table", table)
  216. if id > 0 {
  217. db = db.Where("x.id = ?", id)
  218. }
  219. if orgid > 0 {
  220. db = db.Where("x.user_org_id = ?", orgid)
  221. }
  222. err := db.Select("x.id,x.device_type,x.disinfec_time,x.time,x.classtime,x.way,x.machine_disinfectant,x.disinfectan_way,x.disinfectant,x.status,x.user_org_id,x.equiment_id,a.unit_type").Joins("Left Join xt_device_addmacher as a ON a.id = x.equiment_id").Scan(&plans).Error
  223. return plans, err
  224. }
  225. func UpdatePlanInfo(id int64, orgid int64, plan models.DevicePlan) error {
  226. err := writeUserDb.Model(&plan).Where("id = ? AND user_org_id = ?", id, orgid).Updates(map[string]interface{}{"device_type": plan.DeviceType, "disinfec_time": plan.DisinfecTime, "time": plan.Time, "classtime": plan.Classtime, "way": plan.Way, "machine_disinfectant": plan.MachineDisinfectant, "disinfectan_way": plan.DisinfectanWay, "disinfectant": plan.Disinfectant, "mtime": time.Now().Unix()}).Error
  227. return err
  228. }
  229. func GetComprehensive(zone int64, number int64, devicetype int64, year int64, starttime int64, endtime int64, orgid int64, device_mode int64) (macher []*models.DeviceAddmachers, err error) {
  230. db := readUserDb.Table("xt_device_addmacher as a").Where("a.status = 1")
  231. table := XTReadDB().Table("xt_device_zone as x")
  232. fmt.Println(table)
  233. if orgid > 0 {
  234. db = db.Where("a.user_org_id = ?", orgid)
  235. }
  236. if zone > 0 {
  237. db = db.Where("a.zone_id = ?", zone)
  238. }
  239. if number > 0 {
  240. db = db.Where("a.bed_id = ?", number)
  241. }
  242. if devicetype > 0 {
  243. db = db.Where("a.device_type = ?", devicetype)
  244. }
  245. if device_mode > 0 {
  246. db = db.Where("a.unit_type = ?", device_mode)
  247. }
  248. if year == 1 {
  249. db = db.Where("a.user_year >= 0 AND a.user_year <= 1")
  250. }
  251. if year == 2 {
  252. db = db.Where("a.user_year >=1 AND a.user_year <= 3")
  253. }
  254. if year == 3 {
  255. db = db.Where("a.user_year >=3 AND a.user_year <= 10")
  256. }
  257. if year == 4 {
  258. db = db.Where("a.user_year >=10")
  259. }
  260. if starttime > 0 {
  261. db = db.Where("a.ctime >= ?", starttime)
  262. }
  263. if endtime > 0 {
  264. db = db.Where("a.ctime <= ?", endtime)
  265. }
  266. err = db.Select("a.id,a.serial_number,a.device_type,a.bed_number,a.device_name,a.manufacture_factory,a.service_manufacturer,a.unit_type,a.use_section,a.section_number,a.buy_date,a.install_date,a.start_date,a.maintenace_engineer,a.telephone,a.guarantee_date,a.machine_status,a.user_total,a.disinfection_mode,a.remarks,a.rubbish_date,a.rubbish_reason,a.user_year,a.work_time,a.revers_mode,a.user_org_id,a.status,a.ctime,a.mtime,a.zone_id,a.bed_id,x.name,m.device_mode").Joins("Left JOIN sgj_xt.xt_device_zone as x On x.id = a.zone_id").Joins("Left JOIN xt_device_mode as m on m.id = a.unit_type").Scan(&macher).Error
  267. return macher, err
  268. }
  269. func GetBedId(id int64) (models.DeviceAddmacher, error) {
  270. addmacher := models.DeviceAddmacher{}
  271. err := UserReadDB().Where("id = ? AND status = 1", id).Find(&addmacher).Error
  272. return addmacher, err
  273. }
  274. func GetPatientInfo(bedid int64, nowtime int64, orgid int64) (schedules []*models.Schedules, err error) {
  275. db := XTReadDB().Table("xt_schedule as s").Where("s.status = 1")
  276. table := XTReadDB().Table("xt_patients as x")
  277. fmt.Println("table", table)
  278. if bedid > 0 {
  279. db = db.Where("s.bed_id = ?", bedid)
  280. }
  281. if nowtime > 0 {
  282. db = db.Where("s.schedule_date = ?", nowtime)
  283. }
  284. if orgid > 0 {
  285. db = db.Where("s.user_org_id = ?", orgid)
  286. }
  287. err = db.Select("s.id,s.user_org_id,s.partition_id,s.bed_id,s.patient_id,s.schedule_date,s.schedule_type,s.schedule_week,s.mode_id,x.name").Joins("Left Join xt_patients as x On x.id = s.patient_id").Scan(&schedules).Error
  288. return schedules, err
  289. }
  290. func GetPatient(bedid int64, orgid int64, classid int64, nowtime int64) (schedules models.Schedules, err error) {
  291. db := XTReadDB().Table("xt_schedule as s").Where("s.status = 1")
  292. table := XTReadDB().Table("xt_patients as x")
  293. fmt.Println("table", table)
  294. err = db.Select("s.id,s.user_org_id,s.partition_id,s.bed_id,s.patient_id,s.schedule_date,s.schedule_type,s.schedule_week,s.mode_id,x.name,x.is_infectious").Joins("Left Join xt_patients as x On x.id = s.patient_id").Where("s.bed_id = ? AND s.user_org_id = ? AND s.schedule_type = ? AND s.schedule_date = ?", bedid, orgid, classid, nowtime).Scan(&schedules).Error
  295. return schedules, err
  296. }
  297. func GetPartitionName(id int64) (models.DeviceZone, error) {
  298. zone := models.DeviceZone{}
  299. err := XTReadDB().Where("id = ? AND status = 1", id).Find(&zone).Error
  300. return zone, err
  301. }
  302. func GetPatientNumber(id int64) (models.DeviceNumber, error) {
  303. number := models.DeviceNumber{}
  304. err := XTReadDB().Where("id = ? AND status = 1", id).Find(&number).Error
  305. return number, err
  306. }
  307. func GetDialysisOrder(time int64, patientid int64, orgid int64) (models.DialysisOrder, error) {
  308. order := models.DialysisOrder{}
  309. err := XTReadDB().Where("dialysis_date = ? AND patient_id = ? AND user_org_id = ? ", time, patientid, orgid).Find(&order).Error
  310. return order, err
  311. }
  312. func GetDialysisWay(time int64, patientid int64, orgid int64) (models.DialysisPrescription, error) {
  313. prescription := models.DialysisPrescription{}
  314. err := XTReadDB().Where("record_date = ? AND patient_id = ? AND user_org_id = ?", time, patientid, orgid).Find(&prescription).Error
  315. return prescription, err
  316. }
  317. func GetDialysisTime(time int64, patientid int64, orgid int64) (models.AssessmentAfterDislysis, error) {
  318. dislysis := models.AssessmentAfterDislysis{}
  319. err := XTReadDB().Where("assessment_date = ? AND patient_id = ? AND user_org_id = ?", time, patientid, orgid).Find(&dislysis).Error
  320. return dislysis, err
  321. }
  322. func GetAllOrganization(orgid int64, appid int64) (approle []*models.App_Role, err error) {
  323. err = UserReadDB().Where("org_id = ? AND app_id = ?", orgid, appid).Find(&approle).Error
  324. return approle, err
  325. }
  326. func CreateUserInformation(information *models.DeviceInformation) error {
  327. err := writeUserDb.Create(&information).Error
  328. return err
  329. }
  330. func GetRegisterInfo(orgid int64, id int64, timenow int64) (models.DeviceInformations, error) {
  331. //information := models.DeviceInformations{}
  332. var information models.DeviceInformations
  333. db := UserReadDB().Table("xt_device_information as x").Where("x.status = 1")
  334. table := XTReadDB().Table("xt_patients as p")
  335. fmt.Println("table", table)
  336. dbs := UserReadDB().Table("sgj_user_admin_role as r")
  337. fmt.Print("dbs", dbs)
  338. err = db.Select("x.id,x.date,x.class,x.zone,x.bed_number,x.patient_id,x.contagion,x.dialysis_mode,x.start_time,x.end_time,x.dialysis_hour,x.hyperfiltratio,x.weight_loss,x.warning_value,x.user_total,x.move,x.failure_stage,x.fault_description,x.code_information,x.disinfect_type,x.disinfectant_type,x.disinfection,x.machine_run,x.fluid_path,x.disinfectant,x.disinfection_status,x.disinfection_residue,x.long_time,x.disinfec_startime,x.disinfec_endtime,x.dialysis_checked,x.dialysis_name,x.norms,x.dialysis_concentration,x.germ_checked,x.germ_name,x.germ_number,x.clean,x.sign_name,x.equiment_id,p.name,r.user_name,r.admin_user_id").Joins("Left join sgj_xt.xt_patients as p On p.id = x.patient_id").Joins("Left Join sgj_user_admin_role as r on r.admin_user_id = x.sign_name").Where("x.user_org_id = ? AND x.equiment_id = ? AND x.date = ?", orgid, id, timenow).Scan(&information).Error
  339. return information, err
  340. }
  341. func GetSignName(id int64, orgid int64, appid int64) (models.App_Role, error) {
  342. role := models.App_Role{}
  343. err := UserReadDB().Model(&role).Where("admin_user_id = ? AND org_id = ? AND app_id = ?", id, orgid, appid).Find(&role).Error
  344. return role, err
  345. }
  346. func GetInformationData(limit int64, page int64, orgId int64) (information []*models.DeviceInformations, total int64, err error) {
  347. db := UserReadDB().Table("xt_device_information as x").Where("x.status = 1")
  348. table := XTReadDB().Table("xt_patients as p")
  349. fmt.Println("table", table)
  350. dbs := UserReadDB().Table("sgj_user_admin_role as r")
  351. fmt.Println("dbs", dbs)
  352. offset := (page - 1) * limit
  353. if orgId > 0 {
  354. db = db.Where("x.user_org_id = ?", orgId)
  355. }
  356. err = db.Group("x.id").Select("x.id,x.date,x.class,x.zone,x.bed_number,x.patient_id,x.contagion,x.dialysis_mode,x.start_time,x.end_time,x.dialysis_hour,x.hyperfiltratio,x.weight_loss,x.warning_value,x.user_total,x.move,x.failure_stage,x.fault_description,x.code_information,x.disinfect_type,x.disinfectant_type,x.disinfection,x.machine_run,x.fluid_path,x.disinfectant,x.disinfection_status,x.disinfection_residue,x.long_time,x.disinfec_startime,x.disinfec_endtime,x.dialysis_checked,x.dialysis_name,x.norms,x.dialysis_concentration,x.germ_checked,x.germ_name,x.germ_number,x.clean,x.sign_name,x.equiment_id,p.name,r.user_name").Count(&total).Joins("Left Join sgj_xt.xt_patients as p on p.id = x.patient_id").Joins("Left Join sgj_user_admin_role as r on r.admin_user_id = x.sign_name").Order("x.ctime desc").Offset(offset).Limit(limit).Scan(&information).Error
  357. if err != nil {
  358. return
  359. }
  360. return
  361. }
  362. func GetOrgName(orgid int64) (models.Org, error) {
  363. org := models.Org{}
  364. err := UserReadDB().Where("id= ? AND status = 1", orgid).Find(&org).Error
  365. return org, err
  366. }
  367. func GetMyMobile(id int64) (models.SgjUserAdmin, error) {
  368. admin := models.SgjUserAdmin{}
  369. err := UserReadDB().Model(&admin).Where("id=? and status = 1", id).Find(&admin).Error
  370. return admin, err
  371. }
  372. func CreateCulture(culture *models.DeviceCulture) error {
  373. err := writeUserDb.Create(&culture).Error
  374. return err
  375. }
  376. func CreateDialysate(dialysate *models.DeviceDialysate) error {
  377. err := writeUserDb.Create(&dialysate).Error
  378. return err
  379. }
  380. func CreateIon(ion *models.DeviceIon) error {
  381. err := writeUserDb.Create(&ion).Error
  382. return err
  383. }
  384. func GetAllCulture(orgId int64) (cultures []*models.DeviceCultures, err error) {
  385. db := UserReadDB().Table("xt_device_culture as x").Where("x.status = 1")
  386. table := UserReadDB().Table("sgj_user_admin_role as r")
  387. fmt.Println("table", table)
  388. if orgId > 0 {
  389. db = db.Where("x.user_org_id = ?", orgId)
  390. }
  391. err = db.Group("x.id").Select("x.id,x.speling_date,x.specimen,x.concentrate_noa,x.concentrate_nob,x.sampling_locationa,x.detection_unit,x.sampler,x.reporting_date,x.detection_result,x.bed_id,x.bed,x.sort,x.pass_examination,x.modifications,r.user_name").Joins("Left Join sgj_user_admin_role as r on r.admin_user_id = x.sampler").Scan(&cultures).Error
  392. return cultures, err
  393. }
  394. func GetAllDialysate(orgId int64) (dialysate []*models.DeviceDialysates, err error) {
  395. db := UserReadDB().Table("xt_device_dialysate as x").Where("x.status = 1")
  396. table := UserReadDB().Table("sgj_user_admin_role as r")
  397. fmt.Println("table", table)
  398. if orgId > 0 {
  399. db = db.Where("x.user_org_id = ?", orgId)
  400. }
  401. err = db.Group("x.id").Select("x.id,x.sampling_date,x.specimenb,x.concentrate_noc,x.concentrateb_nod,x.sampling_locationb,x.detection_unit,x.samplerb,x.reporting_dateb,x.detection_resultb,x.bed_id,x.bed,x.sort,x.pass_examination,x.modifications,r.user_name").Joins("Left Join sgj_user_admin_role as r on r.admin_user_id = x.samplerb").Scan(&dialysate).Error
  402. return dialysate, err
  403. }
  404. func GetAllDeviceIon(orgId int64) (ions []*models.DeviceIons, err error) {
  405. db := UserReadDB().Table("xt_device_ion as x").Where("x.status = 1")
  406. table := UserReadDB().Table("sgj_user_admin_role as r")
  407. fmt.Println("table", table)
  408. if orgId > 0 {
  409. db = db.Where("x.user_org_id = ?", orgId)
  410. }
  411. err = db.Group("x.id").Select("x.id,x.sampling_date,x.samplerc,x.detection_unit,x.concentrate_nof,x.concentrate_nog,x.date_reportc,x.actual_na,x.actual_pna,x.actual_k,x.actual_ca,x.actual_ci,x.actual_hco,x.actual_mg,x.actual_ph,x.remakes,x.bed_id,x.bed,x.sort,x.pass_examination,x.modifications,r.user_name").Joins("Left Join sgj_user_admin_role as r on r.admin_user_id = x.samplerc").Scan(&ions).Error
  412. return ions, err
  413. }
  414. func GetCultureById(id int64) (models.DeviceCulture, error) {
  415. culture := models.DeviceCulture{}
  416. err := UserReadDB().Model(&culture).Where("id=? AND status = 1", id).Find(&culture).Error
  417. return culture, err
  418. }
  419. func GetSampler(id int64) (models.App_Role, error) {
  420. role := models.App_Role{}
  421. err := UserReadDB().Model(&role).Where("id= ? AND status =1", id).Find(&role).Error
  422. return role, err
  423. }
  424. func UpdateCulture(id int64, orgid int64, culture *models.DeviceCulture) error {
  425. err := writeUserDb.Model(&culture).Where("id= ? AND user_org_id = ? AND status = ?", id, orgid, 1).Updates(map[string]interface{}{"speling_date": culture.SpelingDate, "specimen": culture.Specimen, "concentrate_noa": culture.ConcentrateNoa, "concentrate_nob": culture.ConcentrateNob, "sampling_locationa": culture.SamplingLocationa, "detection_unit": culture.DetectionUnit, "sampler": culture.Sampler, "reporting_date": culture.ReportingDate, "detection_result": culture.DetectionResult, "sort": culture.Sort, "pass_examination": culture.PassExamination, "modifications": culture.Modifications, "mtime": time.Now().Unix()}).Error
  426. return err
  427. }
  428. func DeleteCultrues(id int64) (err error) {
  429. err = UserWriteDB().Model(models.DeviceCulture{}).Where("id=?", id).Updates(map[string]interface{}{"status": 0, "mtime": time.Now().Unix()}).Error
  430. return
  431. }
  432. func DeleteCultrue(orgid int64, ids []int64) (err error) {
  433. if len(ids) == 1 {
  434. err = UserWriteDB().Model(&models.DeviceCulture{}).Where("id=? and user_org_id = ?", ids[0], orgid).Updates(map[string]interface{}{"status": 0, "mtime": time.Now().Unix()}).Error
  435. } else {
  436. err = UserWriteDB().Model(models.DeviceCulture{}).Where("id IN(?) and user_org_id = ?", ids, orgid).Updates(map[string]interface{}{"status": 0, "mtime": time.Now().Unix()}).Error
  437. }
  438. return
  439. }
  440. func GetDialystate(id int64) (models.DeviceDialysate, error) {
  441. dialysate := models.DeviceDialysate{}
  442. err := readUserDb.Where("id= ? AND status = 1", id).Find(&dialysate).Error
  443. return dialysate, err
  444. }
  445. func Updatedialystate(id int64, orgid int64, dialysate *models.DeviceDialysate) error {
  446. err := writeUserDb.Model(&dialysate).Where("id=? AND user_org_id = ? AND status = 1", id, orgid).Updates(map[string]interface{}{"sampling_date": dialysate.SamplingDate, "specimenb": dialysate.Specimenb, "concentrate_noc": dialysate.ConcentrateNoc, "concentrateb_nod": dialysate.ConcentratebNod, "sampling_locationb": dialysate.SamplingLocationb, "detection_unit": dialysate.DetectionUnit, "samplerb": dialysate.Samplerb, "reporting_dateb": dialysate.ReportingDateb, "detection_resultb": dialysate.DetectionResultb, "sort": dialysate.Sort, "pass_examination": dialysate.PassExamination, "modifications": dialysate.Modifications, "mtime": time.Now().Unix()}).Error
  447. return err
  448. }
  449. func DeleteDialystates(id int64) (err error) {
  450. err = UserWriteDB().Model(&models.DeviceDialysate{}).Where("id=?", id).Updates(map[string]interface{}{"status": 0, "mtime": time.Now().Unix()}).Error
  451. return
  452. }
  453. func DeleteDialystate(orgid int64, ids []int64) (err error) {
  454. if len(ids) == 1 {
  455. err = UserWriteDB().Model(&models.DeviceDialysate{}).Where("id=? and user_org_id = ?", ids[0], orgid).Updates(map[string]interface{}{"status": 0, "mtime": time.Now().Unix()}).Error
  456. } else {
  457. err = UserWriteDB().Model(models.DeviceDialysate{}).Where("id IN(?) and user_org_id = ?", ids, orgid).Updates(map[string]interface{}{"status": 0, "mtime": time.Now().Unix()}).Error
  458. }
  459. return
  460. }
  461. func GetIon(id int64) (models.DeviceIon, error) {
  462. ion := models.DeviceIon{}
  463. err := UserReadDB().Model(&ion).Where("id = ? AND status = 1", id).Find(&ion).Error
  464. return ion, err
  465. }
  466. func UpdateIon(id int64, orgid int64, ion *models.DeviceIon) error {
  467. err := writeUserDb.Model(&ion).Where("id = ? AND user_org_id = ? AND status = 1", id, orgid).Updates(map[string]interface{}{"sampling_date": ion.SamplingDate, "samplerc": ion.Samplerc, "detection_unit": ion.DetectionUnit, "concentrate_nof": ion.ConcentrateNof, "concentrate_nog": ion.ConcentrateNog, "date_reportc": ion.DateReportc, "actual_na": ion.ActualNa, "actual_pna": ion.ActualPna, "actual_k": ion.ActualK, "actual_ca": ion.ActualCa, "actual_ci": ion.ActualCi, "actual_hco": ion.ActualCi, "actual_mg": ion.ActualMg, "actual_ph": ion.ActualPh, "remakes": ion.Remakes, "sort": ion.Sort, "pass_examination": ion.PassExamination, "modifications": ion.Modifications, "mtime": time.Now().Unix()}).Error
  468. return err
  469. }
  470. func DeleteIons(id int64) (err error) {
  471. err = UserWriteDB().Model(&models.DeviceIon{}).Where("id=?", id).Updates(map[string]interface{}{"status": 0, "mtime": time.Now().Unix()}).Error
  472. return
  473. }
  474. func DeleteIon(orgid int64, ids []int64) (err error) {
  475. if len(ids) == 1 {
  476. err = UserWriteDB().Model(&models.DeviceIon{}).Where("id=? and user_org_id = ?", ids[0], orgid).Updates(map[string]interface{}{"status": 0, "mtime": time.Now().Unix()}).Error
  477. } else {
  478. err = UserWriteDB().Model(models.DeviceIon{}).Where("id IN(?) and user_org_id = ?", ids, orgid).Updates(map[string]interface{}{"status": 0, "mtime": time.Now().Unix()}).Error
  479. }
  480. return
  481. }
  482. func GetCultureData(bedid int64, start int64, end int64, orgId int64) (cultures []*models.DeviceCultures, err error) {
  483. db := UserReadDB().Table("xt_device_culture as x").Where("x.status = 1")
  484. table := UserReadDB().Table("sgj_user_admin_role as r")
  485. fmt.Println("table", table)
  486. if orgId > 0 {
  487. db = db.Where("x.user_org_id = ?", orgId)
  488. }
  489. if bedid > 0 {
  490. db = db.Where("x.bed_id = ?", bedid)
  491. }
  492. if start > 0 {
  493. db = db.Where("x.speling_date >= ?", start)
  494. }
  495. if end > 0 {
  496. db = db.Where("x.speling_date <= ?", end)
  497. }
  498. err = db.Group("x.id").Select("x.id,x.speling_date,x.specimen,x.concentrate_noa,x.concentrate_nob,x.sampling_locationa,x.detection_unit,x.sampler,x.reporting_date,x.detection_result,x.bed_id,x.bed,r.user_name").Joins("Left Join sgj_user_admin_role as r on r.admin_user_id = x.sampler").Scan(&cultures).Error
  499. return cultures, err
  500. }
  501. func GetDeviceIonData(bedid int64, start int64, end int64, orgId int64) (ions []*models.DeviceIons, err error) {
  502. db := UserReadDB().Table("xt_device_ion as x").Where("x.status = 1")
  503. table := UserReadDB().Table("sgj_user_admin_role as r")
  504. fmt.Println("table", table)
  505. if orgId > 0 {
  506. db = db.Where("x.user_org_id = ?", orgId)
  507. }
  508. if bedid > 0 {
  509. db = db.Where("x.bed_id = ?", bedid)
  510. }
  511. if start > 0 {
  512. db = db.Where("x.sampling_date >= ?", start)
  513. }
  514. if end > 0 {
  515. db = db.Where("x.sampling_date <= ?", end)
  516. }
  517. err = db.Group("x.id").Select("x.id,x.sampling_date,x.samplerc,x.detection_unit,x.concentrate_nof,x.concentrate_nog,x.date_reportc,x.actual_na,x.actual_pna,x.actual_k,x.actual_ca,x.actual_ci,x.actual_hco,x.actual_mg,x.actual_ph,x.remakes,x.bed_id,x.bed,r.user_name").Joins("Left Join sgj_user_admin_role as r on r.admin_user_id = x.samplerc").Scan(&ions).Error
  518. return ions, err
  519. }
  520. func CreateRepair(repair *models.DeviceRepair) error {
  521. err = writeUserDb.Create(&repair).Error
  522. return err
  523. }
  524. func GetAllRepair(orgid int64, limit int64, page int64) (repair []*models.DeviceRepairs, total int64, err error) {
  525. db := UserReadDB().Table("xt_device_repair as r").Where("r.status = ?", 1)
  526. table := XTReadDB().Table("xt_device_number as x")
  527. offset := (page - 1) * limit
  528. fmt.Print("table", table)
  529. if orgid > 0 {
  530. db = db.Where("r.user_org_id = ?", orgid)
  531. }
  532. err = db.Count(&total).Select("r.id,r.guarantee_date,r.start_time,r.arrive_time,r.finish_time,r.total_distance,r.failure_stage,r.fault_description,r.cause_analysis,r.treatment_process,r.images,r.exclude,r.reason,r.ctime,r.mtime,r.status,r.user_org_id,r.bed_id,r.equitment_id,r.code_information,x.number").Joins("Left join sgj_xt.xt_device_number as x on x.id = r.bed_id").Offset(offset).Limit(limit).Scan(&repair).Error
  533. // err = UserReadDB().Where("user_org_id = ? AND status = 1", orgid).Find(&repair).Error
  534. return repair, total, err
  535. }
  536. func EditRepair(id int64) (models.DeviceRepair, error) {
  537. repair := models.DeviceRepair{}
  538. err := UserReadDB().Where("id = ? AND status = 1", id).Find(&repair).Error
  539. return repair, err
  540. }
  541. func UpdateRepair(id int64, orgid int64, repair *models.DeviceRepair) error {
  542. err := writeUserDb.Model(&repair).Where("id=? AND user_org_id = ? AND status = 1", id, orgid).Updates(map[string]interface{}{"guarantee_date": repair.GuaranteeDate, "start_time": repair.StartTime, "arrive_time": repair.ArriveTime, "finish_time": repair.FinishTime, "total_distance": repair.TotalDistance, "failure_stage": repair.FailureStage, "fault_description": repair.FaultDescription, "cause_analysis": repair.CauseAnalysis, "treatment_process": repair.TreatmentProcess, "images": repair.Images, "exclude": repair.Exclude, "reason": repair.Reason, "code_information": repair.CodeInformation, "image_name": repair.ImageName, "mtime": time.Now().Unix(), "function_accessories_inspection": repair.FunctionAccessoriesInspection, "other_information": repair.OtherInformation, "admin_user_id": repair.AdminUserId}).Error
  543. return err
  544. }
  545. func DeleteRepairs(id int64) (err error) {
  546. err = UserWriteDB().Model(models.DeviceRepair{}).Where("id=?", id).Updates(map[string]interface{}{"status": 0, "mtime": time.Now().Unix()}).Error
  547. return
  548. }
  549. func DeleteRepair(orgid int64, ids []int64) (err error) {
  550. if len(ids) == 1 {
  551. err = UserWriteDB().Model(&models.DeviceRepair{}).Where("id=? and user_org_id = ?", ids[0], orgid).Updates(map[string]interface{}{"status": 0, "mtime": time.Now().Unix()}).Error
  552. } else {
  553. err = UserWriteDB().Model(models.DeviceRepair{}).Where("id IN(?) and user_org_id = ?", ids, orgid).Updates(map[string]interface{}{"status": 0, "mtime": time.Now().Unix()}).Error
  554. }
  555. return
  556. }
  557. func GetRepair(bedid int64, start int64, end int64, orgid int64) (repair []*models.DeviceRepairs, err error) {
  558. db := UserReadDB().Table("xt_device_repair as r").Where("r.status = 1")
  559. sb := UserReadDB().Table("xt_device_addmacher as x")
  560. fmt.Print("sb", sb)
  561. if orgid > 0 {
  562. db = db.Where("r.user_org_id = ?", orgid)
  563. }
  564. if bedid > 0 {
  565. db = db.Where("r.bed_id = ?", bedid)
  566. }
  567. if start > 0 {
  568. db = db.Where("r.guarantee_date >= ?", start)
  569. }
  570. if end > 0 {
  571. db = db.Where("r.guarantee_date <= ?", end)
  572. }
  573. //err = db.Model(&repair).Find(&repair).Error
  574. err = db.Select("r.id,r.guarantee_date,r.start_time,r.arrive_time,r.finish_time,r.total_distance,r.failure_stage,r.fault_description,r.cause_analysis,r.treatment_process,r.images,r.exclude,r.reason,r.ctime,r.mtime,r.status,r.user_org_id,r.bed_id,r.equitment_id,r.code_information,x.number").Joins("Left join sgj_xt.xt_device_number as x on x.id = r.bed_id").Scan(&repair).Error
  575. return repair, err
  576. }
  577. func GetUserInformation(id int64) (models.DeviceInformation, error) {
  578. information := models.DeviceInformation{}
  579. err := UserReadDB().Where("id = ? AND status = 1", id).Find(&information).Error
  580. return information, err
  581. }
  582. func GetPatientInfoMation(patieintid int64) (models.Patients, error) {
  583. patients := models.Patients{}
  584. err := XTReadDB().Where("id = ? AND status = 1", patieintid).Find(&patients).Error
  585. return patients, err
  586. }
  587. func DeleteUserLogin(id int64) (err error) {
  588. err = UserWriteDB().Model(&models.DeviceInformation{}).Where("id=?", id).Updates(map[string]interface{}{"status": 0, "mtime": time.Now().Unix()}).Error
  589. return
  590. }
  591. func DeleteForm(orgid int64, ids []int64) (err error) {
  592. if len(ids) == 1 {
  593. err = UserWriteDB().Model(&models.DeviceInformation{}).Where("id=? and user_org_id = ?", ids[0], orgid).Updates(map[string]interface{}{"status": 0, "mtime": time.Now().Unix()}).Error
  594. } else {
  595. err = UserWriteDB().Model(models.DeviceInformation{}).Where("id IN(?) and user_org_id = ?", ids, orgid).Updates(map[string]interface{}{"status": 0, "mtime": time.Now().Unix()}).Error
  596. }
  597. return
  598. }
  599. func GetLastInformationdata(eid int64, startdate int64, orgid int64) (models.DeviceInformation, error) {
  600. information := models.DeviceInformation{}
  601. err := UserReadDB().Model(&information).Where("equiment_id = ? and date = ? and user_org_id = ? and status = 1", eid, startdate, orgid).Last(&information).Error
  602. return information, err
  603. }
  604. func UpdateAddMacherBedID(id int64, orgid int64, addmacher *models.DeviceAddmacher) error {
  605. err := UserWriteDB().Model(&addmacher).Where("id=? and user_org_id = ? and status =1", id, orgid).Update(map[string]interface{}{"bed_id": addmacher.BedId, "mtime": addmacher.Mtime}).Error
  606. return err
  607. }
  608. func UpdatedZoneID(bedid int64, orgid int64, number *models.DeviceNumber) error {
  609. err := XTWriteDB().Model(&number).Where("id=? and org_id = ?", bedid, orgid).Update(map[string]interface{}{"zone_id": number.ZoneID, "mtime": time.Now().Unix()}).Error
  610. return err
  611. }
  612. func UpadateForm(id int64, orgid int64, infor *models.DeviceInformation) error {
  613. err := UserWriteDB().Model(&infor).Where("id = ? AND user_org_id = ? AND status = 1", id, orgid).Updates(map[string]interface{}{"date": infor.Date, "class": infor.Class, "zone": infor.Zone, "bed_number": infor.BedNumber, "contagion": infor.Contagion, "dialysis_mode": infor.DialysisMode, "start_time": infor.StartTime, "end_time": infor.EndTime, "dialysis_hour": infor.DialysisHour, "hyperfiltratio": infor.Hyperfiltratio, "weight_loss": infor.WeightLoss, "warning_value": infor.WarningValue, "user_total": infor.UserTotal, "move": infor.Move, "failure_stage": infor.FailureStage, "fault_description": infor.FaultDescription, "code_information": infor.CodeInformation, "disinfect_type": infor.DisinfectType, "disinfectant_type": infor.DisinfectantType, "disinfection": infor.Disinfection, "machine_run": infor.MachineRun, "fluid_path": infor.FluidPath, "disinfectant": infor.Disinfectant, "disinfection_status": infor.DisinfectionStatus, "disinfection_residue": infor.DisinfectionResidue, "long_time": infor.LongTime, "disinfec_startime": infor.DisinfecStartime, "disinfec_endtime": infor.DisinfecEndtime, "dialysis_checked": infor.DialysisChecked, "dialysis_name": infor.DialysisName, "norms": infor.Norms, "dialysis_concentration": infor.DialysisConcentration,
  614. "germ_checked": infor.GermChecked, "germ_name": infor.GermName, "germ_number": infor.GermNumber, "clean": infor.Clean, "sign_name": infor.SignName, "bed": infor.Bed, "patient_id": infor.PatientId, "mtime": time.Now().Unix()}).Error
  615. return err
  616. }
  617. func QueryInfo(bed int64, start int64, end int64, orgId int64, limit int64, page int64) (infor []*models.DeviceInformations, total int64, err error) {
  618. db := UserReadDB().Table("xt_device_information as x").Where("x.status = 1")
  619. table := XTReadDB().Table("xt_patients as p")
  620. fmt.Println("table", table)
  621. dbs := UserReadDB().Table("sgj_user_admin_role as r")
  622. fmt.Println("dbs", dbs)
  623. if orgId > 0 {
  624. db = db.Where("x.user_org_id = ?", orgId)
  625. }
  626. //if zone > 0 {
  627. // db = db.Where("x.zone = ?", zone)
  628. //}
  629. if bed > 0 {
  630. db = db.Where("x.bed_number = ?", bed)
  631. }
  632. if start > 0 {
  633. db = db.Where("x.date >= ?", start)
  634. }
  635. if end > 0 {
  636. db = db.Where("x.date <= ?", end)
  637. }
  638. offset := (page - 1) * limit
  639. err = db.Group("x.id").Select("x.id,x.date,x.class,x.zone,x.bed_number,x.patient_id,x.contagion,x.dialysis_mode,x.start_time,x.end_time,x.dialysis_hour,x.hyperfiltratio,x.weight_loss,x.warning_value,x.user_total,x.move,x.failure_stage,x.fault_description,x.code_information,x.disinfect_type,x.disinfectant_type,x.disinfection,x.machine_run,x.fluid_path,x.disinfectant,x.disinfection_status,x.disinfection_residue,x.long_time,x.disinfec_startime,x.disinfec_endtime,x.dialysis_checked,x.dialysis_name,x.norms,x.dialysis_concentration,x.germ_checked,x.germ_name,x.germ_number,x.clean,x.sign_name,x.equiment_id,x.bed,p.name,r.user_name").Count(&total).Joins("Left Join sgj_xt.xt_patients as p on p.id = x.patient_id").Joins("Left Join sgj_user_admin_role as r on r.admin_user_id = x.sign_name").Order("x.ctime desc").Offset(offset).Limit(limit).Scan(&infor).Error
  640. if err != nil {
  641. return
  642. }
  643. return
  644. }
  645. func GetPatientID(bedid int64, orgId int64, nowtime int64) (dialysis []*models.DialysisOrder, err error) {
  646. err = XTReadDB().Model(&dialysis).Where("bed_id = ? AND user_org_id = ? AND dialysis_date = ?", bedid, orgId, nowtime).Find(&dialysis).Error
  647. return dialysis, err
  648. }
  649. //func GetAllEquitType(orgId int64) (addmacher []*models.DeviceAddmacher, err error) {
  650. //
  651. // db := UserReadDB().Table("xt_device_addmacher as a").Where("a.status = 1")
  652. // if orgId > 0 {
  653. // db = db.Where("a.user_org_id = ?", orgId)
  654. // }
  655. // err = db.Group("a.unit_type").Select("a.id,a.serial_number,a.device_type,a.bed_number,a.device_name,a.manufacture_factory,a.service_manufacturer,a.unit_type,a.use_section,a.section_number,a.buy_date,a.install_date,a.start_date,a.maintenace_engineer,a.telephone,a.guarantee_date,a.machine_status,a.user_total,a.disinfection_mode,a.remarks,a.rubbish_date,a.rubbish_reason,a.user_year,a.work_time,a.revers_mode,a.user_org_id,a.status,a.ctime,a.mtime,a.zone_id,a.bed_id").Where("a.device_type <> 2 AND a.device_type <> 3").Scan(&addmacher).Error
  656. // return addmacher, err
  657. //}
  658. func GetAllEquitType(orgid int64) (equiment []*models.DeviceEquimentname, err error) {
  659. //err = UserReadDB().Raw("select equitment_name,id,user_org_id,equitment_id from xt_device_equimentname where user_org_id = ? GROUP BY equitment_name ",orgid).Scan(&equiment).Error
  660. //err = UserReadDB().Raw("SELECT e.id,e.equitment_name,e.user_org_id,e.equitment_id FROM xt_device_equimentname as e LEFT JOIN xt_device_addmacher as a ON a.id = e.equitment_id WHERE a.status = 1 AND a.device_type <> 2 AND a.device_type <> 3 AND e.user_org_id = ? GROUP BY equitment_name", orgid).Scan(&equiment).Error
  661. //err = UserReadDB().Where("user_org_id = ? and status =1", orgid).Find(&equiment).Error
  662. err = UserReadDB().Raw("select x.equitment_name,x.id,x.user_org_id,x.equitment_id,x.bed_id from xt_device_equimentname as x where x.user_org_id = ? and x.status = ? GROUP BY x.equitment_name", orgid, 1).Scan(&equiment).Error
  663. return equiment, err
  664. }
  665. func GetAllEquitName(orgid int64) (equiment []*models.DeviceEquimentname, err error) {
  666. err = UserReadDB().Raw("select id,equitment_name,status,ctime,mtime,user_org_id,equitment_id from xt_device_equimentname as e Where EXISTS (select id from xt_device_addmacher as a where a.id = e.equitment_id and a.status = 1) AND e.user_org_id = ? AND e.status = 1 ", orgid).Scan(&equiment).Error
  667. return equiment, err
  668. }
  669. func GetUserForm(id int64, orgId int64, limit int64, page int64) (infor []*models.DeviceInformations, total int64, err error) {
  670. if orgId == 10060 {
  671. db := UserReadDB().Table("xt_device_information as x").Where("x.status = 1")
  672. table := XTReadDB().Table("xt_patients as p")
  673. fmt.Println("table", table)
  674. dbs := UserReadDB().Table("sgj_user_admin_role as r")
  675. fmt.Println("dbs", dbs)
  676. offset := (page - 1) * limit
  677. if id > 0 {
  678. db = db.Where("x.equiment_id = ?", id)
  679. }
  680. if orgId > 0 {
  681. db = db.Where("x.user_org_id = ?", orgId)
  682. }
  683. err = db.Group("x.id").Select("x.id,x.date,x.class,x.zone,x.bed_number,x.patient_id,x.contagion,x.dialysis_mode,x.start_time,x.end_time,x.dialysis_hour,x.hyperfiltratio,x.weight_loss,x.warning_value,x.user_total,x.move,x.failure_stage,x.fault_description,x.code_information,x.disinfect_type,x.disinfectant_type,x.disinfection,x.machine_run,x.fluid_path,x.disinfectant,x.disinfection_status,x.disinfection_residue,x.long_time,x.disinfec_startime,x.disinfec_endtime,x.dialysis_checked,x.dialysis_name,x.norms,x.dialysis_concentration,x.germ_checked,x.germ_name,x.germ_number,x.clean,x.sign_name,x.equiment_id,x.bed,p.name,r.admin_user_id,r.user_name").Count(&total).Joins("Left Join sgj_xt.xt_patients as p on p.id = x.patient_id").Joins("Left Join sgj_user_admin_role as r on r.admin_user_id = x.sign_name").Offset(offset).Limit(limit).Order("x.date asc").Scan(&infor).Error
  684. if err != nil {
  685. return
  686. }
  687. return
  688. } else {
  689. db := UserReadDB().Table("xt_device_information as x").Where("x.status = 1")
  690. table := XTReadDB().Table("xt_patients as p")
  691. fmt.Println("table", table)
  692. dbs := UserReadDB().Table("sgj_user_admin_role as r")
  693. fmt.Println("dbs", dbs)
  694. offset := (page - 1) * limit
  695. if id > 0 {
  696. db = db.Where("x.equiment_id = ?", id)
  697. }
  698. if orgId > 0 {
  699. db = db.Where("x.user_org_id = ?", orgId)
  700. }
  701. err = db.Group("x.id").Select("x.id,x.date,x.class,x.zone,x.bed_number,x.patient_id,x.contagion,x.dialysis_mode,x.start_time,x.end_time,x.dialysis_hour,x.hyperfiltratio,x.weight_loss,x.warning_value,x.user_total,x.move,x.failure_stage,x.fault_description,x.code_information,x.disinfect_type,x.disinfectant_type,x.disinfection,x.machine_run,x.fluid_path,x.disinfectant,x.disinfection_status,x.disinfection_residue,x.long_time,x.disinfec_startime,x.disinfec_endtime,x.dialysis_checked,x.dialysis_name,x.norms,x.dialysis_concentration,x.germ_checked,x.germ_name,x.germ_number,x.clean,x.sign_name,x.equiment_id,x.bed,p.name,r.admin_user_id,r.user_name").Count(&total).Joins("Left Join sgj_xt.xt_patients as p on p.id = x.patient_id").Joins("Left Join sgj_user_admin_role as r on r.admin_user_id = x.sign_name").Offset(offset).Limit(limit).Order("x.date desc").Scan(&infor).Error
  702. if err != nil {
  703. return
  704. }
  705. return
  706. }
  707. }
  708. func GetBedNumber(id int64, orgid int64) (models.DeviceAddmacher, error) {
  709. addmacher := models.DeviceAddmacher{}
  710. err := UserReadDB().Where("id= ? AND user_org_id = ?", id, orgid).Find(&addmacher).Error
  711. return addmacher, err
  712. }
  713. func GetNumbers(id int64, orgid int64) (models.DeviceNumber, error) {
  714. number := models.DeviceNumber{}
  715. err := XTReadDB().Where("id = ? AND org_id = ?", id, orgid).Find(&number).Error
  716. return number, err
  717. }
  718. func GetZoneForm(id int64) (models.DeviceAddmacher, error) {
  719. macher := models.DeviceAddmacher{}
  720. err := UserReadDB().Where("id=? AND status = 1", id).Find(&macher).Error
  721. return macher, err
  722. }
  723. func GetBedForm(id int64) (number []*models.DeviceNumber, err error) {
  724. err = XTReadDB().Where("zone_id = ? AND status = 1", id).Find(&number).Error
  725. return number, err
  726. }
  727. func GetTotalCount(orgid int64) (repair []*models.DeviceRepair, total int64, err error) {
  728. err = UserReadDB().Model(&repair).Where("user_org_id = ? and status = 1", orgid).Find(&repair).Count(&total).Error
  729. return repair, total, err
  730. }
  731. func GetTotalNumber(id int64, orgid int64) (total int64, err error) {
  732. var device models.DeviceInformation
  733. err = UserReadDB().Model(&device).Where("equiment_id = ? AND user_org_id = ? AND status = 1", id, orgid).Find(&device).Count(&total).Error
  734. return total, err
  735. }
  736. func GetTimeWarning(equitid int64, orgId int64) (models.DeviceInformation, error) {
  737. information := models.DeviceInformation{}
  738. err = UserReadDB().Where(" user_org_id = ? AND status = 1 AND equiment_id = ? AND (dialysis_checked = 1 or dialysis_checked = 0)", orgId, equitid).Last(&information).Error
  739. return information, err
  740. }
  741. func GetTimeLast(equitid int64, orgId int64) (models.DeviceInformation, error) {
  742. information := models.DeviceInformation{}
  743. err := UserReadDB().Model(&information).Where("equiment_id = ? AND user_org_id = ? AND status = 1 AND (germ_checked = 1 or germ_checked = 0)", equitid, orgId).Last(&information).Error
  744. return information, err
  745. }
  746. func GetTimeLastData(equitid int64, orgId int64) (models.DeviceInformation, error) {
  747. information := models.DeviceInformation{}
  748. err := UserReadDB().Model(&information).Where("equiment_id = ? AND user_org_id = ? AND status = 1 AND (clean = 1 or clean = 0)", equitid, orgId).Last(&information).Error
  749. return information, err
  750. }
  751. func GetAllpatient(orgid int64) (patients []*models.Patients, err error) {
  752. err = XTReadDB().Where("user_org_id = ? and status = 1", orgid).Find(&patients).Error
  753. return patients, err
  754. }
  755. func GetAllpatientThirty(orgid int64) (patients []*models.PatientsThirty, err error) {
  756. err = XTReadDB().Where("user_org_id = ? and status = 1", orgid).Find(&patients).Error
  757. return patients, err
  758. }
  759. func GetInformation(eid int64, startdate int64, orgid int64, classtype int64) (*models.DeviceInformation, error) {
  760. var information models.DeviceInformation
  761. var err error
  762. err = UserReadDB().Model(&information).Where("equiment_id = ? and user_org_id = ? and status = ? and date = ? and class = ?", eid, orgid, 1, startdate, classtype).Find(&information).Error
  763. fmt.Print("", err)
  764. if err == gorm.ErrRecordNotFound {
  765. return nil, err
  766. }
  767. if err != nil {
  768. return nil, err
  769. }
  770. return &information, nil
  771. }
  772. func GetLastInformationById(eid int64, orgid int64) (models.DeviceInformation, error) {
  773. information := models.DeviceInformation{}
  774. err := UserReadDB().Model(&information).Where("equiment_id = ? and user_org_id = ? and status = 1", eid, orgid).Last(&information).Error
  775. return information, err
  776. }
  777. func ChangeBed(id int64, org int64) (number []*models.DeviceNumber, err error) {
  778. err = XTReadDB().Model(&number).Where("zone_id = ? AND status = 1 AND org_id = ? ", id, org).Find(&number).Error
  779. return number, err
  780. }
  781. func GetPatientDetail(id int64, orgid int64) (models.Patients, error) {
  782. patients := models.Patients{}
  783. err := XTReadDB().Where("id=? and user_org_id = ?", id, orgid).Find(&patients).Error
  784. return patients, err
  785. }
  786. func GetRemanderData(orgid int64) (remander models.DeviceRemander, err error) {
  787. err = UserReadDB().Model(&models.DeviceRemander{}).Where("user_org_id = ? and status = 1", orgid).Find(&remander).Error
  788. return
  789. }
  790. func CreateRemander(remander *models.DeviceRemander) (err error) {
  791. err = UserWriteDB().Create(&remander).Error
  792. return
  793. }
  794. func UpdateRemander(remander *models.DeviceRemander) (err error) {
  795. err = UserWriteDB().Save(&remander).Error
  796. return
  797. }
  798. func GetMode(mode string, orgid int64) (*models.DeviceMode, error) {
  799. var information models.DeviceMode
  800. var err error
  801. err = UserReadDB().Model(&information).Where("device_mode = ? and user_org_id = ? and status = ?", mode, orgid, 1).Find(&information).Error
  802. fmt.Print("", err)
  803. if err == gorm.ErrRecordNotFound {
  804. return nil, err
  805. }
  806. if err != nil {
  807. return nil, err
  808. }
  809. return &information, nil
  810. }
  811. func SaveMode(mode *models.DeviceMode) (err error) {
  812. err = UserWriteDB().Save(&mode).Error
  813. return
  814. }
  815. func GetAllMode(orgid int64) (mode []*models.DeviceMode, err error) {
  816. err = UserReadDB().Where("user_org_id = ? and status = ?", orgid, 1).Find(&mode).Error
  817. return mode, err
  818. }
  819. func GetModeById(id int64) (models.DeviceMode, error) {
  820. mode := models.DeviceMode{}
  821. err := UserReadDB().Where("id = ?", id).Find(&mode).Error
  822. return mode, err
  823. }
  824. func UpdateMode(id int64, mode models.DeviceMode) error {
  825. err := UserWriteDB().Model(&mode).Where("id=?", id).Update(map[string]interface{}{"device_mode": mode.DeviceMode, "mtime": time.Now().Unix()}).Error
  826. return err
  827. }
  828. func QueryDeviceMode(id int64, orgid int64) (*models.DeviceAddmacher, error) {
  829. addmacher := models.DeviceAddmacher{}
  830. var err error
  831. err = UserReadDB().Model(&addmacher).Where("unit_type = ? and user_org_id = ?", id, orgid).Find(&addmacher).Error
  832. if err == gorm.ErrRecordNotFound {
  833. return nil, err
  834. }
  835. if err != nil {
  836. return nil, err
  837. }
  838. return &addmacher, nil
  839. }
  840. func DeleteMode(id int64) error {
  841. err := UserWriteDB().Model(models.DeviceMode{}).Where("id=?", id).Update(map[string]interface{}{"status": 0}).Error
  842. return err
  843. }
  844. func SelectChange(id int64, orgid int64) (number []*models.DeviceNumber, err error) {
  845. //err = XTReadDB().Where("zone_id = ? and org_id = ? and status = ?", id, orgid, 1).Find(&number).Error
  846. db := XTReadDB().Table("xt_device_number as x").Where("x.status = ?", 1)
  847. err = db.Select("org_id,number,group_id,zone_id as id").Where("zone_id = ? and org_id = ?", id, orgid).Find(&number).Error
  848. return number, err
  849. }
  850. func SelectBed(id int64, orgid int64) (models.DeviceNumber, error) {
  851. number := models.DeviceNumber{}
  852. err := XTReadDB().Where("id = ? and org_id = ?", id, orgid).Find(&number).Error
  853. return number, err
  854. }
  855. func GetTimeData(equitid int64, orgid int64, timenow int64) (information []*models.DeviceInformation, err error) {
  856. //db := UserReadDB().Table("xt_device_information as x").Where("x.status = 1")
  857. //err = db.Raw("select id,date,class,zone,bed_number,patient_id,contagion,dialysis_mode,start_time,end_time,dialysis_hour,hyperfiltratio,weight_loss,warning_value,user_total,move,failure_stage,fault_description,code_information,disinfect_type,disinfectant_type,disinfection,machine_run,fluid_path,disinfectant,disinfection_status,disinfection_residue,long_time,disinfec_startime,disinfec_endtime,dialysis_checked,dialysis_name,norms,dialysis_concentration,germ_checked,germ_name,germ_number,clean,sign_name,status,ctime,mtime,user_org_id,equiment_id,bed,stime from xt_device_information where DATE_SUB(CURDATE(), INTERVAL 30 DAY) <= ? and equiment_id = ? and user_org_id = ?",timenow,equitid, orgid).Error
  858. day := time.Now().Day()
  859. oldMonth := day - 30
  860. t := time.Date(time.Now().Year(), time.Now().Month(), oldMonth, time.Now().Hour(), time.Now().Minute(), time.Now().Second(), time.Now().Nanosecond(), time.Local)
  861. err = UserReadDB().Model(&information).Where("date>= ? and date <= ? and equiment_id = ? and user_org_id = ? and dialysis_checked = 1 ", t.Unix(), timenow, equitid, orgid).Find(&information).Error
  862. return information, err
  863. }
  864. func GetTimeTwo(equitid int64, orgid int64, timenow int64) (information []*models.DeviceInformation, err error) {
  865. //db := UserReadDB().Table("xt_device_information as x").Where("x.status = 1")
  866. //err = db.Raw("select id,date,class,zone,bed_number,patient_id,contagion,dialysis_mode,start_time,end_time,dialysis_hour,hyperfiltratio,weight_loss,warning_value,user_total,move,failure_stage,fault_description,code_information,disinfect_type,disinfectant_type,disinfection,machine_run,fluid_path,disinfectant,disinfection_status,disinfection_residue,long_time,disinfec_startime,disinfec_endtime,dialysis_checked,dialysis_name,norms,dialysis_concentration,germ_checked,germ_name,germ_number,clean,sign_name,status,ctime,mtime,user_org_id,equiment_id,bed,stime from xt_device_information where DATE_SUB(CURDATE(), INTERVAL 30 DAY) <= ? and equiment_id = ? and user_org_id = ?",timenow,equitid, orgid).Error
  867. day := time.Now().Day()
  868. oldMonth := day - 30
  869. t := time.Date(time.Now().Year(), time.Now().Month(), oldMonth, time.Now().Hour(), time.Now().Minute(), time.Now().Second(), time.Now().Nanosecond(), time.Local)
  870. err = UserReadDB().Model(&information).Where("date >= ? and date<= ? and equiment_id = ? and user_org_id = ? and germ_checked = 1 ", t.Unix(), timenow, equitid, orgid).Find(&information).Error
  871. return information, err
  872. }
  873. func GetTimeThree(equitid int64, orgid int64, timenow int64) (information []*models.DeviceInformation, err error) {
  874. //db := UserReadDB().Table("xt_device_information as x").Where("x.status = 1")
  875. //err = db.Raw("select id,date,class,zone,bed_number,patient_id,contagion,dialysis_mode,start_time,end_time,dialysis_hour,hyperfiltratio,weight_loss,warning_value,user_total,move,failure_stage,fault_description,code_information,disinfect_type,disinfectant_type,disinfection,machine_run,fluid_path,disinfectant,disinfection_status,disinfection_residue,long_time,disinfec_startime,disinfec_endtime,dialysis_checked,dialysis_name,norms,dialysis_concentration,germ_checked,germ_name,germ_number,clean,sign_name,status,ctime,mtime,user_org_id,equiment_id,bed,stime from xt_device_information where DATE_SUB(CURDATE(), INTERVAL 30 DAY) <= ? and equiment_id = ? and user_org_id = ?",timenow,equitid, orgid).Error
  876. day := time.Now().Day()
  877. oldMonth := day - 30
  878. t := time.Date(time.Now().Year(), time.Now().Month(), oldMonth, time.Now().Hour(), time.Now().Minute(), time.Now().Second(), time.Now().Nanosecond(), time.Local)
  879. err = UserReadDB().Model(&information).Where("date >= ? and date <= ? and equiment_id = ? and user_org_id = ? and clean = 1 ", t.Unix(), timenow, equitid, orgid).Find(&information).Error
  880. return information, err
  881. }
  882. func DeleteImages(id int64) error {
  883. repair := models.DeviceRepair{}
  884. err := UserWriteDB().Model(&repair).Where("id=?", id).Update(map[string]interface{}{"images": "", "image_name": ""}).Error
  885. return err
  886. }
  887. func GetActivtyCreator(creator int64) (*models.KyActivityTable, error) {
  888. table := models.KyActivityTable{}
  889. err := UserReadDB().Model(&table).Where("admin_user_id = ? and status =1", creator).Find(&table).Error
  890. if err == gorm.ErrRecordNotFound {
  891. return nil, err
  892. }
  893. if err != nil {
  894. return nil, err
  895. }
  896. return &table, nil
  897. }
  898. func CreateTable(table *models.KyActivityTable) error {
  899. err := UserWriteDB().Model(&table).Create(&table).Error
  900. return err
  901. }
  902. func GetAdminUserRole(id int64, orgid int64) (models.SgjUserAdminRole, error) {
  903. role := models.SgjUserAdminRole{}
  904. err := UserReadDB().Where("admin_user_id = ? and org_id = ? and status = 1", id, orgid).Find(&role).Error
  905. return role, err
  906. }
  907. func GetRolePosition(id int64) (models.SgjUserRole, error) {
  908. role := models.SgjUserRole{}
  909. err := UserReadDB().Where("id = ? And status =1", id).Find(&role).Error
  910. return role, err
  911. }
  912. func GetMobile(id int64) (models.SgjUserAdmin, error) {
  913. admin := models.SgjUserAdmin{}
  914. err := UserReadDB().Where("id=? and status = 1", id).Find(&admin).Error
  915. return admin, err
  916. }
  917. func GetOrgs(id int64) (roles []*models.SgjUserAdminRole, err error) {
  918. db := UserReadDB().Table("sgj_user_admin_role as s").Where("s.status = 1")
  919. err = db.Group("s.org_id").Select("s.admin_user_id,s.org_id,s.app_id,s.role_id,s.user_name,s.avatar,s.user_type,s.user_title,s.intro,s.user_title_name,s.role_ids,s.message,s.sex,s.birthday,x.org_name,x.org_logo,x.creator,x.id").Where("s.admin_user_id = ?", id).Joins("left join sgj_user_org as x on x.id = s.org_id").Scan(&roles).Error
  920. return roles, err
  921. }
  922. func GetUserMachTotalCount(orgid int64) (vm []*models.VmDeviceInformation, err error) {
  923. err = UserReadDB().Raw("SELECT x.bed_number,count(*) as total FROM xt_device_information as x WHERE user_org_id = ? and `status` = 1 GROUP BY x.bed_number ", orgid).Scan(&vm).Error
  924. return vm, err
  925. }
  926. func GetUserTotalByMacher(id int64) (models.DeviceAddmacher, error) {
  927. addmacher := models.DeviceAddmacher{}
  928. err := UserReadDB().Model(&addmacher).Where("id=? and status = 1", id).Find(&addmacher).Error
  929. return addmacher, err
  930. }
  931. func GetUserTotalCount(orgid int64, bedid int64) (vm []*models.VmDeviceInformation, err error) {
  932. err = UserReadDB().Raw("SELECT x.bed_number,count(*) as total FROM xt_device_information as x WHERE user_org_id = ? and `status` = 1 and bed_number= ? GROUP BY x.bed_number ", orgid, bedid).Scan(&vm).Error
  933. return vm, err
  934. }
  935. func GetUserTotal(orgid int64, id int64) (models.DeviceAddmacher, error) {
  936. addmacher := models.DeviceAddmacher{}
  937. err := UserReadDB().Model(&addmacher).Where("user_org_id = ? and bed_id = ? and status = 1", orgid, id).Find(&addmacher).Error
  938. return addmacher, err
  939. }
  940. func GetDisInfectionTime(orgid int64, unitype int64, scheduletype int64, scheduleweek int64) (*models.DevicePlan, error) {
  941. plan := models.DevicePlan{}
  942. err = UserReadDB().Model(&plan).Where("user_org_id = ? and device_type = ? and classtime = ? and time = ? and status = 1", orgid, unitype, scheduletype, scheduleweek).Find(&plan).Error
  943. if err == gorm.ErrRecordNotFound {
  944. return nil, err
  945. }
  946. if err != nil {
  947. return nil, err
  948. }
  949. return &plan, nil
  950. }
  951. func GetUnitType(bedid int64, orgid int64) (models.DeviceAddmacher, error) {
  952. addmacher := models.DeviceAddmacher{}
  953. err := UserReadDB().Model(&addmacher).Where("bed_id = ? and user_org_id = ? and status = 1", bedid, orgid).Find(&addmacher).Error
  954. return addmacher, err
  955. }
  956. func GetLaseDeviceInfomation(orgid int64, bedid int64, date int64, scheduletype int64) (*models.DeviceInformation, error) {
  957. information := models.DeviceInformation{}
  958. err := UserReadDB().Model(&information).Where("bed_number = ? and user_org_id =? and status = 1 and date = ? and class = ? ", bedid, orgid, date, scheduletype).Find(&information).Error
  959. if err == gorm.ErrRecordNotFound {
  960. return nil, err
  961. }
  962. if err != nil {
  963. return nil, err
  964. }
  965. return &information, nil
  966. }
  967. func GetLaseDeviceInfomationTwo(orgid int64, bedid int64, scheduletype int64) (models.DeviceInformation, error) {
  968. information := models.DeviceInformation{}
  969. err = UserReadDB().Model(&information).Where("bed_number= ? and user_org_id = ? and status = 1 and class = ?", bedid, orgid, scheduletype).Last(&information).Error
  970. return information, err
  971. }
  972. func GetAssessmentAfterDissDataTwo(patientid int64, orgID int64, timenow int64) (models.XtAssessmentAfterDislysis, error) {
  973. dislysis := models.XtAssessmentAfterDislysis{}
  974. err := XTReadDB().Where("patient_id = ? AND user_org_id = ? AND assessment_date = ?", patientid, orgID, timenow).Find(&dislysis).Error
  975. return dislysis, err
  976. }
  977. func GetEquimentIDTwo(bedId int64, orgID int64) (models.DeviceAddmacher, error) {
  978. addmacher := models.DeviceAddmacher{}
  979. err := readUserDb.Model(&addmacher).Where("bed_id = ? AND user_org_id = ? AND status = ?", bedId, orgID, 1).Find(&addmacher).Error
  980. return addmacher, err
  981. }
  982. func GetDisinfectionTwo(equitType int64, enquitType int64, orgID int64) (*models.DevicePlan, error) {
  983. var plan models.DevicePlan
  984. var err error
  985. err = readUserDb.Model(&plan).Where("device_type = ? AND classtime = ? AND user_org_id = ? AND status = 1", equitType, enquitType, orgID).Find(&plan).Error
  986. if err == gorm.ErrRecordNotFound {
  987. return nil, err
  988. }
  989. if err != nil {
  990. return nil, err
  991. }
  992. return &plan, nil
  993. }
  994. func GetInforTwo(patientid int64, timenow int64, orgid int64, class int64) (*models.DeviceInformation, error) {
  995. var pre models.DeviceInformation
  996. var err error
  997. err = readUserDb.Model(&pre).Where("patient_id = ? AND date = ? AND user_org_id = ? AND class = ? AND status = 1", patientid, timenow, orgid, class).Find(&pre).Error
  998. if err == gorm.ErrRecordNotFound {
  999. return nil, err
  1000. }
  1001. if err != nil {
  1002. return nil, err
  1003. }
  1004. return &pre, nil
  1005. }
  1006. func GetPatientOrderInfo(schduledate int64, patientid int64, orgid int64) (models.XtDialysisOrder, error) {
  1007. order := models.XtDialysisOrder{}
  1008. err := XTReadDB().Model(&order).Where("dialysis_date = ? and patient_id = ? and user_org_id = ? and status = 1", schduledate, patientid, orgid).Find(&order).Error
  1009. return order, err
  1010. }
  1011. func CreateInformationTwo(information *models.DeviceInformation) error {
  1012. err := UserWriteDB().Create(&information).Error
  1013. return err
  1014. }
  1015. func UpdateInformation(information *models.DeviceInformation, scheduledate int64, bedid int64, scheduletype int64) error {
  1016. err := UserWriteDB().Model(&information).Where("date = ? and bed_number = ? and class = ?", scheduledate, bedid, scheduletype).Updates(map[string]interface{}{"long_time": information.LongTime, "disinfec_startime": information.DisinfecStartime, "disinfec_endtime": information.DisinfecEndtime}).Error
  1017. return err
  1018. }
  1019. func DeleteEquit(id int64) (models.DeviceAddmacher, error) {
  1020. addmacher := models.DeviceAddmacher{}
  1021. err := UserWriteDB().Model(&addmacher).Where("id=?", id).Updates(map[string]interface{}{"status": 0}).Error
  1022. return addmacher, err
  1023. }
  1024. func GetDeviceInfomation(orgid int64, scheduledate int64) (information []*models.DeviceInformation, err error) {
  1025. err = UserReadDB().Model(&information).Where("user_org_id = ? and date = ? and status =1", orgid, scheduledate).Find(&information).Error
  1026. return information, err
  1027. }
  1028. func CreateOxygenates(oxygenates *models.XtDeviceOxygenates) error {
  1029. err := UserWriteDB().Create(&oxygenates).Error
  1030. return err
  1031. }
  1032. func CreateHadWater(hadwater *models.XtDeviceHadwater) error {
  1033. err := UserWriteDB().Create(&hadwater).Error
  1034. return err
  1035. }
  1036. func CreateWater(water *models.XtDeviceWater) error {
  1037. err := UserWriteDB().Create(&water).Error
  1038. return err
  1039. }
  1040. func CreateDevicePh(ph *models.XtDevicePh) error {
  1041. err := UserWriteDB().Create(&ph).Error
  1042. return err
  1043. }
  1044. func GetAllDeviceOxygenates(orgId int64) (dialysate []*models.DeviceDialysates, err error) {
  1045. db := UserReadDB().Table("xt_device_oxygenates as x").Where("x.status = 1")
  1046. table := UserReadDB().Table("sgj_user_admin_role as r")
  1047. fmt.Println("table", table)
  1048. if orgId > 0 {
  1049. db = db.Where("x.user_org_id = ?", orgId)
  1050. }
  1051. err = db.Group("x.id").Select("x.id,x.sampling_date,x.specimenb,x.concentrate_noc,x.concentrateb_nod,x.sampling_locationb,x.detection_unit,x.samplerb,x.reporting_dateb,x.detection_resultb,x.bed_id,x.bed,x.sort,x.pass_examination,x.modifications,r.user_name").Joins("Left Join sgj_user_admin_role as r on r.admin_user_id = x.samplerb").Scan(&dialysate).Error
  1052. return dialysate, err
  1053. }
  1054. func GetAllHadWater(orgId int64) (dialysate []*models.DeviceDialysates, err error) {
  1055. db := UserReadDB().Table("xt_device_hadwater as x").Where("x.status = 1")
  1056. table := UserReadDB().Table("sgj_user_admin_role as r")
  1057. fmt.Println("table", table)
  1058. if orgId > 0 {
  1059. db = db.Where("x.user_org_id = ?", orgId)
  1060. }
  1061. err = db.Group("x.id").Select("x.id,x.sampling_date,x.specimenb,x.concentrate_noc,x.concentrateb_nod,x.sampling_locationb,x.detection_unit,x.samplerb,x.reporting_dateb,x.detection_resultb,x.bed_id,x.bed,x.sort,x.pass_examination,x.modifications,r.user_name").Joins("Left Join sgj_user_admin_role as r on r.admin_user_id = x.samplerb").Scan(&dialysate).Error
  1062. return dialysate, err
  1063. }
  1064. func GetDeviceWater(orgId int64) (dialysate []*models.DeviceDialysates, err error) {
  1065. db := UserReadDB().Table("xt_device_water as x").Where("x.status = 1")
  1066. table := UserReadDB().Table("sgj_user_admin_role as r")
  1067. fmt.Println("table", table)
  1068. if orgId > 0 {
  1069. db = db.Where("x.user_org_id = ?", orgId)
  1070. }
  1071. err = db.Group("x.id").Select("x.id,x.sampling_date,x.specimenb,x.concentrate_noc,x.concentrateb_nod,x.sampling_locationb,x.detection_unit,x.samplerb,x.reporting_dateb,x.detection_resultb,x.bed_id,x.bed,x.sort,x.pass_examination,x.modifications,r.user_name").Joins("Left Join sgj_user_admin_role as r on r.admin_user_id = x.samplerb").Scan(&dialysate).Error
  1072. return dialysate, err
  1073. }
  1074. func GetDevicePH(orgId int64) (dialysate []*models.DeviceDialysates, err error) {
  1075. db := UserReadDB().Table("xt_device_ph as x").Where("x.status = 1")
  1076. table := UserReadDB().Table("sgj_user_admin_role as r")
  1077. fmt.Println("table", table)
  1078. if orgId > 0 {
  1079. db = db.Where("x.user_org_id = ?", orgId)
  1080. }
  1081. err = db.Group("x.id").Select("x.id,x.sampling_date,x.specimenb,x.concentrate_noc,x.concentrateb_nod,x.sampling_locationb,x.detection_unit,x.samplerb,x.reporting_dateb,x.detection_resultb,x.bed_id,x.bed,x.sort,x.pass_examination,x.modifications,r.user_name").Joins("Left Join sgj_user_admin_role as r on r.admin_user_id = x.samplerb").Scan(&dialysate).Error
  1082. return dialysate, err
  1083. }
  1084. func GetDialysateData(bedid int64, start int64, end int64, orgId int64) (dialysate []*models.DeviceDialysates, err error) {
  1085. db := UserReadDB().Table("xt_device_dialysate as x").Where("x.status = 1")
  1086. table := UserReadDB().Table("sgj_user_admin_role as r")
  1087. fmt.Println("table", table)
  1088. if orgId > 0 {
  1089. db = db.Where("x.user_org_id = ?", orgId)
  1090. }
  1091. if bedid > 0 {
  1092. db = db.Where("x.bed_id = ?", bedid)
  1093. }
  1094. if start > 0 {
  1095. db = db.Where("x.sampling_date >= ?", start)
  1096. }
  1097. if end > 0 {
  1098. db = db.Where("x.sampling_date <= ?", end)
  1099. }
  1100. err = db.Group("x.id").Select("x.id,x.sampling_date,x.specimenb,x.concentrate_noc,x.concentrateb_nod,x.sampling_locationb,x.detection_unit,x.samplerb,x.reporting_dateb,x.detection_resultb,x.bed_id,x.bed,r.user_name").Joins("Left Join sgj_user_admin_role as r on r.admin_user_id = x.samplerb").Scan(&dialysate).Error
  1101. return dialysate, err
  1102. }
  1103. func GetOxygenates(bedid int64, start int64, end int64, orgId int64) (dialysate []*models.DeviceDialysates, err error) {
  1104. db := UserReadDB().Table("xt_device_oxygenates as x").Where("x.status = 1")
  1105. table := UserReadDB().Table("sgj_user_admin_role as r")
  1106. fmt.Println("table", table)
  1107. if orgId > 0 {
  1108. db = db.Where("x.user_org_id = ?", orgId)
  1109. }
  1110. if bedid > 0 {
  1111. db = db.Where("x.bed_id = ?", bedid)
  1112. }
  1113. if start > 0 {
  1114. db = db.Where("x.sampling_date >= ?", start)
  1115. }
  1116. if end > 0 {
  1117. db = db.Where("x.sampling_date <= ?", end)
  1118. }
  1119. err = db.Group("x.id").Select("x.id,x.sampling_date,x.specimenb,x.concentrate_noc,x.concentrateb_nod,x.sampling_locationb,x.detection_unit,x.samplerb,x.reporting_dateb,x.detection_resultb,x.bed_id,x.bed,r.user_name").Joins("Left Join sgj_user_admin_role as r on r.admin_user_id = x.samplerb").Scan(&dialysate).Error
  1120. return dialysate, err
  1121. }
  1122. func GetHardWater(bedid int64, start int64, end int64, orgId int64) (dialysate []*models.DeviceDialysates, err error) {
  1123. db := UserReadDB().Table("xt_device_hadwater as x").Where("x.status = 1")
  1124. table := UserReadDB().Table("sgj_user_admin_role as r")
  1125. fmt.Println("table", table)
  1126. if orgId > 0 {
  1127. db = db.Where("x.user_org_id = ?", orgId)
  1128. }
  1129. if bedid > 0 {
  1130. db = db.Where("x.bed_id = ?", bedid)
  1131. }
  1132. if start > 0 {
  1133. db = db.Where("x.sampling_date >= ?", start)
  1134. }
  1135. if end > 0 {
  1136. db = db.Where("x.sampling_date <= ?", end)
  1137. }
  1138. err = db.Group("x.id").Select("x.id,x.sampling_date,x.specimenb,x.concentrate_noc,x.concentrateb_nod,x.sampling_locationb,x.detection_unit,x.samplerb,x.reporting_dateb,x.detection_resultb,x.bed_id,x.bed,r.user_name").Joins("Left Join sgj_user_admin_role as r on r.admin_user_id = x.samplerb").Scan(&dialysate).Error
  1139. return dialysate, err
  1140. }
  1141. func GetWater(bedid int64, start int64, end int64, orgId int64) (dialysate []*models.DeviceDialysates, err error) {
  1142. db := UserReadDB().Table("xt_device_water as x").Where("x.status = 1")
  1143. table := UserReadDB().Table("sgj_user_admin_role as r")
  1144. fmt.Println("table", table)
  1145. if orgId > 0 {
  1146. db = db.Where("x.user_org_id = ?", orgId)
  1147. }
  1148. if bedid > 0 {
  1149. db = db.Where("x.bed_id = ?", bedid)
  1150. }
  1151. if start > 0 {
  1152. db = db.Where("x.sampling_date >= ?", start)
  1153. }
  1154. if end > 0 {
  1155. db = db.Where("x.sampling_date <= ?", end)
  1156. }
  1157. err = db.Group("x.id").Select("x.id,x.sampling_date,x.specimenb,x.concentrate_noc,x.concentrateb_nod,x.sampling_locationb,x.detection_unit,x.samplerb,x.reporting_dateb,x.detection_resultb,x.bed_id,x.bed,r.user_name").Joins("Left Join sgj_user_admin_role as r on r.admin_user_id = x.samplerb").Scan(&dialysate).Error
  1158. return dialysate, err
  1159. }
  1160. func GetDevicePh(bedid int64, start int64, end int64, orgId int64) (dialysate []*models.DeviceDialysates, err error) {
  1161. db := UserReadDB().Table("xt_device_ph as x").Where("x.status = 1")
  1162. table := UserReadDB().Table("sgj_user_admin_role as r")
  1163. fmt.Println("table", table)
  1164. if orgId > 0 {
  1165. db = db.Where("x.user_org_id = ?", orgId)
  1166. }
  1167. if bedid > 0 {
  1168. db = db.Where("x.bed_id = ?", bedid)
  1169. }
  1170. if start > 0 {
  1171. db = db.Where("x.sampling_date >= ?", start)
  1172. }
  1173. if end > 0 {
  1174. db = db.Where("x.sampling_date <= ?", end)
  1175. }
  1176. err = db.Group("x.id").Select("x.id,x.sampling_date,x.specimenb,x.concentrate_noc,x.concentrateb_nod,x.sampling_locationb,x.detection_unit,x.samplerb,x.reporting_dateb,x.detection_resultb,x.bed_id,x.bed,r.user_name").Joins("Left Join sgj_user_admin_role as r on r.admin_user_id = x.samplerb").Scan(&dialysate).Error
  1177. return dialysate, err
  1178. }
  1179. func GetOxygenatesById(id int64) (models.XtDeviceOxygenates, error) {
  1180. oxygenates := models.XtDeviceOxygenates{}
  1181. err := UserReadDB().Model(&oxygenates).Where("id = ? and status = 1", id).Find(&oxygenates).Error
  1182. return oxygenates, err
  1183. }
  1184. func UpdateOxygenates(id int64, orgid int64, dialysate *models.XtDeviceOxygenates) error {
  1185. err := writeUserDb.Model(&dialysate).Where("id=? AND user_org_id = ? AND status = 1", id, orgid).Updates(map[string]interface{}{"sampling_date": dialysate.SamplingDate, "specimenb": dialysate.Specimenb, "concentrate_noc": dialysate.ConcentrateNoc, "concentrateb_nod": dialysate.ConcentratebNod, "sampling_locationb": dialysate.SamplingLocationb, "detection_unit": dialysate.DetectionUnit, "samplerb": dialysate.Samplerb, "reporting_dateb": dialysate.ReportingDateb, "detection_resultb": dialysate.DetectionResultb, "sort": dialysate.Sort, "pass_examination": dialysate.PassExamination, "modifications": dialysate.Modifications, "mtime": time.Now().Unix()}).Error
  1186. return err
  1187. }
  1188. func GetHardWaterById(id int64) (models.XtDeviceHadwater, error) {
  1189. hadwater := models.XtDeviceHadwater{}
  1190. err := UserReadDB().Model(&hadwater).Where("id = ? and status = 1", id).Find(&hadwater).Error
  1191. return hadwater, err
  1192. }
  1193. func GetWaterById(id int64) (models.XtDeviceWater, error) {
  1194. water := models.XtDeviceWater{}
  1195. err := UserReadDB().Model(&water).Where("id=? and status =1", id).Find(&water).Error
  1196. return water, err
  1197. }
  1198. func GetDevicePhById(id int64) (models.XtDevicePh, error) {
  1199. devicePh := models.XtDevicePh{}
  1200. err := UserReadDB().Model(&devicePh).Where("id = ? and status =1", id).Find(&devicePh).Error
  1201. return devicePh, err
  1202. }
  1203. func CreateAerialDetection(detection *models.XtAerialDetection) error {
  1204. err := XTWriteDB().Create(&detection).Error
  1205. return err
  1206. }
  1207. func GetAirList(limit int64, page int64, orgid int64) (airlist []*models.XtAerialDetection, total int64, err error) {
  1208. offset := (page - 1) * limit
  1209. err = XTReadDB().Model(&airlist).Where("user_org_id = ? and status =1", orgid).Count(&total).Limit(limit).Offset(offset).Order("created_time desc").Find(&airlist).Error
  1210. return airlist, total, err
  1211. }
  1212. func GetAirDisinfectDetail(id int64) (models.XtAerialDetection, error) {
  1213. detection := models.XtAerialDetection{}
  1214. err := XTReadDB().Model(&detection).Where("id = ? and status = 1", id).Find(&detection).Error
  1215. return detection, err
  1216. }
  1217. func UpdateAeriaDetection(detection *models.XtAerialDetection, id int64) error {
  1218. err := XTWriteDB().Model(&detection).Where("id = ? and status = 1", id).Updates(map[string]interface{}{"start_time": detection.StartTime, "created_time": detection.CreatedTime, "class": detection.Class, "disinfection_methods": detection.DisinfectionMethods, "disinfection_fluid": detection.DisinfectionFluid, "sort": detection.Sort, "creator": detection.Creator, "detection_time": detection.DetectionTime, "detection_result": detection.DetectionResult, "upload_time": detection.UploadTime, "check_out": detection.CheckOut, "modifications": detection.Modifications}).Error
  1219. return err
  1220. }
  1221. func DeleteAirDisinfect(id int64) error {
  1222. detection := models.XtAerialDetection{}
  1223. err := XTWriteDB().Model(&detection).Where("id = ? and status = 1", id).Updates(map[string]interface{}{"status": 0}).Error
  1224. return err
  1225. }
  1226. func SaveBodyDetection(detection *models.XtBodyDetection) error {
  1227. err := XTWriteDB().Create(&detection).Error
  1228. return err
  1229. }
  1230. func GetBodyList(limit int64, page int64, orgid int64) (body []*models.XtBodyDetection, total int64, err error) {
  1231. offset := (page - 1) * limit
  1232. err = XTReadDB().Model(&body).Where("user_org_id = ? and status =1", orgid).Count(&total).Limit(limit).Offset(offset).Order("created_time desc").Find(&body).Error
  1233. return body, total, err
  1234. }
  1235. func GetBodyDisinfectDetail(id int64) (models.XtBodyDetection, error) {
  1236. detection := models.XtBodyDetection{}
  1237. err := XTReadDB().Model(&detection).Where("id = ? and status = 1", id).Find(&detection).Error
  1238. return detection, err
  1239. }
  1240. func UpdateBodyDetection(detection *models.XtBodyDetection, id int64) error {
  1241. err := XTWriteDB().Model(&detection).Where("id = ? and status = 1", id).Updates(map[string]interface{}{"start_time": detection.StartTime, "created_time": detection.CreatedTime, "class": detection.Class, "disinfection_methods": detection.DisinfectionMethods, "disinfection_fluid": detection.DisinfectionFluid, "sort": detection.Sort, "creator": detection.Creator, "detection_time": detection.DetectionTime, "detection_result": detection.DetectionResult, "upload_time": detection.UploadTime, "check_out": detection.CheckOut, "modifications": detection.Modifications}).Error
  1242. return err
  1243. }
  1244. func DeleteBodyDisInfect(id int64) error {
  1245. detection := models.XtBodyDetection{}
  1246. err := XTWriteDB().Model(&detection).Where("id = ? and status = 1", id).Updates(map[string]interface{}{"status": 0}).Error
  1247. return err
  1248. }
  1249. func UpdateHadWater(id int64, orgid int64, hadwater *models.XtDeviceHadwater) error {
  1250. err := writeUserDb.Model(&hadwater).Where("id=? AND user_org_id = ? AND status = 1", id, orgid).Updates(map[string]interface{}{"sampling_date": hadwater.SamplingDate, "specimenb": hadwater.Specimenb, "concentrate_noc": hadwater.ConcentrateNoc, "concentrateb_nod": hadwater.ConcentratebNod, "sampling_locationb": hadwater.SamplingLocationb, "detection_unit": hadwater.DetectionUnit, "samplerb": hadwater.Samplerb, "reporting_dateb": hadwater.ReportingDateb, "detection_resultb": hadwater.DetectionResultb, "sort": hadwater.Sort, "pass_examination": hadwater.PassExamination, "modifications": hadwater.Modifications, "mtime": time.Now().Unix()}).Error
  1251. return err
  1252. }
  1253. func UpdateDeviceWater(id int64, orgid int64, hadwater *models.XtDeviceWater) error {
  1254. err := writeUserDb.Model(&hadwater).Where("id=? AND user_org_id = ? AND status = 1", id, orgid).Updates(map[string]interface{}{"sampling_date": hadwater.SamplingDate, "specimenb": hadwater.Specimenb, "concentrate_noc": hadwater.ConcentrateNoc, "concentrateb_nod": hadwater.ConcentratebNod, "sampling_locationb": hadwater.SamplingLocationb, "detection_unit": hadwater.DetectionUnit, "samplerb": hadwater.Samplerb, "reporting_dateb": hadwater.ReportingDateb, "detection_resultb": hadwater.DetectionResultb, "sort": hadwater.Sort, "pass_examination": hadwater.PassExamination, "modifications": hadwater.Modifications, "mtime": time.Now().Unix()}).Error
  1255. return err
  1256. }
  1257. func UpdateDivicePh(id int64, orgid int64, hadwater *models.XtDevicePh) error {
  1258. err := writeUserDb.Model(&hadwater).Where("id=? AND user_org_id = ? AND status = 1", id, orgid).Updates(map[string]interface{}{"sampling_date": hadwater.SamplingDate, "specimenb": hadwater.Specimenb, "concentrate_noc": hadwater.ConcentrateNoc, "concentrateb_nod": hadwater.ConcentratebNod, "sampling_locationb": hadwater.SamplingLocationb, "detection_unit": hadwater.DetectionUnit, "samplerb": hadwater.Samplerb, "reporting_dateb": hadwater.ReportingDateb, "detection_resultb": hadwater.DetectionResultb, "sort": hadwater.Sort, "pass_examination": hadwater.PassExamination, "modifications": hadwater.Modifications, "mtime": time.Now().Unix()}).Error
  1259. return err
  1260. }
  1261. func DeleteOxygenates(id int64) error {
  1262. oxygenates := models.XtDeviceOxygenates{}
  1263. err := writeUserDb.Model(&oxygenates).Where("id = ? ", id).Updates(map[string]interface{}{"status": 0}).Error
  1264. return err
  1265. }
  1266. func DeleteHadWater(id int64) error {
  1267. hadwater := models.XtDeviceHadwater{}
  1268. err := writeUserDb.Model(&hadwater).Where("id =?", id).Updates(map[string]interface{}{"status": 0}).Error
  1269. return err
  1270. }
  1271. func DeleteWater(id int64) error {
  1272. water := models.XtDeviceWater{}
  1273. err := writeUserDb.Model(&water).Where("id = ? ", id).Updates(map[string]interface{}{"status": 0}).Error
  1274. return err
  1275. }
  1276. func DeleteDevicePh(id int64) error {
  1277. ph := models.XtDevicePh{}
  1278. err := writeUserDb.Model(&ph).Where("id = ? ", id).Updates(map[string]interface{}{"status": 0}).Error
  1279. return err
  1280. }
  1281. func CretaDeviceWater(water models.XtDialysisDeviceWater) error {
  1282. err := XTWriteDB().Create(&water).Error
  1283. return err
  1284. }
  1285. func SaveDeviceWater(water models.XtDialysisDeviceWater) error {
  1286. err := XTWriteDB().Save(&water).Error
  1287. return err
  1288. }
  1289. func GetWaterFormList(equitment_id, start_timeunix, endtimeunix, limit, page, orgId int64) (water []*models.XtDialysisDeviceWater, total int64, err error) {
  1290. offset := (page - 1) * limit
  1291. db := XTReadDB().Model(&water).Where("status =1")
  1292. if equitment_id > 0 {
  1293. db = db.Where("equiment_id= ?", equitment_id)
  1294. }
  1295. if start_timeunix > 0 {
  1296. db = db.Where("record_date>=?", start_timeunix)
  1297. }
  1298. if endtimeunix > 0 {
  1299. db = db.Where("record_date<=?", endtimeunix)
  1300. }
  1301. if orgId > 0 {
  1302. db = db.Where("user_org_id = ?", orgId)
  1303. }
  1304. err = db.Count(&total).Limit(limit).Offset(offset).Order("record_date desc").Find(&water).Error
  1305. return water, total, err
  1306. }
  1307. func DelelteDialysisWater(id int64) error {
  1308. err := XTWriteDB().Model(&models.XtDialysisDeviceWater{}).Where("id = ? and status =1", id).Updates(map[string]interface{}{"status": 0}).Error
  1309. return err
  1310. }
  1311. func GetDialysisWaterDetail(id int64) (models.XtDialysisDeviceWater, error) {
  1312. water := models.XtDialysisDeviceWater{}
  1313. err := XTReadDB().Where("id = ? and status = 1", id).Find(&water).Error
  1314. return water, err
  1315. }
  1316. func DeleteBatchDialysisWater(orgid int64, ids []int64) (err error) {
  1317. if len(ids) == 1 {
  1318. err = XTWriteDB().Model(&models.XtDialysisDeviceWater{}).Where("id=? and user_org_id = ?", ids[0], orgid).Updates(map[string]interface{}{"status": 0, "mtime": time.Now().Unix()}).Error
  1319. } else {
  1320. err = XTWriteDB().Model(models.XtDialysisDeviceWater{}).Where("id IN(?) and user_org_id = ?", ids, orgid).Updates(map[string]interface{}{"status": 0, "mtime": time.Now().Unix()}).Error
  1321. }
  1322. return
  1323. }
  1324. func CreateNewAirDisinfect(disinfect models.XtNewAriDisinfect) error {
  1325. err := XTWriteDB().Create(&disinfect).Error
  1326. return err
  1327. }
  1328. func GetNewAirDisinfectList(limit int64, page int64, start_time int64, end_time int64, user_org_id int64) (list []*models.XtNewAriDisinfect, total int64, err error) {
  1329. offset := (page - 1) * limit
  1330. db := XTReadDB().Model(&list).Where("status =1")
  1331. if start_time > 0 {
  1332. db = db.Where("record_date >= ?", start_time)
  1333. }
  1334. if end_time > 0 {
  1335. db = db.Where("record_date <= ?", end_time)
  1336. }
  1337. if user_org_id > 0 {
  1338. db = db.Where("user_org_id = ?", user_org_id)
  1339. }
  1340. err = db.Count(&total).Offset(offset).Limit(limit).Find(&list).Error
  1341. return list, total, err
  1342. }
  1343. func GetNewAirDisinfectByIdList(id int64) (models.XtNewAriDisinfect, error) {
  1344. disinfect := models.XtNewAriDisinfect{}
  1345. err := XTReadDB().Where("id = ? and status= 1", id).Find(&disinfect).Error
  1346. return disinfect, err
  1347. }
  1348. func SaveNewAriDisinfect(disinfect models.XtNewAriDisinfect) error {
  1349. err := XTWriteDB().Save(&disinfect).Error
  1350. return err
  1351. }
  1352. func DeleteNewAirDisInfect(id int64) error {
  1353. err := XTWriteDB().Model(&models.XtNewAriDisinfect{}).Where("id= ? and status = 1", id).Updates(map[string]interface{}{"status": 0}).Error
  1354. return err
  1355. }
  1356. func CreateObjectDisInfect(disinfect models.XtNewObjectDisinfect) error {
  1357. err := XTWriteDB().Create(&disinfect).Error
  1358. return err
  1359. }
  1360. func GetObjectTableDisinfectList(limit int64, page int64, start_time int64, end_time int64, user_org_id int64) (list []*models.XtNewObjectDisinfect, total int64, err error) {
  1361. offset := (page - 1) * limit
  1362. db := XTReadDB().Model(&list).Where("status =1")
  1363. if start_time > 0 {
  1364. db = db.Where("record_date >= ?", start_time)
  1365. }
  1366. if end_time > 0 {
  1367. db = db.Where("record_date <= ?", end_time)
  1368. }
  1369. if user_org_id > 0 {
  1370. db = db.Where("user_org_id = ?", user_org_id)
  1371. }
  1372. err = db.Count(&total).Offset(offset).Limit(limit).Find(&list).Error
  1373. return list, total, err
  1374. }
  1375. func GetObjectTableDisinfectByList(id int64) (models.XtNewObjectDisinfect, error) {
  1376. disinfect := models.XtNewObjectDisinfect{}
  1377. err := XTReadDB().Where("id=? and status =1", id).Find(&disinfect).Error
  1378. return disinfect, err
  1379. }
  1380. func UpdateObjectTableDisinfect(disinfect models.XtNewObjectDisinfect) error {
  1381. err := XTWriteDB().Save(&disinfect).Error
  1382. return err
  1383. }
  1384. func DeleteObjectTableDisinfect(id int64) error {
  1385. err := XTWriteDB().Model(&models.XtNewObjectDisinfect{}).Where("id=? and status= 1", id).Updates(map[string]interface{}{"status": 0}).Error
  1386. return err
  1387. }
  1388. func GetAirDisInfectionLongTime(user_org_id int64) (list []*models.XtNewAriDisinfect, err error) {
  1389. err = XTReadDB().Where("user_org_id = ? and status = 1", user_org_id).Order("id desc").First(&list).Error
  1390. return
  1391. }
  1392. func GetObjectDisInfectionLongTime(user_org_id int64) (list []*models.XtNewObjectDisinfect, err error) {
  1393. err = XTReadDB().Where("user_org_id = ? and status = 1", user_org_id).Find(&list).Error
  1394. return
  1395. }
  1396. func GetDialysisOrderPatient(org_id int64) (order []*models.XtDialysisOrder, err error) {
  1397. err = XTReadDB().Where("user_org_id = ? and dialysis_date>=? and dialysis_date<=? and status =1", org_id, 1672502400, 1675094400).Find(&order).Error
  1398. return order, err
  1399. }
  1400. func CreateObjectRegistration(registration models.XtDialysisRegistration) error {
  1401. err := XTWriteDB().Create(&registration).Error
  1402. return err
  1403. }
  1404. func GetRegistrationDisinfectList(limit int64, page int64, start_time int64, end_time int64, user_org_id int64) (list []*models.XtDialysisRegistration, total int64, err error) {
  1405. offset := (page - 1) * limit
  1406. db := XTReadDB().Model(&list).Where("status =1")
  1407. if start_time > 0 {
  1408. db = db.Where("record_date >= ?", start_time)
  1409. }
  1410. if end_time > 0 {
  1411. db = db.Where("record_date <= ?", end_time)
  1412. }
  1413. if user_org_id > 0 {
  1414. db = db.Where("user_org_id = ?", user_org_id)
  1415. }
  1416. err = db.Count(&total).Offset(offset).Limit(limit).Find(&list).Error
  1417. return list, total, err
  1418. }
  1419. func GetObjectRegistrationByIdList(id int64) (models.XtDialysisRegistration, error) {
  1420. registration := models.XtDialysisRegistration{}
  1421. err := XTReadDB().Where("id = ? and status=1", id).Find(&registration).Error
  1422. return registration, err
  1423. }
  1424. func UpdateObjectRegistration(registration models.XtDialysisRegistration) error {
  1425. err := XTWriteDB().Save(&registration).Error
  1426. return err
  1427. }
  1428. func DeleteObjectTregistration(id int64) error {
  1429. err := XTWriteDB().Model(&models.XtDialysisRegistration{}).Where("id = ? and status = 1", id).Updates(map[string]interface{}{"status": 0}).Error
  1430. return err
  1431. }