123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257 |
- package controllers
-
- import (
- "Xcx_New/utils"
- "github.com/jinzhu/gorm"
- "time"
-
- "Xcx_New/enums"
- "Xcx_New/models"
- "Xcx_New/service"
-
- "fmt"
- "github.com/astaxie/beego"
- )
-
- func DeviceAPIControllerRegistRouters() {
- beego.Router("/api/device/initdata", &DeviceAPIController{}, "get:GetDeviceManageInitData")
- // 设备基本信息
- beego.Router("/api/devices", &DeviceAPIController{}, "get:GetDevices")
- beego.Router("/api/device/baseinfo", &DeviceAPIController{}, "get:GetDeviceBaseInfo")
- beego.Router("/api/device/create", &DeviceAPIController{}, "post:CreateDevice")
- beego.Router("/api/device/modify", &DeviceAPIController{}, "post:ModifyDevice")
- beego.Router("/api/device/disable", &DeviceAPIController{}, "post:DisableDevice")
- // 分区
- beego.Router("/api/device/zones", &DeviceAPIController{}, "get:GetZones")
- beego.Router("/api/device/zone/create", &DeviceAPIController{}, "post:CreateZone")
- beego.Router("/api/device/zone/modify", &DeviceAPIController{}, "post:ModifyZone")
- beego.Router("/api/device/zone/disable", &DeviceAPIController{}, "post:DisableZone")
- // 分组
- beego.Router("/api/device/groups", &DeviceAPIController{}, "get:GetGroups")
- beego.Router("/api/device/group/create", &DeviceAPIController{}, "post:CreateGroup")
- beego.Router("/api/device/group/modify", &DeviceAPIController{}, "post:ModifyGroup")
- beego.Router("/api/device/group/disable", &DeviceAPIController{}, "post:DisableGroup")
- // 机号
- beego.Router("/api/device/numbers", &DeviceAPIController{}, "get:GetNumbers")
- beego.Router("/api/device/number/create", &DeviceAPIController{}, "post:CreateNumber")
- beego.Router("/api/device/number/modify", &DeviceAPIController{}, "post:ModifyNumber")
- beego.Router("/api/device/number/disable", &DeviceAPIController{}, "post:DisableNumber")
-
- //透析机管理
- beego.Router("/api/management/getallsubregion", &DeviceAPIController{}, "get:GetAllSubregion")
- //beego.Router("/api/management/savemanageinfo",&DeviceAPIController{},"post:SaveManageInfo")
- beego.Router("/api/management/getallmachineinfo", &DeviceAPIController{}, "get:GetAllMachineInfo")
- beego.Router("/api/management/getallmachine", &DeviceAPIController{}, "get:GetAllMachine")
- beego.Router("/api/management/getmachinedetail", &DeviceAPIController{}, "get:GetMachineDetail")
- beego.Router("/api/management/getallmachinetwo", &DeviceAPIController{}, "get:GetAllMachineTwo")
- }
-
- type DeviceAPIController struct {
- BaseAuthAPIController
- }
-
- // /api/device/initdata [get] GetDeviceManageInitData
- func (this *DeviceAPIController) GetDeviceManageInitData() {
- adminInfo := this.GetAdminUserInfo()
- zones, getZonesErr := service.GetAllValidDeviceZones(adminInfo.CurrentOrgId)
- if getZonesErr != nil {
- this.ErrorLog("获取设备分区列表失败:%v", getZonesErr)
- this.ServeFailJSONWithSGJErrorCode(enums.ErrorCodeDataException)
- return
- }
- groups, getGroupsErr := service.GetAllValidDeviceGroups(adminInfo.CurrentOrgId)
- if getGroupsErr != nil {
- this.ErrorLog("获取设备分组列表失败:%v", getGroupsErr)
- this.ServeFailJSONWithSGJErrorCode(enums.ErrorCodeDataException)
- return
- }
- numbers, getNumbersErr := service.GetAllValidDeviceNumbers(adminInfo.CurrentOrgId)
- if getNumbersErr != nil {
- this.ErrorLog("获取设备机号列表失败:%v", getNumbersErr)
- this.ServeFailJSONWithSGJErrorCode(enums.ErrorCodeDataException)
- return
- }
-
- this.ServeSuccessJSON(map[string]interface{}{
- "zones": zones,
- "groups": groups,
- "numbers": numbers,
- })
- }
-
- // /api/devices [get] GetDevices
- // @param type?:int 1.透析机 2.水处理机 其他.全部
- // @param zone?:int
- func (this *DeviceAPIController) GetDevices() {
- type_, _ := this.GetInt("type")
- zoneID, _ := this.GetInt64("zone")
- if type_ < 0 || type_ > 2 {
- type_ = 0
- }
- if zoneID < 0 {
- zoneID = 0
- }
-
- adminInfo := this.GetAdminUserInfo()
- devices, getDevicesErr := service.GetValidDevicesBy(adminInfo.CurrentOrgId, type_, zoneID)
- if getDevicesErr != nil {
- this.ErrorLog("获取设备列表失败:%v", getDevicesErr)
- this.ServeFailJSONWithSGJErrorCode(enums.ErrorCodeDataException)
- return
- }
- this.ServeSuccessJSON(map[string]interface{}{
- "devices": devices,
- })
- }
-
- // /api/device/baseinfo [get] GetDeviceBaseInfo
- // @param id:int models.Device.ID
- func (this *DeviceAPIController) GetDeviceBaseInfo() {
- deviceID, _ := this.GetInt64("id")
- if deviceID <= 0 {
- this.ServeFailJSONWithSGJErrorCode(enums.ErrorCodeParamWrong)
- return
- }
- adminInfo := this.GetAdminUserInfo()
- device, getDeviceErr := service.GetDeviceByID(adminInfo.CurrentOrgId, deviceID)
- if getDeviceErr != nil {
- this.ErrorLog("获取设备失败:%v", getDeviceErr)
- this.ServeFailJSONWithSGJErrorCode(enums.ErrorCodeDataException)
- return
- } else if device == nil || device.Status != 1 {
- this.ServeFailJSONWithSGJErrorCode(enums.ErrorCodeDeviceNotExist)
- return
- }
-
- if device.DeviceType == 1 {
- dmDevice, getDMDeviceErr := service.GetDMDeviceByID(adminInfo.CurrentOrgId, device.DMID)
- if getDMDeviceErr != nil {
- this.ErrorLog("获取透析机失败:%v", getDMDeviceErr)
- this.ServeFailJSONWithSGJErrorCode(enums.ErrorCodeDataException)
- return
- } else if dmDevice == nil || dmDevice.Status != 1 {
- this.ServeFailJSONWithSGJErrorCode(enums.ErrorCodeDeviceNotExist)
- return
- }
- this.ServeSuccessJSON(map[string]interface{}{
- "device_type": device.DeviceType,
- "device_number_id": device.DeviceNumberID,
- "device_info": dmDevice,
- })
-
- } else if device.DeviceType == 2 {
- wteDevice, getWTEDeviceErr := service.GetWTEDeviceByID(adminInfo.CurrentOrgId, device.WTEID)
- if getWTEDeviceErr != nil {
- this.ErrorLog("获取水处理机失败:%v", getWTEDeviceErr)
- this.ServeFailJSONWithSGJErrorCode(enums.ErrorCodeDataException)
- return
- } else if wteDevice == nil || wteDevice.Status != 1 {
- this.ServeFailJSONWithSGJErrorCode(enums.ErrorCodeDeviceNotExist)
- return
- }
- this.ServeSuccessJSON(map[string]interface{}{
- "device_type": device.DeviceType,
- "device_number_id": device.DeviceNumberID,
- "device_info": wteDevice,
- })
- }
- }
-
- // /api/device/create [post] CreateDevice
- // @param type:int 设备类型 1.透析机 2.水处理机
- // @param serial_number:string 序列号
- // @param name:string 设备名
- // @param device_number_id?:int 机号
- // @param manufacturer?:string 生产厂家
- // @param repair_factory?:string 维修厂家
- // @param model?:string 型号
- // @param department?:string 使用科室
- // @param department_number?:string 科室编号
- // @param purchase_date?:int 购买日期
- // @param install_date?:int 安装日期
- // @param commissioning_date?:int 启用日期
- // @param maintainer?:string 维修工程师
- // @param maintenance_call?:string 维修联系电话
- // @param warranty_period?:string 保修期限
- // @param device_status?:int 机器状态 1.使用机 2.备用机 3.急诊机 4.报废机
- // @param initial_use_times?:int 初始使用次数
- // @param mark?:string 备注
- // @param retirement_date?:int 报废日期
- // @param retirement_reason?:string 报废原因
- // @param service_life?:int 使用年限
- // @param working_time?:int 工作时长
- // @param treatment_mode?:string 治疗模式 type = 1
- // @param reverse_osmosis_mode?:int 反渗模式 type = 2
- func (this *DeviceAPIController) CreateDevice() {
- deviceType, _ := this.GetInt("type")
- serialNumber := this.GetString("serial_number")
- deviceName := this.GetString("name")
- if deviceType < 1 || 2 < deviceType || len(serialNumber) == 0 || len(deviceName) == 0 {
- this.ServeFailJSONWithSGJErrorCode(enums.ErrorCodeParamWrong)
- return
- }
- deviceNumberID, _ := this.GetInt64("device_number_id")
- manufacturer := this.GetString("manufacturer")
- repairFactory := this.GetString("repair_factory")
- model := this.GetString("model")
- department := this.GetString("department")
- departmentNumber := this.GetString("department_number")
- purchaseDate, _ := this.GetInt64("purchase_date")
- installDate, _ := this.GetInt64("install_date")
- commissioningDate, _ := this.GetInt64("commissioning_date")
- maintainer := this.GetString("maintainer")
- maintenanceCall := this.GetString("maintenance_call")
- warrantyPeriod := this.GetString("warranty_period")
- deviceStatus, _ := this.GetInt("device_status")
- initialUseTimes, _ := this.GetInt("initial_use_times")
- mark := this.GetString("mark")
- retirementDate, _ := this.GetInt64("retirement_date")
- retirementReason := this.GetString("retirement_reason")
- serviceLife, _ := this.GetInt("service_life")
- workingTime, _ := this.GetInt("working_time")
- treatmentMode := this.GetString("treatment_mode")
- reverseOsmosisMode, _ := this.GetInt("reverse_osmosis_mode")
-
- adminInfo := this.GetAdminUserInfo()
- var deviceNumber *models.DeviceNumber
- if deviceNumberID != 0 {
- var getNumberErr error
- deviceNumber, getNumberErr = service.GetDeviceNumberByID(adminInfo.CurrentOrgId, deviceNumberID)
- if getNumberErr != nil {
- this.ErrorLog("获取机号失败:%v", getNumberErr)
- this.ServeFailJSONWithSGJErrorCode(enums.ErrorCodeDataException)
- return
- } else if deviceNumber == nil || deviceNumber.Status != 1 {
- this.ServeFailJSONWithSGJErrorCode(enums.ErrorCodeDeviceNumberNotExist)
- return
- }
- }
- if deviceStatus < 1 || 4 < deviceStatus {
- deviceStatus = 0
- }
-
- if deviceType == 1 {
- dmDevice := &models.DeviceDM{
- OrgID: adminInfo.CurrentOrgId,
- SerialNumber: serialNumber,
- Name: deviceName,
- Manufacturer: manufacturer,
- RepairFactory: repairFactory,
- Model: model,
- Department: department,
- DepartmentNumber: departmentNumber,
- PurchaseDate: purchaseDate,
- InstallDate: installDate,
- CommissioningDate: commissioningDate,
- Maintainer: maintainer,
- MaintenanceCall: maintenanceCall,
- WarrantyPeriod: warrantyPeriod,
- DeviceStatus: deviceStatus,
- InitialUseTimes: initialUseTimes,
- Mark: mark,
- RetirementDate: retirementDate,
- RetirementReason: retirementReason,
- ServiceLife: serviceLife,
- WorkingTime: workingTime,
- TreatmentMode: treatmentMode,
- }
- device, createErr := service.CreateDMDevice(dmDevice, deviceNumber)
- if createErr != nil {
- this.ErrorLog("创建血透机失败:%v")
- this.ServeFailJSONWithSGJErrorCode(enums.ErrorCodeDBCreate)
- return
- }
- this.ServeSuccessJSON(map[string]interface{}{
- "device": device,
- })
-
- } else if deviceType == 2 {
- wteDevice := &models.DeviceWTE{
- OrgID: adminInfo.CurrentOrgId,
- SerialNumber: serialNumber,
- Name: deviceName,
- Manufacturer: manufacturer,
- RepairFactory: repairFactory,
- Model: model,
- Department: department,
- DepartmentNumber: departmentNumber,
- PurchaseDate: purchaseDate,
- InstallDate: installDate,
- CommissioningDate: commissioningDate,
- Maintainer: maintainer,
- MaintenanceCall: maintenanceCall,
- WarrantyPeriod: warrantyPeriod,
- DeviceStatus: deviceStatus,
- InitialUseTimes: initialUseTimes,
- Mark: mark,
- RetirementDate: retirementDate,
- RetirementReason: retirementReason,
- ServiceLife: serviceLife,
- WorkingTime: workingTime,
- ReverseOsmosisMode: reverseOsmosisMode,
- }
- device, createErr := service.CreateWTEDevice(wteDevice, deviceNumber)
- if createErr != nil {
- this.ErrorLog("创建水处理机失败:%v")
- this.ServeFailJSONWithSGJErrorCode(enums.ErrorCodeDBCreate)
- return
- }
- this.ServeSuccessJSON(map[string]interface{}{
- "device": device,
- })
- }
- }
-
- // /api/device/modify [post] ModifyDevice
- // @param device_id:int 设备 ID(models.Device.ID)
- // @param serial_number:string 序列号
- // @param name:string 设备名
- // @param device_number_id?:int 机号
- // @param manufacturer?:string 生产厂家
- // @param repair_factory?:string 维修厂家
- // @param model?:string 型号
- // @param department?:string 使用科室
- // @param department_number?:string 科室编号
- // @param purchase_date?:int 购买日期
- // @param install_date?:int 安装日期
- // @param commissioning_date?:int 启用日期
- // @param maintainer?:string 维修工程师
- // @param maintenance_call?:string 维修联系电话
- // @param warranty_period?:string 保修期限
- // @param device_status?:int 机器状态 1.使用机 2.备用机 3.急诊机 4.报废机
- // @param initial_use_times?:int 初始使用次数
- // @param mark?:string 备注
- // @param retirement_date?:int 报废日期
- // @param retirement_reason?:string 报废原因
- // @param service_life?:int 使用年限
- // @param working_time?:int 工作时长
- // @param treatment_mode?:string 治疗模式 type = 1
- // @param reverse_osmosis_mode?:int 反渗模式 type = 2
- func (this *DeviceAPIController) ModifyDevice() {
- deviceID, _ := this.GetInt64("device_id")
- serialNumber := this.GetString("serial_number")
- deviceName := this.GetString("name")
- if deviceID <= 0 || len(serialNumber) == 0 || len(deviceName) == 0 {
- this.ServeFailJSONWithSGJErrorCode(enums.ErrorCodeParamWrong)
- return
- }
-
- deviceNumberID, _ := this.GetInt64("device_number_id")
- manufacturer := this.GetString("manufacturer")
- repairFactory := this.GetString("repair_factory")
- model := this.GetString("model")
- department := this.GetString("department")
- departmentNumber := this.GetString("department_number")
- purchaseDate, _ := this.GetInt64("purchase_date")
- installDate, _ := this.GetInt64("install_date")
- commissioningDate, _ := this.GetInt64("commissioning_date")
- maintainer := this.GetString("maintainer")
- maintenanceCall := this.GetString("maintenance_call")
- warrantyPeriod := this.GetString("warranty_period")
- deviceStatus, _ := this.GetInt("device_status")
- initialUseTimes, _ := this.GetInt("initial_use_times")
- mark := this.GetString("mark")
- retirementDate, _ := this.GetInt64("retirement_date")
- retirementReason := this.GetString("retirement_reason")
- serviceLife, _ := this.GetInt("service_life")
- workingTime, _ := this.GetInt("working_time")
- treatmentMode := this.GetString("treatment_mode")
- reverseOsmosisMode, _ := this.GetInt("reverse_osmosis_mode")
-
- adminInfo := this.GetAdminUserInfo()
- var deviceNumber *models.DeviceNumber
- if deviceNumberID != 0 {
- var getNumberErr error
- deviceNumber, getNumberErr = service.GetDeviceNumberByID(adminInfo.CurrentOrgId, deviceNumberID)
- if getNumberErr != nil {
- this.ErrorLog("获取机号失败:%v", getNumberErr)
- this.ServeFailJSONWithSGJErrorCode(enums.ErrorCodeDataException)
- return
- } else if deviceNumber == nil || deviceNumber.Status != 1 {
- this.ServeFailJSONWithSGJErrorCode(enums.ErrorCodeDeviceNumberNotExist)
- return
- }
- }
- if deviceStatus < 1 || 4 < deviceStatus {
- deviceStatus = 0
- }
-
- device, getDeviceErr := service.GetDeviceByID(adminInfo.CurrentOrgId, deviceID)
- if getDeviceErr != nil {
- this.ErrorLog("获取设备失败:%v", getDeviceErr)
- this.ServeFailJSONWithSGJErrorCode(enums.ErrorCodeDataException)
- return
- } else if device == nil || device.Status != 1 {
- this.ServeFailJSONWithSGJErrorCode(enums.ErrorCodeDeviceNotExist)
- return
- }
- if device.DeviceType == 1 {
- dmDevice, getDMDeviceErr := service.GetDMDeviceByID(adminInfo.CurrentOrgId, device.DMID)
- if getDMDeviceErr != nil {
- this.ErrorLog("获取透析机失败:%v", getDMDeviceErr)
- this.ServeFailJSONWithSGJErrorCode(enums.ErrorCodeDataException)
- return
- } else if dmDevice == nil || dmDevice.Status != 1 {
- this.ServeFailJSONWithSGJErrorCode(enums.ErrorCodeDeviceNotExist)
- return
- }
- dmDevice.SerialNumber = serialNumber
- dmDevice.Name = deviceName
- dmDevice.Manufacturer = manufacturer
- dmDevice.RepairFactory = repairFactory
- dmDevice.Model = model
- dmDevice.Department = department
- dmDevice.DepartmentNumber = departmentNumber
- dmDevice.PurchaseDate = purchaseDate
- dmDevice.InstallDate = installDate
- dmDevice.CommissioningDate = commissioningDate
- dmDevice.Maintainer = maintainer
- dmDevice.MaintenanceCall = maintenanceCall
- dmDevice.WarrantyPeriod = warrantyPeriod
- dmDevice.DeviceStatus = deviceStatus
- dmDevice.InitialUseTimes = initialUseTimes
- dmDevice.Mark = mark
- dmDevice.RetirementDate = retirementDate
- dmDevice.RetirementReason = retirementReason
- dmDevice.ServiceLife = serviceLife
- dmDevice.WorkingTime = workingTime
- dmDevice.TreatmentMode = treatmentMode
- updateErr := service.UpdateDMDevice(dmDevice, deviceNumber, device)
- if updateErr != nil {
- this.ErrorLog("更新血透机失败:%v", updateErr)
- this.ServeFailJSONWithSGJErrorCode(enums.ErrorCodeDBUpdate)
- return
- }
- this.ServeSuccessJSON(map[string]interface{}{
- "device": device,
- })
-
- } else if device.DeviceType == 2 {
- wteDevice, getWTEDeviceErr := service.GetWTEDeviceByID(adminInfo.CurrentOrgId, device.WTEID)
- if getWTEDeviceErr != nil {
- this.ErrorLog("获取水处理机失败:%v", getWTEDeviceErr)
- this.ServeFailJSONWithSGJErrorCode(enums.ErrorCodeDataException)
- return
- } else if wteDevice == nil || wteDevice.Status != 1 {
- this.ServeFailJSONWithSGJErrorCode(enums.ErrorCodeDeviceNotExist)
- return
- }
- wteDevice.SerialNumber = serialNumber
- wteDevice.Name = deviceName
- wteDevice.Manufacturer = manufacturer
- wteDevice.RepairFactory = repairFactory
- wteDevice.Model = model
- wteDevice.Department = department
- wteDevice.DepartmentNumber = departmentNumber
- wteDevice.PurchaseDate = purchaseDate
- wteDevice.InstallDate = installDate
- wteDevice.CommissioningDate = commissioningDate
- wteDevice.Maintainer = maintainer
- wteDevice.MaintenanceCall = maintenanceCall
- wteDevice.WarrantyPeriod = warrantyPeriod
- wteDevice.DeviceStatus = deviceStatus
- wteDevice.InitialUseTimes = initialUseTimes
- wteDevice.Mark = mark
- wteDevice.RetirementDate = retirementDate
- wteDevice.RetirementReason = retirementReason
- wteDevice.ServiceLife = serviceLife
- wteDevice.WorkingTime = workingTime
- wteDevice.ReverseOsmosisMode = reverseOsmosisMode
- updateErr := service.UpdateWTEDevice(wteDevice, deviceNumber, device)
- if updateErr != nil {
- this.ErrorLog("更新水处理机失败:%v", updateErr)
- this.ServeFailJSONWithSGJErrorCode(enums.ErrorCodeDBUpdate)
- return
- }
- this.ServeSuccessJSON(map[string]interface{}{
- "device": device,
- })
- }
- }
-
- // /api/device/disable [post] DisableDevice
- // @param id:int
- func (this *DeviceAPIController) DisableDevice() {
- deviceID, _ := this.GetInt64("id")
- if deviceID <= 0 {
- this.ServeFailJSONWithSGJErrorCode(enums.ErrorCodeParamWrong)
- return
- }
- adminUserInfo := this.GetAdminUserInfo()
- device, getDeviceErr := service.GetDeviceByID(adminUserInfo.CurrentOrgId, deviceID)
- if getDeviceErr != nil {
- this.ErrorLog("获取设备失败:%v", getDeviceErr)
- this.ServeFailJSONWithSGJErrorCode(enums.ErrorCodeDataException)
- return
- } else if device == nil {
- this.ServeFailJSONWithSGJErrorCode(enums.ErrorCodeDeviceNotExist)
- return
- }
- if device.Status == 1 {
- device.Status = 0
- device.ModifyTime = time.Now().Unix()
- updateErr := service.UpdateDevice(device)
- if updateErr != nil {
- this.ErrorLog("删除设备失败:%v", updateErr)
- this.ServeFailJSONWithSGJErrorCode(enums.ErrorCodeDataException)
- return
- }
- }
- this.ServeSuccessJSON(nil)
- }
-
- // /api/device/zones [get] GetZones
- func (this *DeviceAPIController) GetZones() {
- adminInfo := this.GetAdminUserInfo()
- zones, getZonesErr := service.GetAllValidDeviceZones(adminInfo.CurrentOrgId)
- if getZonesErr != nil {
- this.ErrorLog("获取设备分区列表失败:%v", getZonesErr)
- this.ServeFailJSONWithSGJErrorCode(enums.ErrorCodeDataException)
- return
- }
- this.ServeSuccessJSON(map[string]interface{}{
- "zones": zones,
- })
- }
-
- // /api/device/zone/create [post] CreateZone
- // @param name:string
- // @param type:int
- func (this *DeviceAPIController) CreateZone() {
- name := this.GetString("name")
- type_, _ := this.GetInt("type")
- if len(name) == 0 || type_ <= 0 {
- this.ServeFailJSONWithSGJErrorCode(enums.ErrorCodeParamWrong)
- return
- }
-
- adminInfo := this.GetAdminUserInfo()
- _, errcode := service.GetZoneByName(name, adminInfo.CurrentOrgId)
- fmt.Println("errcode=----------", errcode)
- if errcode == gorm.ErrRecordNotFound {
- zone, createErr := service.CreateDeviceZone(adminInfo.CurrentOrgId, name, type_)
- if createErr != nil {
- this.ErrorLog("创建设备分区失败:%v", createErr)
- this.ServeFailJSONWithSGJErrorCode(enums.ErrorCodeDBCreate)
- return
- }
- this.ServeSuccessJSON(map[string]interface{}{
- "zone": zone,
- })
- } else if errcode == nil {
- this.ServeFailJSONWithSGJErrorCode(enums.ErrorCodeDBCreate)
- return
- }
- }
-
- // /api/device/zone/modify [post] ModifyZone
- // @param id:int
- // @param name:string
- // @param type:int
- func (this *DeviceAPIController) ModifyZone() {
- id, _ := this.GetInt64("id")
- name := this.GetString("name")
- type_, _ := this.GetInt("type")
- if id <= 0 || len(name) == 0 || type_ <= 0 {
- this.ServeFailJSONWithSGJErrorCode(enums.ErrorCodeParamWrong)
- return
- }
-
- adminInfo := this.GetAdminUserInfo()
- zone, getZoneErr := service.GetDeviceZoneByID(adminInfo.CurrentOrgId, id)
- if getZoneErr != nil {
- this.ErrorLog("获取设备分区失败:%v", getZoneErr)
- this.ServeFailJSONWithSGJErrorCode(enums.ErrorCodeDataException)
- return
- } else if zone == nil || zone.Status != 1 {
- this.ServeFailJSONWithSGJErrorCode(enums.ErrorCodeDeviceZoneNotExist)
- return
- }
-
- zone.Name = name
- zone.Type = type_
- zone.ModifyTime = time.Now().Unix()
-
- byName, _ := service.GetZoneByNameOne(name, adminInfo.CurrentOrgId)
- if byName.ID > 0 && byName.ID != id {
- this.ServeFailJSONWithSGJErrorCode(enums.ErrorCodeDataException)
- return
- }
- updateErr := service.UpdateDeviceZone(zone)
- if updateErr != nil {
- this.ErrorLog("修改设备分区失败:%v", updateErr)
- this.ServeFailJSONWithSGJErrorCode(enums.ErrorCodeDBUpdate)
- return
- }
- this.ServeSuccessJSON(nil)
- }
-
- // /api/device/zone/disable [post] DisableZone
- // @param id:int
- func (this *DeviceAPIController) DisableZone() {
- zoneID, _ := this.GetInt64("id")
- if zoneID <= 0 {
- this.ServeFailJSONWithSGJErrorCode(enums.ErrorCodeParamWrong)
- return
- }
- adminUserInfo := this.GetAdminUserInfo()
- zone, getZoneErr := service.GetDeviceZoneByID(adminUserInfo.CurrentOrgId, zoneID)
- if getZoneErr != nil {
- this.ErrorLog("获取设备分区失败:%v", getZoneErr)
- this.ServeFailJSONWithSGJErrorCode(enums.ErrorCodeDataException)
- return
- } else if zone == nil {
- this.ServeFailJSONWithSGJErrorCode(enums.ErrorCodeDeviceZoneNotExist)
- return
- }
- if zone.Status == 1 {
- countOfDeviceNumber, getCountErr := service.GetDeviceNumberCountForZoneID(adminUserInfo.CurrentOrgId, zoneID)
- if getCountErr != nil {
- this.ErrorLog("获取分区内床位数量失败:%v", getCountErr)
- this.ServeFailJSONWithSGJErrorCode(enums.ErrorCodeDataException)
- return
- }
- if countOfDeviceNumber != 0 {
- this.ServeFailJSONWithSGJErrorCode(enums.ErrorCodeDeviceZoneCannotDisable)
- return
- }
-
- zone.Status = 0
- zone.ModifyTime = time.Now().Unix()
- updateErr := service.UpdateDeviceZone(zone)
- if updateErr != nil {
- this.ErrorLog("删除分区失败:%v", updateErr)
- this.ServeFailJSONWithSGJErrorCode(enums.ErrorCodeDataException)
- return
- }
- }
- this.ServeSuccessJSON(nil)
- }
-
- // /api/device/groups [get] GetGroups
- func (this *DeviceAPIController) GetGroups() {
- adminInfo := this.GetAdminUserInfo()
- groups, getGroupsErr := service.GetAllValidDeviceGroups(adminInfo.CurrentOrgId)
- if getGroupsErr != nil {
- //beego.Error("获取设备分组列表失败:", getGroupsErr)
- this.ServeFailJSONWithSGJErrorCode(enums.ErrorCodeDataException)
- return
- }
- this.ServeSuccessJSON(map[string]interface{}{
- "groups": groups,
- })
- }
-
- // /api/device/group/create [post] CreateGroup
- // @param name:string
- func (this *DeviceAPIController) CreateGroup() {
- name := this.GetString("name")
- if len(name) == 0 {
- this.ServeFailJSONWithSGJErrorCode(enums.ErrorCodeParamWrong)
- return
- }
-
- adminInfo := this.GetAdminUserInfo()
- _, errcode := service.GetDeviceGroupName(name, adminInfo.CurrentOrgId)
- if errcode == gorm.ErrRecordNotFound {
- group, createErr := service.CreateDeviceGroup(adminInfo.CurrentOrgId, name)
- if createErr != nil {
- this.ErrorLog("创建设备分组失败:%v", createErr)
- this.ServeFailJSONWithSGJErrorCode(enums.ErrorCodeDBCreate)
- return
- }
- this.ServeSuccessJSON(map[string]interface{}{
- "group": group,
- })
- } else if errcode == nil {
- this.ServeFailJSONWithSGJErrorCode(enums.ErrorCodeDBCreate)
- return
- }
-
- }
-
- // /api/device/group/modify [post] ModifyGroup
- // @param id:int
- // @param name:string
- func (this *DeviceAPIController) ModifyGroup() {
- id, _ := this.GetInt64("id")
- name := this.GetString("name")
- if id <= 0 || len(name) == 0 {
- this.ServeFailJSONWithSGJErrorCode(enums.ErrorCodeParamWrong)
- return
- }
-
- adminInfo := this.GetAdminUserInfo()
- group, getGroupErr := service.GetDeviceGroupByID(adminInfo.CurrentOrgId, id)
- if getGroupErr != nil {
- this.ErrorLog("获取设备分组失败:%v", getGroupErr)
- this.ServeFailJSONWithSGJErrorCode(enums.ErrorCodeDataException)
- return
- } else if group == nil || group.Status != 1 {
- this.ServeFailJSONWithSGJErrorCode(enums.ErrorCodeDeviceGroupNotExist)
- return
- }
-
- group.Name = name
- group.ModifyTime = time.Now().Unix()
- byName, getGroupErr := service.GetUpdateDeviceGroupByName(name, adminInfo.CurrentOrgId)
- if byName.ID > 0 && byName.ID != id {
- this.ServeFailJSONWithSGJErrorCode(enums.ErrorCodeDataException)
- return
- }
- updateErr := service.UpdateDeviceGroup(group)
- if updateErr != nil {
- this.ErrorLog("修改设备分组失败:%v", updateErr)
- this.ServeFailJSONWithSGJErrorCode(enums.ErrorCodeDBUpdate)
- return
- }
- this.ServeSuccessJSON(nil)
- }
-
- // /api/device/group/disable [post] DisableGroup
- // @param id:int
- func (this *DeviceAPIController) DisableGroup() {
- groupID, _ := this.GetInt64("id")
- if groupID <= 0 {
- this.ServeFailJSONWithSGJErrorCode(enums.ErrorCodeParamWrong)
- return
- }
- adminUserInfo := this.GetAdminUserInfo()
- group, getGroupErr := service.GetDeviceGroupByID(adminUserInfo.CurrentOrgId, groupID)
- if getGroupErr != nil {
- this.ErrorLog("获取设备分组失败:%v", getGroupErr)
- this.ServeFailJSONWithSGJErrorCode(enums.ErrorCodeDataException)
- return
- } else if group == nil {
- this.ServeFailJSONWithSGJErrorCode(enums.ErrorCodeDeviceGroupNotExist)
- return
- }
- if group.Status == 1 {
- countOfDeviceNumber, getCountErr := service.GetDeviceNumberCountForGroupID(adminUserInfo.CurrentOrgId, groupID)
- if getCountErr != nil {
- this.ErrorLog("获取分组内床位数量失败:%v", getCountErr)
- this.ServeFailJSONWithSGJErrorCode(enums.ErrorCodeDataException)
- return
- }
- if countOfDeviceNumber != 0 {
- this.ServeFailJSONWithSGJErrorCode(enums.ErrorCodeDeviceZoneCannotDisable)
- return
- }
-
- group.Status = 0
- group.ModifyTime = time.Now().Unix()
- updateErr := service.UpdateDeviceGroup(group)
- if updateErr != nil {
- this.ErrorLog("删除分组失败:%v", updateErr)
- this.ServeFailJSONWithSGJErrorCode(enums.ErrorCodeDataException)
- return
- }
- }
- this.ServeSuccessJSON(nil)
- }
-
- // /api/device/numbers [get] GetNumbers
- func (this *DeviceAPIController) GetNumbers() {
- adminInfo := this.GetAdminUserInfo()
- numbers, getNumbersErr := service.GetAllValidDeviceNumbers(adminInfo.CurrentOrgId)
- if getNumbersErr != nil {
- //beego.Error("获取机号列表失败:", getNumbersErr)
- this.ServeFailJSONWithSGJErrorCode(enums.ErrorCodeDataException)
- return
- }
- this.ServeSuccessJSON(map[string]interface{}{
- "numbers": numbers,
- })
- }
-
- // /api/device/number/create [post] CreateNumber
- // @param number:string
- // @param zone:int
- // @param group:int
- func (this *DeviceAPIController) CreateNumber() {
- num := this.GetString("number")
- zoneID, _ := this.GetInt64("zone")
- groupID, _ := this.GetInt64("group")
- sort, _ := this.GetInt64("sort")
- if len(num) == 0 || zoneID <= 0 || groupID <= 0 {
- this.ServeFailJSONWithSGJErrorCode(enums.ErrorCodeParamWrong)
- return
- }
-
- adminInfo := this.GetAdminUserInfo()
- zone, getZoneErr := service.GetDeviceZoneByID(adminInfo.CurrentOrgId, zoneID)
- if getZoneErr != nil {
- this.ErrorLog("获取设备分区失败:%v", getZoneErr)
- this.ServeFailJSONWithSGJErrorCode(enums.ErrorCodeDataException)
- return
- } else if zone == nil || zone.Status != 1 {
- this.ServeFailJSONWithSGJErrorCode(enums.ErrorCodeDeviceZoneNotExist)
- return
- }
-
- group, getGroupErr := service.GetDeviceGroupByID(adminInfo.CurrentOrgId, groupID)
- if getGroupErr != nil {
- this.ErrorLog("获取设备分组失败:%v", getGroupErr)
- this.ServeFailJSONWithSGJErrorCode(enums.ErrorCodeDataException)
- return
- } else if group == nil || group.Status != 1 {
- this.ServeFailJSONWithSGJErrorCode(enums.ErrorCodeDeviceGroupNotExist)
- return
- }
-
- _, errcode := service.GetCreateDeviceNumber(num, adminInfo.CurrentOrgId)
- if errcode == gorm.ErrRecordNotFound {
- number, createErr := service.CreateDeviceNumber(adminInfo.CurrentOrgId, num, zoneID, groupID, sort)
- if createErr != nil {
- this.ErrorLog("创建机号失败:%v", createErr)
- this.ServeFailJSONWithSGJErrorCode(enums.ErrorCodeDBCreate)
- return
- }
- numberJson := map[string]interface{}{
- "id": number.ID,
- "number": number.Number,
- "zone_id": number.ZoneID,
- "group_id": number.GroupID,
- "zone_name": zone.Name,
- "group_name": group.Name,
- "sort": number.Sort,
- }
- this.ServeSuccessJSON(map[string]interface{}{
- "number": numberJson,
- })
- } else if errcode == nil {
- this.ServeFailJSONWithSGJErrorCode(enums.ErrorCodeDBCreate)
- return
- }
-
- }
-
- // /api/device/number/modify [post] ModifyNumber
- // @param id:int
- // @param number:string
- // @param zone:int
- // @param group:int
- func (this *DeviceAPIController) ModifyNumber() {
- id, _ := this.GetInt64("id")
- num := this.GetString("number")
- zoneID, _ := this.GetInt64("zone")
- groupID, _ := this.GetInt64("group")
- sort, _ := this.GetInt64("sort")
- if id <= 0 || len(num) == 0 || zoneID <= 0 || groupID <= 0 {
- this.ServeFailJSONWithSGJErrorCode(enums.ErrorCodeParamWrong)
- return
- }
-
- adminInfo := this.GetAdminUserInfo()
- number, getNumberErr := service.GetDeviceNumberByID(adminInfo.CurrentOrgId, id)
- if getNumberErr != nil {
- this.ErrorLog("获取机号失败:%v", getNumberErr)
- this.ServeFailJSONWithSGJErrorCode(enums.ErrorCodeDataException)
- return
- } else if number == nil || number.Status != 1 {
- this.ServeFailJSONWithSGJErrorCode(enums.ErrorCodeDeviceNumberNotExist)
- return
- }
-
- zone, getZoneErr := service.GetDeviceZoneByID(adminInfo.CurrentOrgId, zoneID)
- if getZoneErr != nil {
- this.ErrorLog("获取设备分区失败:%v", getZoneErr)
- this.ServeFailJSONWithSGJErrorCode(enums.ErrorCodeDataException)
- return
- } else if zone == nil || zone.Status != 1 {
- this.ServeFailJSONWithSGJErrorCode(enums.ErrorCodeDeviceZoneNotExist)
- return
- }
-
- group, getGroupErr := service.GetDeviceGroupByID(adminInfo.CurrentOrgId, groupID)
- if getGroupErr != nil {
- this.ErrorLog("获取设备分组失败:%v", getGroupErr)
- this.ServeFailJSONWithSGJErrorCode(enums.ErrorCodeDataException)
- return
- } else if group == nil || group.Status != 1 {
- this.ServeFailJSONWithSGJErrorCode(enums.ErrorCodeDeviceGroupNotExist)
- return
- }
-
- number.Number = num
- number.ZoneID = zoneID
- number.GroupID = groupID
- number.Sort = sort
- byName, _ := service.GetDeviceNumberByName(num, adminInfo.CurrentOrgId)
- if byName.ID > 0 && byName.ID != id {
- this.ServeFailJSONWithSGJErrorCode(enums.ErrorCodeDataException)
- return
- }
- updateErr := service.UpdateDeviceNumber(number)
- if updateErr != nil {
- this.ErrorLog("修改机号失败:%v", updateErr)
- this.ServeFailJSONWithSGJErrorCode(enums.ErrorCodeDBUpdate)
- return
- }
-
- numberJson := map[string]interface{}{
- "id": number.ID,
- "number": number.Number,
- "zone_id": number.ZoneID,
- "group_id": number.GroupID,
- "zone_name": zone.Name,
- "group_name": group.Name,
- "sort": number.Sort,
- }
- this.ServeSuccessJSON(map[string]interface{}{
- "number": numberJson,
- })
- }
-
- // /api/device/number/disable [post] DisableNumber
- // @param id:int
- func (this *DeviceAPIController) DisableNumber() {
- deviceNumberID, _ := this.GetInt64("id")
- if deviceNumberID <= 0 {
- this.ServeFailJSONWithSGJErrorCode(enums.ErrorCodeParamWrong)
- return
- }
- adminUserInfo := this.GetAdminUserInfo()
- deviceNumber, getDeviceNumberErr := service.GetDeviceNumberByID(adminUserInfo.CurrentOrgId, deviceNumberID)
- if getDeviceNumberErr != nil {
- this.ErrorLog("获取机号失败:%v", getDeviceNumberErr)
- this.ServeFailJSONWithSGJErrorCode(enums.ErrorCodeDataException)
- return
- } else if deviceNumber == nil {
- this.ServeFailJSONWithSGJErrorCode(enums.ErrorCodeDeviceNumberNotExist)
- return
- }
-
- if deviceNumber.Status == 1 {
- countOfDevice, getCountErr := service.GetDeviceCountForDeviceNumberID(adminUserInfo.CurrentOrgId, deviceNumberID)
- if getCountErr != nil {
- this.ErrorLog("获取床位的设备数量失败:%v", getCountErr)
- this.ServeFailJSONWithSGJErrorCode(enums.ErrorCodeDataException)
- return
- } else if countOfDevice != 0 {
- this.ServeFailJSONWithSGJErrorCode(enums.ErrorCodeDeviceNumberCannotDisableCuzDevice)
- return
- }
-
- now := time.Now()
- todayStr := now.Format("2006-01-02")
- today, _ := utils.ParseTimeStringToTime("2006-01-02", todayStr)
- countOfSch, getSchCountErr := service.GetScheduleCountForDeviceNumber(adminUserInfo.CurrentOrgId, deviceNumberID, today.Unix())
- if getSchCountErr != nil {
- this.ErrorLog("获取床位的排班失败:%v", getSchCountErr)
- this.ServeFailJSONWithSGJErrorCode(enums.ErrorCodeDataException)
- return
- } else if countOfSch != 0 {
- this.ServeFailJSONWithSGJErrorCode(enums.ErrorCodeDeviceNumberCannotDisableCuzSchedule)
- return
- }
-
- countOfSchTempItem, getSchTempItemCountErr := service.GetScheduleTemplateItemCountForDeviceNumber(adminUserInfo.CurrentOrgId, deviceNumberID)
- if getSchTempItemCountErr != nil {
- this.ErrorLog("获取床位的排班模板失败:%v", getSchTempItemCountErr)
- this.ServeFailJSONWithSGJErrorCode(enums.ErrorCodeDataException)
- return
- } else if countOfSchTempItem != 0 {
- this.ServeFailJSONWithSGJErrorCode(enums.ErrorCodeDeviceNumberCannotDisableCuzSchTemplate)
- return
- }
-
- deviceNumber.Status = 0
- deviceNumber.ModifyTime = time.Now().Unix()
- updateErr := service.UpdateDeviceNumber(deviceNumber)
- if updateErr != nil {
- this.ErrorLog("删除床位号失败:%V", updateErr)
- this.ServeFailJSONWithSGJErrorCode(enums.ErrorCodeDataException)
- return
- }
- }
- this.ServeSuccessJSON(nil)
-
- }
-
- func (this *DeviceAPIController) GetAllSubregion() {
- adminInfo := this.GetAdminUserInfo()
- zones, getZonesErr := service.GetAllValidDeviceZones(adminInfo.CurrentOrgId)
- if getZonesErr != nil {
- this.ErrorLog("获取设备分区列表失败:%v", getZonesErr)
- this.ServeFailJSONWithSGJErrorCode(enums.ErrorCodeDataException)
- return
- }
- numbers, getNumbersErr := service.GetAllValidDeviceNumbers(adminInfo.CurrentOrgId)
- if getNumbersErr != nil {
- this.ErrorLog("获取床位失败:%v", getNumbersErr)
- this.ServeFailJSONWithSGJErrorCode(enums.ErrorCodeDataException)
- return
- }
-
- devicenumber, err := service.GetAllBedNumber(adminInfo.CurrentOrgId)
- fmt.Println("err", err)
- this.ServeSuccessJSON(map[string]interface{}{
- "zones": zones,
- "numbers": numbers,
- "devicenumber": devicenumber,
- })
- }
-
- //func (this *DeviceAPIController) SaveManageInfo() {
- // adminUserInfo := this.GetAdminUserInfo()
- // orgid := adminUserInfo.CurrentOrgId
- // fmt.Println("机构id",orgid)
- // dataBody := make(map[string]interface{}, 0)
- // err := json.Unmarshal(this.Ctx.Input.RequestBody, &dataBody)
- // fmt.Println("err",err)
- // serial_numbe:= int64(dataBody["serial_number"].(float64))
- // fmt.Println("序列号",serial_numbe)
- // device_type := int64(dataBody["device_type"].(float64))
- // fmt.Println("设备类型",device_type)
- // bed_number := int64(dataBody["bed_number"].(float64))
- // fmt.Println("床位号",bed_number)
- // //通过床位id获取区号id
- // number, err := service.GetZoneId(bed_number, orgid)
- // fmt.Println("获取分区id错误",err)
- // device_name := dataBody["device_name"].(string)
- // fmt.Println("设备名称",device_name)
- // manufacture_factory := dataBody["manufacture_factory"].(string)
- // fmt.Println("生产厂家",manufacture_factory)
- // service_manufacturer := dataBody["service_manufacturer"].(string)
- // fmt.Println("维修厂家",service_manufacturer)
- // unit_type := dataBody["unit_type"].(string)
- // fmt.Println("设备型号",unit_type)
- // use_section := dataBody["use_section"].(string)
- // fmt.Println("使用科室",use_section)
- // section_number := dataBody["section_number"].(string)
- // fmt.Println("科室编号",section_number)
- // buy_date := dataBody["buy_date"].(string)
- // fmt.Println("buy_date",buy_date)
- // timeLayout := "2006-01-02 15:04:05"
- // theTime, err := utils.ParseTimeStringToTime(timeLayout, buy_date+" 00:00:00")
- // buydate := theTime.Unix()
- // int_num := *(*int)(unsafe.Pointer(&buydate))
- // if(int_num<0){
- // buydate = 0
- // }
- // fmt.Println("购买日期",buydate)
- //
- // install_date := dataBody["install_date"].(string)
- // toTime, err := utils.ParseTimeStringToTime(timeLayout, install_date+" 00:00:00")
- // installdate := toTime.Unix()
- // buy_num := *(*int)(unsafe.Pointer(&installdate))
- // if(buy_num < 0){
- // installdate = 0
- // }
- // fmt.Println("安装日期",installdate)
- //
- // start_date := dataBody["start_date"].(string)
- // stringToTime, err := utils.ParseTimeStringToTime(timeLayout, start_date+" 00:00:00")
- // startdate := stringToTime.Unix()
- // start_num := *(*int)(unsafe.Pointer(&startdate))
- // if(start_num < 0){
- // startdate = 0
- // }
- // fmt.Println("启用日期",startdate)
- //
- // maintenance_engineer := dataBody["maintenance_engineer"].(string)
- // fmt.Println("维修工程",maintenance_engineer)
- // telephone := dataBody["telephone"].(string)
- // fmt.Println("telephone",telephone)
- // guarantee_date := dataBody["guarantee_date"].(string)
- // fmt.Println("保修期限",guarantee_date)
- // machine_status := int64(dataBody["machine_status"].(float64))
- // fmt.Println("机器状态",machine_status)
- // user_total := dataBody["user_total"].(string)
- // fmt.Println("初次使用次数",user_total)
- // disinfection_mode := int64(dataBody["Disinfection_mode"].(float64))
- // fmt.Println("消毒方式",disinfection_mode)
- // remarks := dataBody["remarks"].(string)
- // fmt.Println("备注",remarks)
- // rubbish_date := dataBody["rubbish_date"].(string)
- // timeStringToTime, err := utils.ParseTimeStringToTime(timeLayout, rubbish_date+" 00:00:00")
- // rubbishdate := timeStringToTime.Unix()
- // rubb_num := *(*int)(unsafe.Pointer(&rubbishdate))
- // if(rubb_num < 0){
- // rubbishdate = 0
- // }
- // fmt.Println("报废日期",rubbishdate)
- // rubbish_reason := int64(dataBody["rubbish_reason"].(float64))
- // fmt.Println("报废原因",rubbish_reason)
- // user_year := dataBody["user_year"].(string)
- // fmt.Println("使用年限",user_year)
- // work_time := dataBody["work_time"].(string)
- // fmt.Println("工作时长",work_time)
- // treat_types := dataBody["treat_type"].([]interface{})
- // revers := int64(dataBody["revers_mode"].(float64))
- // fmt.Println("反渗模式",revers)
- // ids := make([]int64, 0)
- // for _, treat := range treat_types {
- // id := int64(treat.(float64))
- // ids = append(ids, id)
- // }
- // fmt.Println("治疗模式",treat_types)
- // addmacher := &models.DeviceAddmacher{
- // SerialNumber: serial_numbe,
- // DeviceType: device_type,
- // BedNumber: number.Number,
- // BedId:bed_number,
- // ZoneId:number.ZoneID,
- // DeviceName: device_name,
- // ManufactureFactory: manufacture_factory,
- // ServiceManufacturer: service_manufacturer,
- // UnitType: unit_type,
- // UseSection: use_section,
- // SectionNumber: section_number,
- // BuyDate: buydate,
- // InstallDate: installdate,
- // StartDate: startdate,
- // MaintenaceEngineer: maintenance_engineer,
- // Telephone: telephone,
- // GuaranteeDate: guarantee_date,
- // MachineStatus: machine_status,
- // UserTotal: user_total,
- // DisinfectionMode: disinfection_mode,
- // Remarks: remarks,
- // RubbishDate: rubbishdate,
- // RubbishReason: rubbish_reason,
- // UserYear: user_year,
- // WorkTime: work_time,
- // ReversMode: revers,
- // Status: 1,
- // Ctime: time.Now().Unix(),
- // UserOrgId: orgid,
- // }
- // err = service.CreateMacher(addmacher)
- // fmt.Println("添加数据错误是什么",err)
- // if err !=nil{
- // this.ServeFailJsonSend(enums.ErrorCodeDataException, "添加设备失败")
- // return
- // }
- // deviceAddmacher, err := service.GetLastMacherData(orgid)
- // fmt.Println("错误是什么" ,err)
- // service.AddTreatMode(deviceAddmacher.ID,orgid,ids)
- // this.ServeSuccessJSON(map[string]interface{}{
- // "addmacher":addmacher,
- // })
- //}
-
- func (this *DeviceAPIController) GetAllMachineInfo() {
-
- page, _ := this.GetInt64("page")
- fmt.Println("page是什么", page)
- limit, _ := this.GetInt64("limit")
- fmt.Println("limit是什么", limit)
- searchKey := this.GetString("searchKey")
- fmt.Println("searcheKey", searchKey)
- zoneid, _ := this.GetInt64("zoneid")
- fmt.Println("区号id", zoneid)
- equipmentid, _ := this.GetInt64("equipmentid")
- fmt.Println("equipmentid", equipmentid)
- statusid, _ := this.GetInt64("statusid")
- fmt.Println("statusid", statusid)
- adminUserInfo := this.GetAdminUserInfo()
- orgid := adminUserInfo.CurrentOrgId
- addmahcer, total, err := service.GetAllMachineInfo(page, limit, searchKey, zoneid, equipmentid, statusid, orgid)
-
- if err != nil {
- this.ServeFailJsonSend(enums.ErrorCodeDataException, "查询设备失败")
- return
- }
- this.ServeSuccessJSON(map[string]interface{}{
- "addmahcer": addmahcer,
- "total": total,
- })
- }
-
- func (this *DeviceAPIController) GetAllMachine() {
- adminUserInfo := this.GetAdminUserInfo()
- orgid := adminUserInfo.CurrentOrgId
- fmt.Println("机构id", orgid)
- zoneid, _ := this.GetInt64("zoneid")
- fmt.Println("zoneid", zoneid)
- //number, err := service.GetZoneId(zoneid, orgid)
- //classid, _ := this.GetInt64("classid")
- //fmt.Println("classid", classid)
- deviceid, _ := this.GetInt64("deviceid")
- fmt.Println("deviceid", deviceid)
- //now := time.Now()
- //var week = int(now.Weekday())
- //weeks := int64(week)
- //fmt.Println("星期几",weeks)
- timeStr := time.Now().Format("2006-01-02")
- timeLayout := "2006-01-02 15:04:05"
- fmt.Println("timeStr:", timeStr)
- timeStringToTime, err := utils.ParseTimeStringToTime(timeLayout, timeStr+" 00:00:00")
- timenow := timeStringToTime.Unix()
- fmt.Println("timenow是什么", timenow)
- fmt.Println("时间搓", timeStringToTime.Unix())
- addmahcer, err := service.GetAllMachine(zoneid, 0, deviceid, timenow, orgid)
- if err != nil {
- this.ServeFailJsonSend(enums.ErrorCodeDataException, "查询设备失败")
- return
- }
- this.ServeSuccessJSON(map[string]interface{}{
- "addmahcer": addmahcer,
- })
- }
-
- func (this *DeviceAPIController) GetMachineDetail() {
- id, _ := this.GetInt64("id")
- adminUserInfo := this.GetAdminUserInfo()
- orgid := adminUserInfo.CurrentOrgId
- fmt.Println("orgid", orgid)
- addmacher, err := service.GetMachineDetail(id, orgid)
- fmt.Print("err", err)
- warning, err := service.GetTimeWarning(id, orgid)
- germ, err := service.GetTimeLast(id, orgid)
- clean, err := service.GetTimeLastData(id, orgid)
- //zone, err := service.GetZoneName(addmacher.ZoneId, orgid)
- fmt.Println("报错小明", err)
- number, err := service.GetAllBedNumberTwo(orgid, id)
- mode, errr := service.GetTreatModel(id, orgid)
- fmt.Println("mode是什么", mode)
- fmt.Println("错误是什么", errr)
- if err != nil {
- this.ServeFailJsonSend(enums.ErrorCodeDataException, "查询单个失败")
- return
- }
- this.ServeSuccessJSON(map[string]interface{}{
- "addmacher": addmacher,
- "mode": mode,
- "number": number,
- "warning": warning,
- "germ": germ,
- "clean": clean,
- //"zone": zone,
- })
- }
-
- func (this *DeviceAPIController) GetAllMachineTwo() {
- adminUserInfo := this.GetAdminUserInfo()
- orgid := adminUserInfo.CurrentOrgId
- fmt.Println("机构id", orgid)
- zoneid, _ := this.GetInt64("zoneid")
- fmt.Println("zoneid", zoneid)
- //number, err := service.GetZoneId(zoneid, orgid)
- //classid, _ := this.GetInt64("classid")
- //fmt.Println("classid", classid)
- deviceid, _ := this.GetInt64("deviceid")
- fmt.Println("deviceid", deviceid)
- //now := time.Now()
- //var week = int(now.Weekday())
- //weeks := int64(week)
- //fmt.Println("星期几",weeks)
- timeStr := time.Now().Format("2006-01-02")
- timeLayout := "2006-01-02 15:04:05"
- fmt.Println("timeStr:", timeStr)
- timeStringToTime, err := utils.ParseTimeStringToTime(timeLayout, timeStr+" 00:00:00")
- timenow := timeStringToTime.Unix()
- fmt.Println("timenow是什么", timenow)
- fmt.Println("时间搓", timeStringToTime.Unix())
- addmahcer, err := service.GetAllMachine(zoneid, 0, deviceid, timenow, orgid)
- if err != nil {
- this.ServeFailJsonSend(enums.ErrorCodeDataException, "查询设备失败")
- return
- }
- this.ServeSuccessJSON(map[string]interface{}{
- "addmahcer": addmahcer,
- })
- }
|