123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680 |
- package controllers
-
- import (
- "XT_New/enums"
- "XT_New/models"
- "XT_New/service"
- "XT_New/utils"
- "encoding/json"
- "fmt"
- "github.com/astaxie/beego"
- "github.com/jinzhu/gorm"
- "reflect"
- "strconv"
- "strings"
- "time"
- )
-
- type HisProjectApiController struct {
- BaseAuthAPIController
- }
-
- func HisProjectRouters() {
-
- beego.Router("/api/his/saveproject", &HisProjectApiController{}, "Get:SaveProject")
- beego.Router("/api/his/getprojectlist", &HisProjectApiController{}, "Get:GetProjectList")
- beego.Router("/api/his/getprojectdetail", &HisProjectApiController{}, "Get:GetProjectDetail")
- beego.Router("/api/his/updatedproject", &HisProjectApiController{}, "Get:UpdatedProject")
- beego.Router("/api/his/deletehisproject", &HisProjectApiController{}, "Get:DeleteHisProject")
- beego.Router("/api/his/saveprojectteam", &HisProjectApiController{}, "post:SaveProjectTeam")
- beego.Router("/api/his/getprojectteamlist", &HisProjectApiController{}, "Get:GetProjectTeamList")
- beego.Router("/api/his/getprojectteamdetail", &HisProjectApiController{}, "Get:GetProjectTeamDetail")
- beego.Router("/api/his/updateprojectteam", &HisProjectApiController{}, "post:UpdatedProjectTeam")
- beego.Router("/api/his/deleteprojectteam", &HisProjectApiController{}, "Get:DeleteProjectTeam")
- beego.Router("/api/his/savedepartment", &HisProjectApiController{}, "Get:SaveDePartment")
- beego.Router("/api/his/getdepartmentlist", &HisProjectApiController{}, "Get:GetDepartMentList")
- beego.Router("/api/his/getdepartmentdetail", &HisProjectApiController{}, "Get:GetDepartMentDetail")
- beego.Router("/api/his/updagtedepartment", &HisProjectApiController{}, "Get:UpdatedDeparment")
- beego.Router("/api/his/deletedeparment", &HisProjectApiController{}, "Get:DeleteDepartment")
- beego.Router("/api/his/getallprojectlist", &HisProjectApiController{}, "Get:GetAllProjectList")
- beego.Router("/api/his/addprojectlist", &HisProjectApiController{}, "Get:AddProjectList")
- beego.Router("/api/his/deleteproject", &HisProjectApiController{}, "Get:DeleteProject")
- beego.Router("/api/his/gethisproject", &HisProjectApiController{}, "Get:GetHisProject")
- beego.Router("/api/his/getprojectteam", &HisProjectApiController{}, "Get:GetProjectTeam")
- beego.Router("/api/his/getalldoctorlist", &HisProjectApiController{}, "Get:GetAllDoctorList")
- beego.Router("/api/his/savehispatient", &HisProjectApiController{}, "Get:SaveHisPatient")
- //获取今日血透排班的患者
- beego.Router("/api/his/getbloodpatient", &HisProjectApiController{}, "Get:GetBloodPatientList")
- //获取患者的今日透析处方
- beego.Router("/api/his/gethisprescription", &HisProjectApiController{}, "Get:GetHisPrescription")
-
- //获取治疗单
- beego.Router("/api/his/gettreatlist", &HisProjectApiController{}, "Get:GetTreatmentList")
- beego.Router("/api/his/getpatientinformation", &HisProjectApiController{}, "Get:GetPatientInformation")
- beego.Router("/api/hist/getallprojecteam", &HisProjectApiController{}, "Get:GetAllProjectTeam")
- beego.Router("/api/his/getprojectlistbyid", &HisProjectApiController{}, "Get:GetProjectListById")
- beego.Router("/api/his/gethispatienthistory", &HisProjectApiController{}, "Get:GetHisPatientHistory")
- beego.Router("/api/patient/changepatient", &HisProjectApiController{}, "Get:ChangePatient")
-
- beego.Router("/api/patient/getpatientcasehistory", &HisProjectApiController{}, "Get:GetPatientcaseHistory")
- beego.Router("/api/doctorworkstation/gettemplatedetail", &HisProjectApiController{}, "Get:GetTemplateDetail")
- beego.Router("/api/doctorworkstation/updaterecordtemplate", &HisProjectApiController{}, "Get:UpdateRecordTemplate")
- beego.Router("/api/hispatient/gehispatient", &HisProjectApiController{}, "Get:GetHisPatient")
-
- //获取处方打印单
- beego.Router("/api/hispatient/getprescriptionprint", &HisProjectApiController{}, "Get:GetDoctorAdvicePrint")
- //获取项目打印单
- //beego.Router("/api/hispatient/getprojectprint",&HisApiController{},"Get:GetProjectPrint")
-
- beego.Router("/api/hispatient/postprinthistemplate", &HisProjectApiController{}, "Get:PostPrintHisTemplate")
- beego.Router("/api/gethisprinttemplate", &HisProjectApiController{}, "Get:GetHisPrintTemplate")
- beego.Router("/api/hispatient/postprescriptiontemplate", &HisProjectApiController{}, "Get:PostPrescriptionTempalte")
- beego.Router("/api/hispatient/getprescriptiontemplate", &HisProjectApiController{}, "Get:GetPrescriptionTemplate")
- beego.Router("/api/hispatient/posttreatprinttemplate", &HisProjectApiController{}, "Get:PostTreatPrintTemplate")
- beego.Router("/api/hispatient/gettreatprinttemplate", &HisProjectApiController{}, "Get:GetTreatPrintTemplate")
- beego.Router("/api/hispatient/postchargeprinttemplate", &HisProjectApiController{}, "Get:PostChargePrintTemplate")
- beego.Router("/api/hispatient/getchargeprinttemplate", &HisProjectApiController{}, "Get:GetChargePrintTemplate")
- beego.Router("/api/hispatient/getallhispatient", &HisProjectApiController{}, "Get:GetAllHisPatient")
- beego.Router("/api/hispatient/getchargeprint", &HisProjectApiController{}, "Get:GetChargePrint")
- beego.Router("/api/hispatient/gettodayschedulepatient", &HisProjectApiController{}, "Get:GetTodaySchedulePatient")
- beego.Router("/api/hispatient/gethispatientdetail", &HisProjectApiController{}, "Get:GetHisPatientDetail")
-
- beego.Router("/api/hispatient/getalldepartmentlist", &HisProjectApiController{}, "Get:GetAllDepartmentList")
- beego.Router("/api/hispatient/getprescription", &HisProjectApiController{}, "Get:GetPrescription")
- beego.Router("/api/histpatient/getpatientdetail", &HisProjectApiController{}, "Get:GetPatientDetail")
- beego.Router("/api/hispatient/savemaintemplate", &HisProjectApiController{}, "Get:SaveMainTemplate")
- beego.Router("/api/hispatient/getmedicaltemplatelist", &HisProjectApiController{}, "Get:GetMedicalTempalteList")
- beego.Router("/api/hispatient/getmaintemplatebyid", &HisProjectApiController{}, "Get:GetMainTemplateById")
- beego.Router("/api/hispatient/updatemaintemplate", &HisProjectApiController{}, "Get:UpdateMainTemplate")
- beego.Router("/api/hispatient/deletemaintemplate", &HisProjectApiController{}, "Get:DeleteMainTemplate")
- }
-
- func (this *HisProjectApiController) SaveProject() {
- timeLayout := "2006-01-02"
- loc, _ := time.LoadLocation("Local")
- project_name := this.GetString("project_name")
- pinyin := this.GetString("pinyin")
- wubi := this.GetString("wubi")
- price := this.GetString("price")
- price_float, err := strconv.ParseFloat(price, 64)
- unit := this.GetString("unit")
- cost_classify, _ := this.GetInt64("cost_classify")
- executive_section, _ := this.GetInt64("executive_section")
- medical_coverage, _ := this.GetInt64("medical_coverage")
- statistical_classification, _ := this.GetInt64("statistical_classification")
- disease_directory, _ := this.GetInt64("disease_directory")
- is_record, _ := this.GetInt64("is_record")
- medical_code := this.GetString("medical_code")
- tube_color, _ := this.GetInt64("tube_color")
- medical_status, _ := this.GetInt64("medical_status")
- remark := this.GetString("remark")
- sign, _ := this.GetInt64("sign")
- default_number := this.GetString("default_number")
- is_charge, _ := this.GetInt64("is_charge")
- is_estimate, _ := this.GetInt64("is_estimate")
- is_workload, _ := this.GetInt64("is_workload")
- sort := this.GetString("sort")
- is_advice, _ := this.GetInt64("is_advice")
- is_default, _ := this.GetInt64("is_default")
- single_dose := this.GetString("single_dose")
- delivery_way := this.GetString("delivery_way")
- execution_frequency := this.GetString("execution_frequency")
- number_days := this.GetString("number_days")
- total := this.GetString("total")
- category, _ := this.GetInt64("category")
- specail_project, _ := this.GetInt64("specail_project")
- social_security_directory_code := this.GetString("social_security_directory_code")
- record_date := this.GetString("record_date")
- theTime, _ := time.ParseInLocation(timeLayout+" 15:04:05", record_date+" 00:00:00", loc)
- adminUserInfo := this.GetAdminUserInfo()
- orgId := adminUserInfo.CurrentOrgId
- hisProject := models.XtHisProject{
- ProjectName: project_name,
- Pinyin: pinyin,
- Wubi: wubi,
- Price: price_float,
- Unit: unit,
- CostClassify: cost_classify,
- ExecutiveSection: executive_section,
- MedicalCoverage: medical_coverage,
- StatisticalClassification: statistical_classification,
- DiseaseDirectory: disease_directory,
- IsRecord: is_record,
- MedicalCode: medical_code,
- TubeColor: tube_color,
- MedicalStatus: medical_status,
- Remark: remark,
- Sign: sign,
- DefaultNumber: default_number,
- IsCharge: is_charge,
- IsEstimate: is_estimate,
- IsWorkload: is_workload,
- Sort: sort,
- DoctorAdvice: is_advice,
- IsDefault: is_default,
- UserOrgId: orgId,
- Status: 1,
- CreatedTime: time.Now().Unix(),
- SingleDose: single_dose,
- DeliveryWay: delivery_way,
- ExecutionFrequency: execution_frequency,
- NumberDays: number_days,
- Total: total,
- Category: category,
- SpecailProject: specail_project,
- SocialSecurityDirectoryCode: social_security_directory_code,
- RecordDate: theTime.Unix(),
- }
- //查询项目名称是否存在
- _, errcode := service.GetHisProjectIsExist(project_name, orgId)
- if errcode == gorm.ErrRecordNotFound {
- err = service.CreateHisProject(&hisProject)
-
- if err != nil {
- this.ServeFailJSONWithSGJErrorCode(enums.ErrorCodeUpdateConfig)
- return
- }
- this.ServeSuccessJSON(map[string]interface{}{
- "hisProject": hisProject,
- })
- return
- } else if errcode == nil {
-
- this.ServeFailJSONWithSGJErrorCode(enums.ErrorCodeUpdateConfig)
- return
- }
- }
-
- func (this *HisProjectApiController) GetProjectList() {
-
- adminUserInfo := this.GetAdminUserInfo()
- orgId := adminUserInfo.CurrentOrgId
- limit, _ := this.GetInt64("limit")
- page, _ := this.GetInt64("page")
- is_charge, _ := this.GetInt64("is_charge")
-
- is_start, _ := this.GetInt64("is_start")
- keyword := this.GetString("keyword")
- is_mark, _ := this.GetInt64("is_mark")
- projecList, total, err := service.GetHisProjectList(orgId, limit, page, is_charge, is_start, keyword, is_mark)
- if err != nil {
- this.ServeFailJSONWithSGJErrorCode(enums.ErrorCodeUpdateConfig)
- return
- }
- this.ServeSuccessJSON(map[string]interface{}{
- "projecList": projecList,
- "total": total,
- })
- return
- }
-
- func (this *HisProjectApiController) GetProjectDetail() {
- id, _ := this.GetInt64("id")
- projectDetail, err := service.GetProjectDetail(id)
- if err != nil {
- this.ServeFailJSONWithSGJErrorCode(enums.ErrorCodeUpdateConfig)
- return
- }
- this.ServeSuccessJSON(map[string]interface{}{
- "projecDetail": projectDetail,
- })
- return
- }
-
- func (this *HisProjectApiController) UpdatedProject() {
- timeLayout := "2006-01-02"
- loc, _ := time.LoadLocation("Local")
- id, _ := this.GetInt64("id")
- project_name := this.GetString("project_name")
- pinyin := this.GetString("pinyin")
- wubi := this.GetString("wubi")
- price := this.GetString("price")
- price_float, _ := strconv.ParseFloat(price, 64)
- unit := this.GetString("unit")
- cost_classify, _ := this.GetInt64("cost_classify")
- executive_section, _ := this.GetInt64("executive_section")
- medical_coverage, _ := this.GetInt64("medical_coverage")
- statistical_classification, _ := this.GetInt64("statistical_classification")
- disease_directory, _ := this.GetInt64("disease_directory")
- is_record, _ := this.GetInt64("is_record")
- medical_code := this.GetString("medical_code")
- tube_color, _ := this.GetInt64("tube_color")
- medical_status, _ := this.GetInt64("medical_status")
- remark := this.GetString("remark")
- sign, _ := this.GetInt64("sign")
- default_number := this.GetString("default_number")
- is_charge, _ := this.GetInt64("is_charge")
- is_estimate, _ := this.GetInt64("is_estimate")
- is_workload, _ := this.GetInt64("is_workload")
- sort := this.GetString("sort")
- is_advice, _ := this.GetInt64("is_advice")
- is_default, _ := this.GetInt64("is_default")
- single_dose := this.GetString("single_dose")
- delivery_way := this.GetString("delivery_way")
- execution_frequency := this.GetString("execution_frequency")
- number_days := this.GetString("number_days")
- category, _ := this.GetInt64("category")
- total := this.GetString("total")
- specail_project, _ := this.GetInt64("specail_project")
- social_security_directory_code := this.GetString("social_security_directory_code")
- record_date := this.GetString("record_date")
- theTime, _ := time.ParseInLocation(timeLayout+" 15:04:05", record_date+" 00:00:00", loc)
- hisProject := models.XtHisProject{
- ProjectName: project_name,
- Pinyin: pinyin,
- Wubi: wubi,
- Price: price_float,
- Unit: unit,
- CostClassify: cost_classify,
- ExecutiveSection: executive_section,
- MedicalCoverage: medical_coverage,
- StatisticalClassification: statistical_classification,
- DiseaseDirectory: disease_directory,
- IsRecord: is_record,
- MedicalCode: medical_code,
- TubeColor: tube_color,
- MedicalStatus: medical_status,
- Remark: remark,
- Sign: sign,
- DefaultNumber: default_number,
- IsCharge: is_charge,
- IsEstimate: is_estimate,
- IsWorkload: is_workload,
- Sort: sort,
- DoctorAdvice: is_advice,
- IsDefault: is_default,
- UpdatedTime: time.Now().Unix(),
- SingleDose: single_dose,
- DeliveryWay: delivery_way,
- ExecutionFrequency: execution_frequency,
- NumberDays: number_days,
- Total: total,
- Category: category,
- SpecailProject: specail_project,
- SocialSecurityDirectoryCode: social_security_directory_code,
- RecordDate: theTime.Unix(),
- }
-
- err := service.UpdatedProject(id, &hisProject)
- if err != nil {
- this.ServeFailJSONWithSGJErrorCode(enums.ErrorCodeUpdateConfig)
- return
- }
- this.ServeSuccessJSON(map[string]interface{}{
- "hisProject": hisProject,
- })
- return
- }
-
- func (this *HisProjectApiController) DeleteHisProject() {
-
- id, _ := this.GetInt64("id")
- err := service.DeleteHisProject(id)
- if err != nil {
- this.ServeFailJSONWithSGJErrorCode(enums.ErrorCodeUpdateConfig)
- return
- }
- returnData := make(map[string]interface{}, 0)
- returnData["msg"] = "ok"
- this.ServeSuccessJSON(returnData)
- return
- }
-
- func (this *HisProjectApiController) SaveProjectTeam() {
-
- project_team := this.GetString("project_team")
-
- price := this.GetString("price")
- price_float, _ := strconv.ParseFloat(price, 64)
- pinyin := this.GetString("pinyin")
- wubi := this.GetString("wubi")
- tube_color, _ := this.GetInt64("tube_color")
- team_type, _ := this.GetInt64("team_type")
- remark := this.GetString("remark")
- //ids := this.GetString("ids")
- //item_id := this.GetString("item_id")
-
- dataBody := make(map[string]interface{}, 0)
- err := json.Unmarshal(this.Ctx.Input.RequestBody, &dataBody)
- if err != nil {
- utils.ErrorLog(err.Error())
- this.ServeFailJSONWithSGJErrorCode(enums.ErrorCodeParamWrong)
- return
- }
-
- adminUserInfo := this.GetAdminUserInfo()
- orgId := adminUserInfo.CurrentOrgId
- projectTeam := models.XtHisProjectTeam{
- ProjectTeam: project_team,
- Price: price_float,
- Pinyin: pinyin,
- Wubi: wubi,
- TubeColor: tube_color,
- TeamType: team_type,
- Remark: remark,
- UserOrgId: orgId,
- Status: 1,
- CreatedTime: time.Now().Unix(),
- //ProjectId: ids,
- //ItemId: item_id,
- }
- //fmt.Println(projectTeam)
-
- _, errcodes := service.GetHisProjectByNameOne(project_team, orgId)
-
- if errcodes == gorm.ErrRecordNotFound {
- err := service.CreatedProjectTeam(&projectTeam)
- if err != nil {
- this.ServeFailJSONWithSGJErrorCode(enums.ErrorCodeSystemError)
- return
- }
-
- if dataBody["info"] != nil && reflect.TypeOf(dataBody["info"]).String() == "[]interface {}" {
- infos, _ := dataBody["info"].([]interface{})
- if len(infos) > 0 {
- var ids []string
-
- for _, item := range infos {
- items := item.(map[string]interface{})
- if items["id"] == nil || reflect.TypeOf(items["id"]).String() != "float64" {
- utils.ErrorLog("id")
- this.ServeFailJSONWithSGJErrorCode(enums.ErrorCodeParamWrong)
- return
- }
- id := int64(items["id"].(float64))
-
- if items["type"] == nil || reflect.TypeOf(items["type"]).String() != "float64" {
- utils.ErrorLog("type")
- this.ServeFailJSONWithSGJErrorCode(enums.ErrorCodeParamWrong)
- return
- }
- types := int64(items["type"].(float64))
-
- if items["number"] == nil || reflect.TypeOf(items["number"]).String() != "string" {
- utils.ErrorLog("number")
- }
-
- number, _ := strconv.ParseInt(items["number"].(string), 10, 64)
-
- list := models.XtHisProjectList{
- Number: number,
- UserOrgId: adminUserInfo.CurrentOrgId,
- ProjectId: id,
- Status: 1,
- CreatedTime: time.Now().Unix(),
- UpdatedTime: time.Now().Unix(),
- TeamId: projectTeam.ID,
- Type: types,
- }
-
- service.CreateProjectList(&list)
-
- ids = append(ids, strconv.FormatInt(list.ID, 10))
-
- }
- ids_str := strings.Join(ids, ",")
- projectTeam.ItemId = ids_str
- service.SaveProjectTeam(&projectTeam)
- this.ServeSuccessJSON(map[string]interface{}{
- "projectTeam": projectTeam,
- })
- }
- }
- return
- } else if errcodes == nil {
- this.ServeFailJSONWithSGJErrorCode(enums.ErrorCodeUpdateConfig)
- return
- }
- }
-
- func (this *HisProjectApiController) GetProjectTeamList() {
-
- limit, _ := this.GetInt64("limit")
- page, _ := this.GetInt64("page")
- keyword := this.GetString("keyword")
- adminUserInfo := this.GetAdminUserInfo()
- orgId := adminUserInfo.CurrentOrgId
- projectTeamList, total, err := service.GetProjectTeamList(limit, page, orgId, keyword)
- if err != nil {
- this.ServeFailJSONWithSGJErrorCode(enums.ErrorCodeUpdateConfig)
- return
- }
- this.ServeSuccessJSON(map[string]interface{}{
- "projectTeamList": projectTeamList,
- "total": total,
- })
- return
- }
-
- func (this *HisProjectApiController) GetProjectTeamDetail() {
- id, _ := this.GetInt64("id")
- //adminUserInfo := this.GetAdminUserInfo()
- //orgId := adminUserInfo.CurrentOrgId
- projectTeamDetail, err := service.GetProjectTeamDetail(id)
-
- ids := strings.Split(projectTeamDetail.ItemId, ",")
- hisList, err := service.GetProjectHisListByIds(ids)
-
- //list, err := service.GetAllProjectList(orgId)
- if err != nil {
- this.ServeFailJSONWithSGJErrorCode(enums.ErrorCodeUpdateConfig)
- return
- }
- this.ServeSuccessJSON(map[string]interface{}{
- "projectTeamDetail": projectTeamDetail,
- //"list": list,
- "hisList": hisList,
- })
- return
- }
-
- func (this *HisProjectApiController) UpdatedProjectTeam() {
-
- id, _ := this.GetInt64("id")
- project_team := this.GetString("project_team")
- price := this.GetString("price")
- price_float, _ := strconv.ParseFloat(price, 64)
- pinyin := this.GetString("pinyin")
- wubi := this.GetString("wubi")
- tube_color, _ := this.GetInt64("tube_color")
- team_type, _ := this.GetInt64("team_type")
- remark := this.GetString("remark")
-
- projectTeam, _ := service.GetProjectTeamDetail(id)
-
- projectTeam.ProjectTeam = project_team
- projectTeam.Price = price_float
- projectTeam.Pinyin = pinyin
- projectTeam.Wubi = wubi
- projectTeam.TubeColor = tube_color
- projectTeam.TeamType = team_type
- projectTeam.Remark = remark
-
- dataBody := make(map[string]interface{}, 0)
- err := json.Unmarshal(this.Ctx.Input.RequestBody, &dataBody)
- if err != nil {
- utils.ErrorLog(err.Error())
- this.ServeFailJSONWithSGJErrorCode(enums.ErrorCodeParamWrong)
- return
- }
-
- err = service.UpdatedProjectTeam(id, &projectTeam)
-
- if err != nil {
- this.ServeFailJSONWithSGJErrorCode(enums.ErrorCodeUpdateConfig)
- return
- }
-
- if dataBody["info"] != nil && reflect.TypeOf(dataBody["info"]).String() == "[]interface {}" {
- infos, _ := dataBody["info"].([]interface{})
- if len(infos) > 0 {
- var ids []string
-
- for _, item := range infos {
- items := item.(map[string]interface{})
- if items["id"] == nil || reflect.TypeOf(items["id"]).String() != "float64" {
- utils.ErrorLog("id")
- this.ServeFailJSONWithSGJErrorCode(enums.ErrorCodeParamWrong)
- return
- }
- id := int64(items["id"].(float64))
-
- if items["type"] == nil || reflect.TypeOf(items["type"]).String() != "float64" {
- utils.ErrorLog("type")
- this.ServeFailJSONWithSGJErrorCode(enums.ErrorCodeParamWrong)
- return
- }
- types := int64(items["type"].(float64))
-
- if items["number"] == nil || reflect.TypeOf(items["number"]).String() != "string" {
- utils.ErrorLog("number")
- }
-
- number, _ := strconv.ParseInt(items["number"].(string), 10, 64)
-
- list := models.XtHisProjectList{
- Number: number,
- UserOrgId: this.GetAdminUserInfo().CurrentOrgId,
- ProjectId: id,
- Status: 1,
- CreatedTime: time.Now().Unix(),
- UpdatedTime: time.Now().Unix(),
- TeamId: projectTeam.ID,
- Type: types,
- }
-
- service.CreateProjectList(&list)
-
- ids = append(ids, strconv.FormatInt(list.ID, 10))
-
- }
- ids_str := strings.Join(ids, ",")
- projectTeam.ItemId = projectTeam.ItemId + "," + ids_str
- service.SaveProjectTeam(&projectTeam)
- this.ServeSuccessJSON(map[string]interface{}{
- "projectTeam": projectTeam,
- })
- }
- }
-
- this.ServeSuccessJSON(map[string]interface{}{
- "projectTeam": projectTeam,
- })
- return
- }
-
- func (this *HisProjectApiController) DeleteProjectTeam() {
-
- id, _ := this.GetInt64("id")
- err := service.DeleteProjectTeam(id)
- if err != nil {
- this.ServeFailJSONWithSGJErrorCode(enums.ErrorCodeUpdateConfig)
- return
- }
- returnData := make(map[string]interface{}, 0)
- returnData["msg"] = "ok"
- this.ServeSuccessJSON(returnData)
- return
- }
-
- func (this *HisProjectApiController) SaveDePartment() {
-
- name := this.GetString("name")
- number := this.GetString("number")
- adminUserInfo := this.GetAdminUserInfo()
- orgId := adminUserInfo.CurrentOrgId
- department := models.XtHisDepartment{
- Name: name,
- Number: number,
- UserOrgId: orgId,
- CreatedTime: time.Now().Unix(),
- Status: 1,
- }
- err := service.CreateDePartment(&department)
- if err != nil {
- this.ServeFailJSONWithSGJErrorCode(enums.ErrorCodeUpdateConfig)
- return
- }
- this.ServeSuccessJSON(map[string]interface{}{
- "department": department,
- })
- return
- }
-
- func (this *HisProjectApiController) GetDepartMentList() {
-
- limit, _ := this.GetInt64("limit")
- page, _ := this.GetInt64("page")
- adminUserInfo := this.GetAdminUserInfo()
- orgId := adminUserInfo.CurrentOrgId
- departMentList, total, err := service.GetDepartMentList(limit, page, orgId)
- if err != nil {
- this.ServeFailJSONWithSGJErrorCode(enums.ErrorCodeUpdateConfig)
- return
- }
- this.ServeSuccessJSON(map[string]interface{}{
- "departMentList": departMentList,
- "total": total,
- })
- return
- }
-
- func (this *HisProjectApiController) GetDepartMentDetail() {
-
- id, _ := this.GetInt64("id")
- departDetail, err := service.GetDepartMentDetail(id)
- if err != nil {
- this.ServeFailJSONWithSGJErrorCode(enums.ErrorCodeUpdateConfig)
- return
- }
- this.ServeSuccessJSON(map[string]interface{}{
- "departDetail": departDetail,
- })
- return
- }
-
- func (this *HisProjectApiController) UpdatedDeparment() {
-
- id, _ := this.GetInt64("id")
- name := this.GetString("name")
- number := this.GetString("number")
- department := models.XtHisDepartment{
- Name: name,
- Number: number,
- }
- err := service.UpdatedDepartment(id, &department)
- if err != nil {
- this.ServeFailJSONWithSGJErrorCode(enums.ErrorCodeUpdateConfig)
- return
- }
- this.ServeSuccessJSON(map[string]interface{}{
- "department": department,
- })
- return
- }
-
- func (this *HisProjectApiController) DeleteDepartment() {
-
- id, _ := this.GetInt64("id")
- err := service.DeleteDepartment(id)
- if err != nil {
- this.ServeFailJSONWithSGJErrorCode(enums.ErrorCodeUpdateConfig)
- return
- }
- returnData := make(map[string]interface{}, 0)
- returnData["msg"] = "ok"
- this.ServeSuccessJSON(returnData)
- return
- }
-
- func (this *HisProjectApiController) GetBloodPatientList() {
-
- adminUserInfo := this.GetAdminUserInfo()
- orgId := adminUserInfo.CurrentOrgId
- timeStr := time.Now().Format("2006-01-02")
- timeLayout := "2006-01-02 15:04:05"
- timeStringToTime, _ := utils.ParseTimeStringToTime(timeLayout, timeStr+" 00:00:00")
- timenow := timeStringToTime.Unix()
-
- //统计血透排班的患者
- scheduleList, err := service.GetBloodPatientList(orgId, timenow)
- //统计当日挂号的患者
- hisPatient, _ := service.GetHisPatient(orgId, timenow)
- //统计今天开处方的患者
- prescription, _ := service.GetHisPrescriptionOther(orgId, timenow)
- if err != nil {
- this.ServeFailJSONWithSGJErrorCode(enums.ErrorCodeUpdateConfig)
- return
- }
- this.ServeSuccessJSON(map[string]interface{}{
- "scheduleList": scheduleList,
- "hisPatient": hisPatient,
- "prescription": prescription,
- })
- return
- }
-
- func (this *HisProjectApiController) GetHisPrescription() {
-
- id, _ := this.GetInt64("id")
- timeStr := time.Now().Format("2006-01-02")
- timeLayout := "2006-01-02 15:04:05"
- timeStringToTime, _ := utils.ParseTimeStringToTime(timeLayout, timeStr+" 00:00:00")
- timenow := timeStringToTime.Unix()
- prescriptionList, err := service.GetHisPrescriptionByPatientId(id, timenow)
- if err != nil {
- this.ServeFailJSONWithSGJErrorCode(enums.ErrorCodeUpdateConfig)
- return
- }
- this.ServeSuccessJSON(map[string]interface{}{
- "prescriptionList": prescriptionList,
- })
- return
- }
-
- func (this *HisProjectApiController) GetTreatmentList() {
-
- patient_id, _ := this.GetInt64("patient_id")
- timeStr := time.Now().Format("2006-01-02")
- timeLayout := "2006-01-02 15:04:05"
- timeStringToTime, _ := utils.ParseTimeStringToTime(timeLayout, timeStr+" 00:00:00")
- timenow := timeStringToTime.Unix()
- treatmentList, err := service.GetTreatmentList(patient_id, timenow)
- if err != nil {
- this.ServeFailJSONWithSGJErrorCode(enums.ErrorCodeUpdateConfig)
- return
- }
- this.ServeSuccessJSON(map[string]interface{}{
- "treatmentList": treatmentList,
- })
- return
- }
-
- func (this *HisProjectApiController) GetAllProjectList() {
- keyword := this.GetString("keyword")
- adminUserInfo := this.GetAdminUserInfo()
- orgId := adminUserInfo.CurrentOrgId
- projectList, err := service.GetAllProjectList(orgId, keyword)
- goodInfos, err := service.GetGoodInfomationList(orgId, keyword)
-
- //获取列表数据
- hisprojectlist, err := service.GetHisProjectListByOrgId(orgId)
-
- if err != nil {
- this.ServeFailJSONWithSGJErrorCode(enums.ErrorCodeUpdateConfig)
- return
- }
- this.ServeSuccessJSON(map[string]interface{}{
- "projectList": projectList,
- "hisprojectlist": hisprojectlist,
- "good_info": goodInfos,
- })
- return
- }
-
- func (this *HisProjectApiController) AddProjectList() {
-
- id, _ := this.GetInt64("id")
- number, _ := this.GetInt64("number")
- adminUserInfo := this.GetAdminUserInfo()
- orgId := adminUserInfo.CurrentOrgId
- projectList := models.XtHisProjectList{
- ProjectId: id,
- Number: number,
- UserOrgId: orgId,
- Status: 1,
- CreatedTime: time.Now().Unix(),
- }
- err := service.CreateProjectList(&projectList)
- detail, _ := service.GetProjectDetail(id)
-
- item, err := service.GetLastItem(orgId)
- if err != nil {
- this.ServeFailJSONWithSGJErrorCode(enums.ErrorCodeUpdateConfig)
- return
- }
- this.ServeSuccessJSON(map[string]interface{}{
- "projectList": detail,
- "item": item,
- })
- return
- }
-
- func (this *HisProjectApiController) GetPatientInformation() {
-
- id, _ := this.GetInt64("id")
- information, err := service.GetHisPatientInformation(id)
- if err != nil {
- this.ServeFailJSONWithSGJErrorCode(enums.ErrorCodeUpdateConfig)
- return
- }
- this.ServeSuccessJSON(map[string]interface{}{
- "information": information,
- })
- return
- }
-
- func (this *HisProjectApiController) DeleteProject() {
-
- id, _ := this.GetInt64("id")
- err := service.DeleteProjectList(id)
- if err != nil {
- this.ServeFailJsonSend(enums.ErrorCodeDataException, "添加设备失败")
- return
- }
- returnData := make(map[string]interface{}, 0)
- returnData["msg"] = "ok"
- this.ServeSuccessJSON(returnData)
- return
- }
-
- func (this *HisProjectApiController) GetHisProject() {
-
- adminUserInfo := this.GetAdminUserInfo()
- orgId := adminUserInfo.CurrentOrgId
- project, err := service.GetHisProject(orgId)
- good_info, err := service.GetGoodInfoMation(orgId)
-
- if err != nil {
- this.ServeFailJSONWithSGJErrorCode(enums.ErrorCodeUpdateConfig)
- return
- }
- this.ServeSuccessJSON(map[string]interface{}{
- "project": project,
- "good_info": good_info,
- })
- }
-
- func (this *HisProjectApiController) GetProjectTeam() {
-
- strids := this.GetString("strids")
-
- idStrs := strings.Split(strids, ",")
- adminUserInfo := this.GetAdminUserInfo()
- orgId := adminUserInfo.CurrentOrgId
- team, err := service.GetProjectTeam(idStrs, orgId)
- if err != nil {
- this.ServeFailJSONWithSGJErrorCode(enums.ErrorCodeUpdateConfig)
- return
- }
- this.ServeSuccessJSON(map[string]interface{}{
- "team": team,
- })
- }
-
- func (this *HisProjectApiController) GetAllDoctorList() {
-
- adminUserInfo := this.GetAdminUserInfo()
- orgId := adminUserInfo.CurrentOrgId
- appId := adminUserInfo.CurrentAppId
- //获取所有的医生
- doctor, err := service.GetAllDoctor(orgId, appId)
- //获取所有的科室
- department, err := service.GetAllDepartMent(orgId)
- if err != nil {
- this.ServeFailJSONWithSGJErrorCode(enums.ErrorCodeUpdateConfig)
- return
- }
- this.ServeSuccessJSON(map[string]interface{}{
- "doctor": doctor,
- "department": department,
- })
- }
-
- func (this *HisProjectApiController) SaveHisPatient() {
- timeLayout := "2006-01-02"
- loc, _ := time.LoadLocation("Local")
- age, _ := this.GetInt64("age")
- birthday := this.GetString("birthday")
-
- patient_id, _ := this.GetInt64("id")
-
- birthdays, _ := time.ParseInLocation(timeLayout+" 15:04:05", birthday+" 00:00:00", loc)
- birthUnix := birthdays.Unix()
- certificates, _ := this.GetInt64("certificates")
- cost_checked, _ := this.GetInt64("costChecked")
- cost, _ := this.GetInt64("cost")
- costs := strconv.FormatInt(cost, 10)
- cost_float, _ := strconv.ParseFloat(costs, 64)
- department, _ := this.GetInt64("department")
- doctor, _ := this.GetInt64("doctor")
- medicalcare, _ := this.GetInt64("medical_care")
- idcard := this.GetString("id_card")
- medicalExpenses, _ := this.GetInt64("medical_expenses")
- medicalExpense := strconv.FormatInt(medicalExpenses, 10)
- medicalExpense_float, _ := strconv.ParseFloat(medicalExpense, 64)
- medicalinsurancecard := this.GetString("medical_insurance_card")
-
- name := this.GetString("name")
- register, _ := this.GetInt64("register")
- registrationfee, _ := this.GetInt64("registration_fee")
- registrationfees := strconv.FormatInt(registrationfee, 10)
- registrationfees_float, _ := strconv.ParseFloat(registrationfees, 64)
- settlementValue, _ := this.GetInt64("settlement_value")
- sex, _ := this.GetInt64("sex")
- total, _ := this.GetInt64("total")
- totals := strconv.FormatInt(total, 10)
- totals_float, _ := strconv.ParseFloat(totals, 64)
- adminUserInfo := this.GetAdminUserInfo()
- orgId := adminUserInfo.CurrentOrgId
- recordDateStr := time.Now().Format("2006-01-02")
- recordDate, _ := utils.ParseTimeStringToTime("2006-01-02", recordDateStr)
- nowtime := recordDate.Unix()
- phone := this.GetString("phone")
- social_type, _ := this.GetInt64("social_type")
- id_card_type, _ := this.GetInt64("id_card_type")
-
- //diagnosis_id, _ := this.GetInt64("diagnosis")
-
- diagnosis_ids := this.GetString("diagnosis")
-
- sick_type, _ := this.GetInt64("sick_type")
- reg_type := this.GetString("p_type")
-
- tempPatient, _ := service.GetPatientByIDCardAndName(idcard, adminUserInfo.CurrentOrgId, name)
- if tempPatient.ID == 0 {
- this.ServeFailJSONWithSGJErrorCode(enums.ErrorCodeNoBloodPatientException)
- return
- }
-
- var patient service.Patients
- if patient_id == 0 {
- patient, _ = service.GetPatientByIDCard(idcard, adminUserInfo.CurrentOrgId)
-
- } else {
- patient, _ = service.GetPatientByIDTwo(adminUserInfo.CurrentOrgId, patient_id)
-
- }
-
- if patient.ID == 0 {
- this.ServeFailJSONWithSGJErrorCode(enums.ErrorCodePatientNoExist)
- return
- }
- if len(patient.IdCardNo) == 0 {
- this.ServeFailJSONWithSGJErrorCode(enums.ErrorCodeIDCartNo)
- return
- }
-
- timeStr := time.Now().Format("2006-01-02 15:04:05")
- fmt.Println(timeStr)
- timeArr := strings.Split(timeStr, " ")
- timeArrTwo := strings.Split(timeArr[0], "-")
- timeArrThree := strings.Split(timeArr[1], ":")
- var str = timeArrTwo[0] + timeArrTwo[1] + timeArrTwo[2] + timeArrThree[0] + timeArrThree[1] + timeArrThree[2] + strconv.FormatInt(patient.ID, 10)
-
- //his, _ := service.GetHisPatientInfoTwo(adminUserInfo.CurrentOrgId, patient.ID, recordDate.Unix())
- //if len(his) >= 1 {
- // order, _ := service.GetNewHisOrderTwo(adminUserInfo.CurrentOrgId, his[len(his)-1].Number, his[len(his)-1].PatientId, recordDate.Unix())
- // if len(his) >= 1 && order.ID == 0 {
- // this.ServeFailJSONWithSGJErrorCode(enums.ErrorCodeHisPatientParamWrong)
- // return
- // }
- //}
- var hisPatient models.XtHisPatient
- //if err == gorm.ErrRecordNotFound || his.ID == 0 {
- hisPatient = models.XtHisPatient{
- PatientId: patient_id,
- Birthday: birthUnix,
- IdType: certificates,
- CostOfProduction: cost_float,
- Departments: department,
- Doctor: doctor,
- AdminUserId: adminUserInfo.AdminUser.Id,
- MedicalTreatmentType: medicalcare,
- IdCardNo: idcard,
- IsNeedCostOfProduction: cost_checked,
- TreatmentCost: medicalExpense_float,
- MedicalInsuranceNumber: medicalinsurancecard,
- Name: name,
- Age: age,
- Number: str,
- RegisterType: register,
- RegisterCost: registrationfees_float,
- BalanceAccountsType: settlementValue,
- Gender: sex,
- Total: totals_float,
- UserOrgId: orgId,
- Status: 1,
- RecordDate: nowtime,
- IsReturn: 1,
- Ctime: time.Now().Unix(),
- Phone: phone,
- SocialType: social_type,
- IdCardType: id_card_type,
- Diagnosis: diagnosis_ids,
- PType: reg_type,
- SickType: sick_type,
- }
- service.CreateHisPatient(&hisPatient)
- this.ServeSuccessJSON(map[string]interface{}{
- "his_info": hisPatient,
- })
- //}
- //else {
- // this.ServeFailJSONWithSGJErrorCode(enums.ErrorCodeHisRegisterException)
- // return
- //}
-
- }
-
- func (this *HisProjectApiController) GetAllProjectTeam() {
-
- adminUserInfo := this.GetAdminUserInfo()
- orgId := adminUserInfo.CurrentOrgId
- team, err := service.GetAllProjectTeam(orgId)
- if err != nil {
- this.ServeFailJSONWithSGJErrorCode(enums.ErrorCodeUpdateConfig)
- return
- }
- this.ServeSuccessJSON(map[string]interface{}{
- "team": team,
- })
- }
-
- func (this *HisProjectApiController) GetProjectListById() {
-
- adminUserInfo := this.GetAdminUserInfo()
- orgId := adminUserInfo.CurrentOrgId
- project_id := this.GetString("project_id")
- idStrs := strings.Split(project_id, ",")
- project, err := service.GetProjectListById(orgId, idStrs)
- if err != nil {
- this.ServeFailJSONWithSGJErrorCode(enums.ErrorCodeUpdateConfig)
- return
- }
- this.ServeSuccessJSON(map[string]interface{}{
- "project": project,
- })
- }
-
- func (this *HisProjectApiController) GetHisPatientHistory() {
- timeLayout := "2006-01-02"
- loc, _ := time.LoadLocation("Local")
- keyword := this.GetString("keyword")
- start_time := this.GetString("start_time")
- end_time := this.GetString("end_time")
- register_type, _ := this.GetInt64("register_type")
- limit, _ := this.GetInt64("limit")
- page, _ := this.GetInt64("page")
- startTime, _ := time.ParseInLocation(timeLayout+" 15:04:05", start_time+" 00:00:00", loc)
- endTime, _ := time.ParseInLocation(timeLayout+" 15:04:05", end_time+" 23:59:59", loc)
- adminUserInfo := this.GetAdminUserInfo()
- orgId := adminUserInfo.CurrentOrgId
- history, total, err := service.GetHisPatientHistory(keyword, startTime.Unix(), endTime.Unix(), register_type, limit, page, orgId)
-
- department, err := service.GetAllDepartMent(orgId)
- appId := adminUserInfo.CurrentAppId
- doctor, err := service.GetAllDoctor(orgId, appId)
- if err != nil {
- this.ServeFailJSONWithSGJErrorCode(enums.ErrorCodeUpdateConfig)
- return
- }
- this.ServeSuccessJSON(map[string]interface{}{
- "history": history,
- "total": total,
- "department": department,
- "doctor": doctor,
- })
- }
-
- func (this *HisProjectApiController) ChangePatient() {
-
- id, _ := this.GetInt64("id")
- //查询该患者今日是否已经就诊
- recordDateStr := time.Now().Format("2006-01-02")
- recordDate, _ := utils.ParseTimeStringToTime("2006-01-02", recordDateStr)
-
- nowtime := recordDate.Unix()
- adminUserInfo := this.GetAdminUserInfo()
- orgId := adminUserInfo.CurrentOrgId
- _, errcode := service.GetHisPrescriptionTwo(id, orgId, nowtime)
- if errcode == gorm.ErrRecordNotFound {
- err := service.ChangePatient(id)
- if err != nil {
- this.ServeFailJSONWithSGJErrorCode(enums.ErrorCodeUpdateConfig)
- return
- }
- returnData := make(map[string]interface{}, 0)
- returnData["msg"] = "ok"
- this.ServeSuccessJSON(returnData)
- return
- } else if errcode == nil {
- this.ServeFailJSONWithSGJErrorCode(enums.ErrorCodeUpdateConfig)
- return
- }
-
- }
-
- func (this *HisProjectApiController) GetPatientcaseHistory() {
-
- patient_id, _ := this.GetInt64("patient_id")
- patient, err := service.GetBloodPatientInfoById(patient_id)
- history, _ := service.GetPatientCaseHistory(patient_id)
- hispatient, _ := service.GetHisPatientById(patient_id)
-
- if err != nil {
- this.ServeFailJSONWithSGJErrorCode(enums.ErrorCodeUpdateConfig)
- return
- }
- this.ServeSuccessJSON(map[string]interface{}{
- "patient": patient,
- "history": history,
- "hispatient": hispatient,
- })
- }
-
- func (this *HisProjectApiController) GetTemplateDetail() {
-
- id, _ := this.GetInt64("id")
- templateDetail, err := service.GetTemplateDetail(id)
-
- if err != nil {
- this.ServeFailJSONWithSGJErrorCode(enums.ErrorCodeUpdateConfig)
- return
- }
- this.ServeSuccessJSON(map[string]interface{}{
- "templateDetail": templateDetail,
- })
- }
-
- func (this *HisProjectApiController) UpdateRecordTemplate() {
- id, _ := this.GetInt64("id")
- template_name := this.GetString("template_name")
- template_remark := this.GetString("template_remark")
-
- diagnostic := this.GetString("diagnostic")
- chief_conplaint := this.GetString("chief_conplaint")
- history_of_present_illness := this.GetString("history_of_present_illness")
- past_history := this.GetString("past_history")
- personal_history := this.GetString("personal_history")
- family_history := this.GetString("family_history")
- doctor_advice := this.GetString("doctor_advice")
- remark := this.GetString("remark")
- adminUserInfo := this.GetAdminUserInfo()
- creater := adminUserInfo.AdminUser.Id
- historyTemplate := models.HisCaseHistoryTemplate{
- HistoryOfPresentIllness: history_of_present_illness,
- PastHistory: past_history,
- ChiefConplaint: chief_conplaint,
- PersonalHistory: personal_history,
- FamilyHistory: family_history,
- Diagnostic: diagnostic,
- Status: 1,
- Mtime: time.Now().Unix(),
- RecordDate: time.Now().Unix(),
- TemplateName: template_name,
- TemplateRemark: template_remark,
- Modifier: creater,
- DoctorAdvice: doctor_advice,
- Remark: remark,
- }
- err := service.UpdateCaseHistoryTemplate(&historyTemplate, id)
- if err != nil {
- this.ServeFailJSONWithSGJErrorCode(enums.ErrorCodeUpdateConfig)
- return
- }
- this.ServeSuccessJSON(map[string]interface{}{
- "templateDetail": historyTemplate,
- })
- }
-
- func (this *HisProjectApiController) GetHisPatient() {
-
- adminUserInfo := this.GetAdminUserInfo()
- orgId := adminUserInfo.CurrentOrgId
- keyword := this.GetString("keyword")
- patient, err := service.GetHistPatient(orgId, keyword)
- if err != nil {
- this.ServeFailJSONWithSGJErrorCode(enums.ErrorCodeUpdateConfig)
- return
- }
- this.ServeSuccessJSON(map[string]interface{}{
- "patient": patient,
- })
- }
-
- func (this *HisProjectApiController) GetDoctorAdvicePrint() {
-
- patient_id, _ := this.GetInt64("patient_id")
- record_date := this.GetString("record_date")
- schIDStr := this.GetString("ids")
- if len(schIDStr) == 0 {
- this.ServeFailJSONWithSGJErrorCode(enums.ErrorCodeParamWrong)
- return
- }
- idStrs := strings.Split(schIDStr, ",")
-
- timeLayout := "2006-01-02"
- loc, _ := time.LoadLocation("Local")
- theTime, _ := time.ParseInLocation(timeLayout+" 15:04:05", record_date+" 00:00:00", loc)
- recordDateTime := theTime.Unix()
- //prescription_id, _ := this.GetInt64("prescription_id")
- adminUserInfo := this.GetAdminUserInfo()
- advicePrint, err := service.GetDoctorAdvicePrint(patient_id, recordDateTime, idStrs, adminUserInfo.CurrentOrgId)
- projectlist, err := service.GetAllProjectList(adminUserInfo.CurrentOrgId, "")
- his, _ := service.GetLastHisPatient(patient_id, adminUserInfo.CurrentOrgId)
- //prescriptionInfo, _ := service.GetPrscriptionInfo(patient_id, recordDateTime)
- hisPatient, _ := service.GetHisPatientById(patient_id)
- if err != nil {
- this.ServeFailJSONWithSGJErrorCode(enums.ErrorCodeUpdateConfig)
- return
- }
- this.ServeSuccessJSON(map[string]interface{}{
- "advicePrint": advicePrint,
- "projectlist": projectlist,
- "hisPatient": hisPatient,
- "his": his,
- })
- }
-
- func (this *HisProjectApiController) GetProjectPrint() {
-
- his_patient_id, _ := this.GetInt64("his_patient_id")
- hisPatient, _ := service.GetHisPatientById(his_patient_id)
- projectPrint, err := service.GetProjectPrint(his_patient_id)
- if err != nil {
- this.ServeFailJSONWithSGJErrorCode(enums.ErrorCodeUpdateConfig)
- return
- }
- this.ServeSuccessJSON(map[string]interface{}{
- "hisPatient": hisPatient,
- "projectPrint": projectPrint,
- })
- }
-
- func (this *HisProjectApiController) PostPrintHisTemplate() {
-
- template_id, _ := this.GetInt64("template_id")
- adminUserInfo := this.GetAdminUserInfo()
- orgId := adminUserInfo.CurrentOrgId
- _, errcode := service.GetHisTemplateId(template_id, orgId)
- //fmt.Println("errcode", errcode)
- if errcode == gorm.ErrRecordNotFound {
- template := models.XtHisTemplate{
- TemplateId: template_id,
- UserOrgId: orgId,
- Status: 1,
- Ctime: time.Now().Unix(),
- }
- err := service.CreateHisTemplate(&template)
- if err != nil {
- this.ServeFailJSONWithSGJErrorCode(enums.ErrorCodeUpdateConfig)
- return
- }
- this.ServeSuccessJSON(map[string]interface{}{
- "template": template,
- "template_id": template_id,
- })
- } else if errcode == nil {
-
- template := models.XtHisTemplate{
- TemplateId: template_id,
- UserOrgId: orgId,
- Status: 1,
- Ctime: time.Now().Unix(),
- Mtime: time.Now().Unix(),
- }
- err := service.UpdateHisTemplate(&template)
- if err != nil {
- this.ServeFailJSONWithSGJErrorCode(enums.ErrorCodeUpdateConfig)
- return
- }
- this.ServeSuccessJSON(map[string]interface{}{
- "template": template,
- "template_id": template_id,
- })
- }
- }
-
- func (this *HisProjectApiController) GetHisPrintTemplate() {
-
- adminUserInfo := this.GetAdminUserInfo()
- orgId := adminUserInfo.CurrentOrgId
- template, err := service.GetHisPrintTemplate(orgId)
- if err != nil {
- this.ServeFailJSONWithSGJErrorCode(enums.ErrorCodeUpdateConfig)
- return
- }
- this.ServeSuccessJSON(map[string]interface{}{
- "template": template,
- })
- }
-
- func (this *HisProjectApiController) PostPrescriptionTempalte() {
-
- template_id, _ := this.GetInt64("template_id")
- adminUserInfo := this.GetAdminUserInfo()
- orgId := adminUserInfo.CurrentOrgId
- _, errcode := service.GetPrescriptionTemplate(template_id, orgId)
- if errcode == gorm.ErrRecordNotFound {
- template := models.XtHisAdviceTemplate{
- TemplateId: template_id,
- UserOrgId: orgId,
- Status: 1,
- Ctime: time.Now().Unix(),
- }
- err := service.CreatePrescriptionTemplate(&template)
- if err != nil {
- this.ServeFailJSONWithSGJErrorCode(enums.ErrorCodeUpdateConfig)
- return
- }
- this.ServeSuccessJSON(map[string]interface{}{
- "template": template,
- "template_id": template_id,
- })
- } else if errcode == nil {
- template := models.XtHisAdviceTemplate{
- TemplateId: template_id,
- UserOrgId: orgId,
- Status: 1,
- Ctime: time.Now().Unix(),
- }
- err := service.UpdatePrescriptionTemplate(&template)
- if err != nil {
- this.ServeFailJSONWithSGJErrorCode(enums.ErrorCodeUpdateConfig)
- return
- }
- this.ServeSuccessJSON(map[string]interface{}{
- "template": template,
- "template_id": template_id,
- })
- }
- }
-
- func (this *HisProjectApiController) GetPrescriptionTemplate() {
-
- adminUserInfo := this.GetAdminUserInfo()
- orgId := adminUserInfo.CurrentOrgId
- template, err := service.GetPrescriptionTemplateById(orgId)
- if err != nil {
- this.ServeFailJSONWithSGJErrorCode(enums.ErrorCodeUpdateConfig)
- return
- }
- this.ServeSuccessJSON(map[string]interface{}{
- "template": template,
- })
- }
-
- func (this *HisProjectApiController) PostTreatPrintTemplate() {
-
- template_id, _ := this.GetInt64("template_id")
- adminUserInfo := this.GetAdminUserInfo()
- orgId := adminUserInfo.CurrentOrgId
- _, errcode := service.GetTreatPrintTemplate(template_id, orgId)
- if errcode == gorm.ErrRecordNotFound {
- template := models.XtHisTreatmentTemplate{
- TemplateId: template_id,
- UserOrgId: orgId,
- Status: 1,
- Ctime: time.Now().Unix(),
- }
- err := service.CreateTreatPrintTemplate(&template)
- if err != nil {
- this.ServeFailJSONWithSGJErrorCode(enums.ErrorCodeUpdateConfig)
- return
- }
- this.ServeSuccessJSON(map[string]interface{}{
- "template": template,
- "template_id": template_id,
- })
- } else if errcode == nil {
- template := models.XtHisTreatmentTemplate{
- TemplateId: template_id,
- UserOrgId: orgId,
- Status: 1,
- Ctime: time.Now().Unix(),
- }
- err := service.UpdatedTreateTemplate(&template)
- if err != nil {
- this.ServeFailJSONWithSGJErrorCode(enums.ErrorCodeUpdateConfig)
- return
- }
- this.ServeSuccessJSON(map[string]interface{}{
- "template": template,
- "template_id": template_id,
- })
- }
- }
-
- func (this *HisProjectApiController) GetTreatPrintTemplate() {
-
- adminUserInfo := this.GetAdminUserInfo()
- orgId := adminUserInfo.CurrentOrgId
- template, err := service.GetTreatTtreatPrintTemplate(orgId)
- if err != nil {
- this.ServeFailJSONWithSGJErrorCode(enums.ErrorCodeUpdateConfig)
- return
- }
- this.ServeSuccessJSON(map[string]interface{}{
- "template": template,
- })
- }
-
- func (this *HisProjectApiController) PostChargePrintTemplate() {
-
- template_id, _ := this.GetInt64("template_id")
- adminUserInfo := this.GetAdminUserInfo()
- orgId := adminUserInfo.CurrentOrgId
- _, errcode := service.GetChargeTemplate(template_id, orgId)
- if errcode == gorm.ErrRecordNotFound {
- template := models.XtHisChargeTemplate{
- TemplateId: template_id,
- UserOrgId: orgId,
- Ctime: time.Now().Unix(),
- Status: 1,
- }
- err := service.CreateChargePrintTemplate(&template)
- if err != nil {
- this.ServeFailJSONWithSGJErrorCode(enums.ErrorCodeUpdateConfig)
- return
- }
- this.ServeSuccessJSON(map[string]interface{}{
- "template": template,
- "template_id": template_id,
- })
- } else if errcode == nil {
- template := models.XtHisChargeTemplate{
- TemplateId: template_id,
- UserOrgId: orgId,
- Ctime: time.Now().Unix(),
- Status: 1,
- }
- err := service.UpdateChargePrintTemplate(&template)
- if err != nil {
- this.ServeFailJSONWithSGJErrorCode(enums.ErrorCodeUpdateConfig)
- return
- }
- this.ServeSuccessJSON(map[string]interface{}{
- "template": template,
- "template_id": template_id,
- })
- }
- }
-
- func (this *HisProjectApiController) GetChargePrintTemplate() {
- adminUserInfo := this.GetAdminUserInfo()
- orgId := adminUserInfo.CurrentOrgId
- template, err := service.GetChargePrintTemplate(orgId)
- if err != nil {
- this.ServeFailJSONWithSGJErrorCode(enums.ErrorCodeUpdateConfig)
- return
- }
- this.ServeSuccessJSON(map[string]interface{}{
- "template": template,
- })
- }
-
- func (this *HisProjectApiController) GetAllHisPatient() {
- record_date := this.GetString("record_date")
- timeLayout := "2006-01-02"
- loc, _ := time.LoadLocation("Local")
- theTime, _ := time.ParseInLocation(timeLayout+" 15:04:05", record_date+" 00:00:00", loc)
- recordDateTime := theTime.Unix()
- adminUserInfo := this.GetAdminUserInfo()
- patients, err := service.GetScheduleHisPatientList(adminUserInfo.CurrentOrgId, "", recordDateTime, 0)
- if err != nil {
- this.ServeFailJSONWithSGJErrorCode(enums.ErrorCodeUpdateConfig)
- return
- }
-
- this.ServeSuccessJSON(map[string]interface{}{
- "list": patients,
- })
-
- }
-
- func (this *HisProjectApiController) GetChargePrint() {
- record_date := this.GetString("record_date")
- timeLayout := "2006-01-02"
- loc, _ := time.LoadLocation("Local")
- theTime, _ := time.ParseInLocation(timeLayout+" 15:04:05", record_date+" 00:00:00", loc)
- recordDateTime := theTime.Unix()
- patient_id, _ := this.GetInt64("patient_id")
- prescription_id, _ := this.GetInt64("prescription_id")
- adminUserInfo := this.GetAdminUserInfo()
- chargePrint, err := service.GetChargePrint(recordDateTime, patient_id, adminUserInfo.CurrentOrgId)
- prescription, err := service.GetHisPrescriptionNight(adminUserInfo.CurrentOrgId, patient_id, recordDateTime, prescription_id)
- patient, err := service.GetPatientByID(adminUserInfo.CurrentOrgId, patient_id)
- hisPatient, err := service.GetHisPatientById(patient_id)
- if err != nil {
- this.ServeFailJSONWithSGJErrorCode(enums.ErrorCodeUpdateConfig)
- return
- }
- this.ServeSuccessJSON(map[string]interface{}{
- "list": chargePrint,
- "prescription": prescription,
- "patient": patient,
- "hisPatient": hisPatient,
- })
- }
-
- func (this *HisProjectApiController) GetTodaySchedulePatient() {
-
- adminUserInfo := this.GetAdminUserInfo()
- orgId := adminUserInfo.CurrentOrgId
- recordDateStr := time.Now().Format("2006-01-02")
- recordDate, _ := utils.ParseTimeStringToTime("2006-01-02", recordDateStr)
- scheduleDate := recordDate.Unix()
-
- patient, err := service.GetTodaySchedulePatient(orgId, scheduleDate)
- if err != nil {
- this.ServeFailJSONWithSGJErrorCode(enums.ErrorCodeUpdateConfig)
- return
- }
- this.ServeSuccessJSON(map[string]interface{}{
- "patient": patient,
- })
- }
-
- func (this *HisProjectApiController) GetHisPatientDetail() {
- patient_id, _ := this.GetInt64("patient_id")
-
- hisPatient, err := service.GetHisPatientById(patient_id)
- if err != nil {
- this.ServeFailJSONWithSGJErrorCode(enums.ErrorCodeUpdateConfig)
- return
- }
- this.ServeSuccessJSON(map[string]interface{}{
- "hisPatient": hisPatient,
- })
- }
-
- func (this *HisProjectApiController) GetAllDepartmentList() {
-
- adminUserInfo := this.GetAdminUserInfo()
- orgId := adminUserInfo.CurrentOrgId
- departMent, err := service.GetAllDepartMent(orgId)
- if err != nil {
- this.ServeFailJSONWithSGJErrorCode(enums.ErrorCodeUpdateConfig)
- return
- }
- this.ServeSuccessJSON(map[string]interface{}{
- "departMent": departMent,
- })
- }
-
- func (this *HisProjectApiController) GetPrescription() {
-
- patient_id, _ := this.GetInt64("patient_id")
- p_type, _ := this.GetInt64("p_type")
- record_date := this.GetString("record_date")
- timeLayout := "2006-01-02"
- loc, _ := time.LoadLocation("Local")
-
- theTime, err := time.ParseInLocation(timeLayout+" 15:04:05", record_date+" 00:00:00", loc)
- if err != nil {
- this.ServeFailJSONWithSGJErrorCode(enums.ErrorCodeParamWrong)
- return
- }
- recordDateTime := theTime.Unix()
-
- list, err := service.GetPrescriptionByPatientId(patient_id, recordDateTime, p_type)
- if err != nil {
- this.ServeFailJSONWithSGJErrorCode(enums.ErrorCodeUpdateConfig)
- return
- }
- this.ServeSuccessJSON(map[string]interface{}{
- "list": list,
- })
- }
-
- func (this *HisProjectApiController) GetPatientDetail() {
-
- id, _ := this.GetInt64("id")
- adminUserInfo := this.GetAdminUserInfo()
- patient, err := service.GetPatientByID(adminUserInfo.CurrentOrgId, id)
- if err != nil {
- this.ServeFailJSONWithSGJErrorCode(enums.ErrorCodeUpdateConfig)
- return
- }
- this.ServeSuccessJSON(map[string]interface{}{
- "patient": patient,
- })
- }
-
- func (this *HisProjectApiController) SaveMainTemplate() {
-
- title := this.GetString("title")
- content := this.GetString("content")
- remark := this.GetString("remark")
- template_id, _ := this.GetInt64("template_id")
- adminUserInfo := this.GetAdminUserInfo()
- orgId := adminUserInfo.CurrentOrgId
- template := models.XtHisMedicalTemplate{
- Title: title,
- Content: content,
- Remark: remark,
- UserOrgId: orgId,
- TemplateId: template_id,
- Status: 1,
- Ctime: time.Now().Unix(),
- }
- err := service.CreateHisMedicalTemplate(&template)
- if err != nil {
- this.ServeFailJSONWithSGJErrorCode(enums.ErrorCodeUpdateConfig)
- return
- }
- this.ServeSuccessJSON(map[string]interface{}{
- "template": template,
- })
- }
-
- func (this *HisProjectApiController) GetMedicalTempalteList() {
-
- adminUserInfo := this.GetAdminUserInfo()
- orgId := adminUserInfo.CurrentOrgId
- list, err := service.GetMedicalTemplateList(orgId)
- listOne, err := service.GetMedicalTemplateListOne(orgId)
- listTwo, err := service.GetMedicalTemplateListTwo(orgId)
- listThree, err := service.GetMedicalTemplateListThree(orgId)
- listFour, err := service.GetMedicalTemplateListFour(orgId)
- listFive, err := service.GetMedicalTemplateListFive(orgId)
- listSix, err := service.GetMedicalTemplateListSix(orgId)
- listSeven, err := service.GetMedicalTemplateListSeven(orgId)
- if err != nil {
- this.ServeFailJSONWithSGJErrorCode(enums.ErrorCodeUpdateConfig)
- return
- }
- this.ServeSuccessJSON(map[string]interface{}{
- "list": list,
- "listOne": listOne,
- "listTwo": listTwo,
- "listThree": listThree,
- "listFour": listFour,
- "listFive": listFive,
- "listSix": listSix,
- "listSeven": listSeven,
- })
- }
-
- func (this *HisProjectApiController) GetMainTemplateById() {
-
- id, _ := this.GetInt64("id")
- template, err := service.GetMainTemplateById(id)
- if err != nil {
- this.ServeFailJSONWithSGJErrorCode(enums.ErrorCodeUpdateConfig)
- return
- }
- this.ServeSuccessJSON(map[string]interface{}{
- "template": template,
- })
- }
-
- func (this *HisProjectApiController) UpdateMainTemplate() {
-
- title := this.GetString("title")
- content := this.GetString("content")
- remark := this.GetString("remark")
- id, _ := this.GetInt64("id")
-
- template := models.XtHisMedicalTemplate{
- Title: title,
- Content: content,
- Remark: remark,
- }
-
- err := service.UpdateMainTemplate(&template, id)
- if err != nil {
- this.ServeFailJSONWithSGJErrorCode(enums.ErrorCodeUpdateConfig)
- return
- }
- this.ServeSuccessJSON(map[string]interface{}{
- "template": template,
- })
- }
-
- func (this *HisProjectApiController) DeleteMainTemplate() {
-
- id, _ := this.GetInt64("id")
- err := service.DeleteMainTemplateById(id)
- if err != nil {
- this.ServeFailJSONWithSGJErrorCode(enums.ErrorCodeUpdateConfig)
- return
- }
- returnData := make(map[string]interface{}, 0)
- returnData["msg"] = "ok"
- this.ServeSuccessJSON(returnData)
- return
-
- }
|