coordinate_net_controller.go 28KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889
  1. package coordinate
  2. import (
  3. "fmt"
  4. "gdyb/controllers"
  5. "gdyb/models"
  6. "gdyb/service"
  7. "gdyb/utils"
  8. "github.com/astaxie/beego"
  9. "io/ioutil"
  10. "encoding/xml"
  11. "os"
  12. "time"
  13. "encoding/json"
  14. )
  15. type CoordinatenetController struct {
  16. controllers.BaseAuthAPIController
  17. }
  18. func CoordinatenetRcegistRouters() {
  19. ////内蒙古
  20. //beego.Router("/nmg/coordinate/settleAccount", &CoordinatenetController{}, "get:NMGSettleAccount")
  21. //beego.Router("/nmg/coordinate/settleAccount/cancel", &CoordinatenetController{}, "get:NMGCancelSettleAccount")
  22. beego.Router("/nmg/coordinate/querystock", &CoordinatenetController{}, "get:QueryStock")
  23. beego.Router("/nmg/coordinate/patient", &CoordinatenetController{}, "get:NMGpatientinfo")
  24. beego.Router("/nmg/coordinate/patienttwo", &CoordinatenetController{}, "get:NMGpatientinfotwo")
  25. beego.Router("/nmg/coordinate/del", &CoordinatenetController{}, "post:NMGdelinfo")
  26. beego.Router("/nmg/coordinate/upload", &CoordinatenetController{}, "post:NMGuploadinfo")
  27. beego.Router("/nmg/coordinate/settle", &CoordinatenetController{}, "post:NMGsettle")
  28. }
  29. ////删医嘱
  30. //func (c *CoordinateController)NMGdeladvice(){
  31. // patient_id, _ := c.GetInt64("patient_id")
  32. // id, _ := c.GetInt64("id")
  33. //
  34. //
  35. // patient, _ := service.GetPatientByID(c.GetAdminUserInfo().CurrentOrgId, patient_id)
  36. // result, _ := service.GetNMGHisPatientForCoordinate(0,0,0,patient.Name)
  37. // var res Data
  38. // if err := json.Unmarshal([]byte(result), &res); err != nil {
  39. // utils.ErrorLog("解析失败:%v", err)
  40. // c.ServeFailJSONWithSGJErrorCode(enums.ErrorCodeDataException)
  41. // return
  42. // }
  43. // service.CancleNMGPrescriptionForCoordinate(res.List[0].Acf01,)
  44. //
  45. //}
  46. type ProjectStruct struct {
  47. Data []struct {
  48. Bbx01 int64 `json:"bbx01"`
  49. Bda02 string `json:"bda02"`
  50. Bby01 int64 `json:"bby01"`
  51. Bbx04 string `json:"bbx04"`
  52. Bbx05 string `json:"bbx05"`
  53. Bby06 string `json:"bby06"`
  54. Bdg02 string `json:"bdg02"`
  55. Acf01 int64 `json:"acf01"`
  56. Price float64 `json:"price"`
  57. Bck01 int64 `json:"bck01"`
  58. Lsqty float64 `json:"lsqty"`
  59. Bce03a string `json:"bce03a"`
  60. Bbx24 string `json:"bbx24"`
  61. Bbx25 string `json:"bbx25"`
  62. } `json:"data"`
  63. }
  64. type Medicine struct {
  65. Data []struct {
  66. Bby01 int `json:"bby01"`
  67. Ypmc string `json:"ypmc"`
  68. Gg string `json:"gg"`
  69. Dw string `json:"dw"`
  70. Jhj float64 `json:"jhj"`
  71. Pfj float64 `json:"pfj"`
  72. Lsj float64 `json:"lsj"`
  73. Sysl float64 `json:"sysl"`
  74. Ypjx string `json:"ypjx"`
  75. Jldw string `json:"jldw"`
  76. Sccj string `json:"sccj"`
  77. Cd string `json:"cd"`
  78. } `json:"data"`
  79. }
  80. func (c *CoordinatenetController)QueryStock(){
  81. result, _ := service.GetDrugs()
  82. result2, _ := service.GetProject()
  83. fmt.Println(result)
  84. fmt.Println(result2)
  85. saveLog(result, "", "查询", "查询", "")
  86. saveLog(result2, "", "查询", "查询", "")
  87. //var dat map[string]interface{}
  88. //if err := json.Unmarshal([]byte(result), &dat); err == nil {
  89. //
  90. //} else {
  91. //
  92. //}
  93. //var dat2 map[string]interface{}
  94. //if err := json.Unmarshal([]byte(result2), &dat2); err == nil {
  95. //
  96. //} else {
  97. //
  98. //}
  99. //c.ServeSuccessJSON(map[string]interface{}{
  100. // "drug": dat,
  101. // "project": dat2,
  102. //})
  103. }
  104. //获取患者信息
  105. func (c *CoordinatenetController) NMGpatientinfo() {
  106. name := c.GetString("name")
  107. //住院
  108. result, _ := service.GetNMGHisPatientForCoordinate(0,0,2,name)
  109. ////门诊
  110. //result1, request1 := service.GetNMGHisPatientForCoordinate(0,0,1,name)
  111. saveLog(result, "", "住院查询", "住院查询", "")
  112. //saveLog(result1, request1, "门诊查询", "门诊查询", "")
  113. var dat map[string]interface{}
  114. if err := json.Unmarshal([]byte(result), &dat); err == nil {
  115. } else {
  116. }
  117. //var dat2 map[string]interface{}
  118. //if err := json.Unmarshal([]byte(result1), &dat2); err == nil {
  119. //
  120. //} else {
  121. //
  122. //}
  123. c.ServeSuccessJSON(map[string]interface{}{
  124. "res": dat,
  125. //"res1": dat2,
  126. })
  127. }
  128. func (c *CoordinatenetController) NMGpatientinfotwo() {
  129. name := c.GetString("name")
  130. //住院
  131. //result, request := service.GetNMGHisPatientForCoordinate(0,0,2,name)
  132. //门诊
  133. result1, request1 := service.GetNMGHisPatientForCoordinate(0,0,1,name)
  134. //saveLog(result, request, "住院查询", "住院查询", "")
  135. saveLog(result1, request1, "门诊查询", "门诊查询", "")
  136. //
  137. //var dat map[string]interface{}
  138. //if err := json.Unmarshal([]byte(result), &dat); err == nil {
  139. //
  140. //} else {
  141. //
  142. //}
  143. var dat2 map[string]interface{}
  144. if err := json.Unmarshal([]byte(result1), &dat2); err == nil {
  145. } else {
  146. }
  147. c.ServeSuccessJSON(map[string]interface{}{
  148. //"res": dat,
  149. "res": dat2,
  150. })
  151. }
  152. type Responsexml1 struct {
  153. XMLName xml.Name `xml:"root"`
  154. ErrorCode int `xml:"errorcode"`
  155. ErrorMsg string `xml:"errormsg"`
  156. Data string `xml:"data"`
  157. }
  158. func (c *CoordinatenetController) NMGdelinfo() {
  159. body, _ := ioutil.ReadAll(c.Ctx.Request.Body)
  160. var respJSON map[string]interface{}
  161. if err := json.Unmarshal([]byte(string(body)), &respJSON); err != nil {
  162. utils.ErrorLog("接口返回: %v", err)
  163. return
  164. }
  165. //utils.ErrorLog()
  166. result, log := service.CancleNMGPrescriptionForCoordinatetwo("0002", respJSON["xmlStr"].(string))
  167. saveLog(result, log, "删除", "删除", "")
  168. var res8 Responsexml1
  169. if err2 := xml.Unmarshal([]byte(result), &res8); err2 != nil {
  170. fmt.Println(err2)
  171. return
  172. }
  173. if res8.ErrorCode == 0{
  174. c.ServeSuccessJSON(map[string]interface{}{
  175. "msg": "成功",
  176. })
  177. }else{
  178. c.ServeSuccessJSON(map[string]interface{}{
  179. "msg": res8.ErrorMsg ,
  180. })
  181. }
  182. }
  183. func (c *CoordinatenetController) NMGuploadinfo() {
  184. body, _ := ioutil.ReadAll(c.Ctx.Request.Body)
  185. var respJSON map[string]interface{}
  186. if err := json.Unmarshal([]byte(string(body)), &respJSON); err != nil {
  187. utils.ErrorLog("接口返回数据解析JSON失败: %v", err)
  188. return
  189. }
  190. result, request := service.UploadNMGPrescriptionForCoordinatetwo("0001", respJSON["xmlStr"].(string))
  191. saveLog(result, request, "上传", "上传", "")
  192. var res3 Responsexml
  193. if err2 := xml.Unmarshal([]byte(result), &res3); err2 != nil {
  194. fmt.Println(err2)
  195. }
  196. if res3.ErrorCode == 0{
  197. c.ServeSuccessJSON(map[string]interface{}{
  198. "res": res3.Data,
  199. "msg": "成功",
  200. })
  201. }else{
  202. c.ServeSuccessJSON(map[string]interface{}{
  203. "msg": res3.ErrorMsg ,
  204. "res": "",
  205. })
  206. }
  207. }
  208. func (c *CoordinatenetController) NMGsettle() {
  209. //xmlStr := c.GetString("xmlStr")
  210. body, _ := ioutil.ReadAll(c.Ctx.Request.Body)
  211. var respJSON map[string]interface{}
  212. if err := json.Unmarshal([]byte(string(body)), &respJSON); err != nil {
  213. utils.ErrorLog("接口返回数据解析JSON失败: %v", err)
  214. return
  215. }
  216. userJSONBytes, _ := json.Marshal(respJSON["info"])
  217. var info models.UploadInfo
  218. if err := json.Unmarshal(userJSONBytes, &info); err != nil {
  219. utils.ErrorLog("解析失败:%v", err)
  220. return
  221. }
  222. result, request := service.NMGSettleForCoordinate(info)
  223. var dat map[string]interface{}
  224. if err := json.Unmarshal([]byte(result), &dat); err == nil {
  225. } else {
  226. }
  227. saveLog(result, request, "记账", "记账", "")
  228. c.ServeSuccessJSON(map[string]interface{}{
  229. "res": dat,
  230. })
  231. }
  232. //func (c *CoordinateController)NMGgetcheck(){
  233. // patient_id, _ := c.GetInt64("patient_id")
  234. // record_date := c.GetString("record_date")
  235. // admin_user_id, _ := c.GetInt64("admin_user_id")
  236. // //diagnosis_id := c.GetString("diagnosis")
  237. // //sick_type, _ := c.GetInt64("sick_type")
  238. // //reg_type, _ := c.GetInt64("p_type")
  239. // org_id, _ := c.GetInt64("org_id")
  240. // org_id = 10454
  241. // org, _ := service.GetOrgById(org_id)
  242. // patient, _ := service.GetPatientByID(org.Id, patient_id)
  243. // settle_accounts_type, _ := c.GetInt64("settle_accounts_type")
  244. // result, request := service.GetNMGHisPatientForCoordinate(0,0,2,patient.Name)
  245. // result5, request5 := service.GetNMGHisPatientForCoordinate(0,0,1,patient.Name)
  246. //
  247. // saveLog(result, request, "查询", "查询", "")
  248. // saveLog(result5, request5, "查询", "查询", "")
  249. //
  250. // var res Data
  251. // if err := json.Unmarshal([]byte(result), &res); err != nil {
  252. // utils.ErrorLog("解析失败:%v", err)
  253. // c.ServeFailJSONWithSGJErrorCode(enums.ErrorCodeDataException)
  254. // return
  255. // }
  256. //
  257. // var res8 Data
  258. // if err := json.Unmarshal([]byte(result5), &res8); err != nil {
  259. // utils.ErrorLog("解析失败:%v", err)
  260. // c.ServeFailJSONWithSGJErrorCode(enums.ErrorCodeDataException)
  261. // return
  262. // }
  263. //
  264. // if res.Code == 200 || res8.Code == 200 {
  265. // var res9 Data
  266. // res9.List = append(res9.List,res.List...)
  267. // res9.List = append(res9.List,res8.List...)
  268. //
  269. //
  270. // var li ListItem
  271. // for _, item := range res9.List{
  272. // cure_date := strings.Split(item.Vae11, " ")
  273. // if cure_date[0] == record_date && patient.Name == item.Vaa05{
  274. // li = item
  275. // }
  276. // }
  277. // fmt.Println("11111111")
  278. // fmt.Println(li)
  279. // fmt.Println("11111111")
  280. // timeLayout := "2006-01-02"
  281. // loc, _ := time.LoadLocation("Local")
  282. // theTime, err := time.ParseInLocation(timeLayout+" 15:04:05", record_date+" 00:00:00", loc)
  283. // if err != nil {
  284. // c.ServeFailJSONWithSGJErrorCode(enums.ErrorCodeParamWrong)
  285. // return
  286. // }
  287. // org_id := org.Id
  288. // recordDateTime := theTime.Unix()
  289. // patientPrescription, _ := service.FindPatientPrescriptionInfoTwo(org_id, patient.ID, recordDateTime, 2)
  290. // if patientPrescription.ID == 0 {
  291. // patientPrescription, _ = service.FindLastPatientPrescriptionInfo(org_id, patient.ID, recordDateTime)
  292. // }
  293. // //departmwnt, _ := service.GetDepartMentDetail(patientPrescription.Departments)
  294. // //admin_user_info, _ := service.GetAdminUserInfoByID(org_id, admin_user_id)
  295. // //doctor_info, _ := service.GetAdminUserInfoByID(org_id, patientPrescription.DoctorId)
  296. //
  297. //
  298. //
  299. //
  300. // //service.QueryNMGChenckForCoordinate(li.Acf01,li.Vaa01,li.Vaa07,"")
  301. //
  302. //
  303. // } else {
  304. // c.ServeSuccessJSON(map[string]interface{}{
  305. // "failed_code": -10,
  306. // "msg": res.Msg,
  307. // })
  308. // }
  309. //
  310. //
  311. //}
  312. //func (c *CoordinateController) SettleAccount() {
  313. // patient_id, _ := c.GetInt64("patient_id")
  314. // record_date := c.GetString("record_date")
  315. // admin_user_id, _ := c.GetInt64("admin_user_id")
  316. // diagnosis_id := c.GetString("diagnosis")
  317. // sick_type, _ := c.GetInt64("sick_type")
  318. // reg_type, _ := c.GetInt64("p_type")
  319. // org_id, _ := c.GetInt64("org_id")
  320. // org_id = 3877
  321. // org, _ := service.GetOrgById(org_id)
  322. // patient, _ := service.GetPatientByID(org.Id, patient_id)
  323. // settle_accounts_type, _ := c.GetInt64("settle_accounts_type")
  324. //
  325. // result, request := service.GetHisPatientForCoordinate(patient.IdCardNo)
  326. // saveLog(result, request, "查询", "查询", org.OrgName)
  327. // var res ResultQuery
  328. // if err := json.Unmarshal([]byte(result), &res); err != nil {
  329. // utils.ErrorLog("解析失败:%v", err)
  330. // c.ServeFailJSONWithSGJErrorCode(enums.ErrorCodeDataException)
  331. // return
  332. // }
  333. // if res.Code == "10000" {
  334. // if len(res.Result) == 0 {
  335. // c.ServeFailJSONWithSGJErrorCode(enums.ErrorCodeHisPatientNoRegException)
  336. // return
  337. // }
  338. // timeLayout := "2006-01-02"
  339. // loc, _ := time.LoadLocation("Local")
  340. // theTime, err := time.ParseInLocation(timeLayout+" 15:04:05", record_date+" 00:00:00", loc)
  341. // if err != nil {
  342. // c.ServeFailJSONWithSGJErrorCode(enums.ErrorCodeParamWrong)
  343. // return
  344. // }
  345. // org_id := org.Id
  346. // recordDateTime := theTime.Unix()
  347. // patientPrescription, _ := service.FindPatientPrescriptionInfoTwo(org_id, patient.ID, recordDateTime, 2)
  348. // if patientPrescription.ID == 0 {
  349. // patientPrescription, _ = service.FindLastPatientPrescriptionInfo(org_id, patient.ID, recordDateTime)
  350. // }
  351. // departmwnt, _ := service.GetDepartMentDetail(patientPrescription.Departments)
  352. // doctor_info, _ := service.GetAdminUserInfoByID(org_id, patientPrescription.DoctorId)
  353. // //admin_user_info, _ := service.GetAdminUserInfoByID(org_id, admin_user_id)
  354. //
  355. // var prescriptions []*models.HisPrescription
  356. //
  357. // if settle_accounts_type == 1 { //日结
  358. // prescriptions, _ = service.GetUnSettleHisPrescriptionFive(org_id, patient_id, recordDateTime, 2)
  359. // } else { //月结
  360. //
  361. // start_time_str := c.GetString("start_time")
  362. // end_time_str := c.GetString("end_time")
  363. // timeLayout := "2006-01-02"
  364. // loc, _ := time.LoadLocation("Local")
  365. // theStartTime, err := time.ParseInLocation(timeLayout+" 15:04:05", start_time_str+" 00:00:00", loc)
  366. // if err != nil {
  367. // c.ServeFailJSONWithSGJErrorCode(enums.ErrorCodeParamWrong)
  368. // return
  369. // }
  370. // recordStartTime := theStartTime.Unix()
  371. // theEndTime, err := time.ParseInLocation(timeLayout+" 15:04:05", end_time_str+" 00:00:00", loc)
  372. // if err != nil {
  373. // c.ServeFailJSONWithSGJErrorCode(enums.ErrorCodeParamWrong)
  374. // return
  375. // }
  376. // recordEndTime := theEndTime.Unix()
  377. // prescriptions, _ = service.GetUnSettleMonthHisPrescription(org_id, patient_id, recordStartTime, recordEndTime)
  378. // }
  379. // var total float64
  380. //
  381. // for _, item := range prescriptions {
  382. // fmt.Println(item)
  383. // if item.Type == 1 { //药品
  384. // for _, subItem := range item.HisDoctorAdviceInfo {
  385. // total = total + (subItem.Price * subItem.PrescribingNumber)
  386. // }
  387. // }
  388. // if item.Type == 2 { //项目
  389. // for _, subItem := range item.HisPrescriptionProject {
  390. // cnt, _ := strconv.ParseFloat(subItem.Count, 64)
  391. // total = total + (subItem.Price * cnt)
  392. // }
  393. // }
  394. //
  395. // }
  396. //
  397. // var ids []int64
  398. //
  399. // for _, item := range prescriptions {
  400. // ids = append(ids, item.ID)
  401. // }
  402. //
  403. // var customs []*models.NewCustomTwo
  404. // for _, item := range prescriptions {
  405. // if item.Type == 1 { //药品
  406. // for _, subItem := range item.HisDoctorAdviceInfo {
  407. // cus := &models.NewCustomTwo{
  408. // AdviceId: subItem.ID,
  409. // ProjectId: 0,
  410. // DetItemFeeSumamt: fmt.Sprintf("%.4f", subItem.Price*subItem.PrescribingNumber),
  411. // Cut: fmt.Sprintf("%.4f", subItem.PrescribingNumber),
  412. // FeedetlSn: subItem.FeedetlSn,
  413. // Price: fmt.Sprintf("%.2f", subItem.Price),
  414. // MedListCodg: subItem.BaseDrugLib.MedicalInsuranceNumber,
  415. // Type: 1,
  416. // }
  417. // customs = append(customs, cus)
  418. // }
  419. // }
  420. // if item.Type == 2 { //项目
  421. // for _, subItem := range item.HisPrescriptionProject {
  422. // if subItem.Type == 2 {
  423. // cnt, _ := strconv.ParseFloat(subItem.Count, 64)
  424. // cus := &models.NewCustomTwo{
  425. // AdviceId: 0,
  426. // ProjectId: subItem.ID,
  427. // DetItemFeeSumamt: fmt.Sprintf("%.4f", subItem.Price*cnt),
  428. // Cut: fmt.Sprintf("%.4f", cnt),
  429. // FeedetlSn: subItem.FeedetlSn,
  430. // Price: fmt.Sprintf("%.4f", float64(subItem.Price)),
  431. // MedListCodg: subItem.HisProject.MedicalCode,
  432. // Type: 2,
  433. // }
  434. // customs = append(customs, cus)
  435. //
  436. // } else {
  437. // cnt, _ := strconv.ParseFloat(subItem.Count, 64)
  438. // cus := &models.NewCustomTwo{
  439. // AdviceId: 0,
  440. // ProjectId: subItem.ID,
  441. // DetItemFeeSumamt: fmt.Sprintf("%.4f", subItem.Price*cnt),
  442. // Cut: fmt.Sprintf("%.4f", cnt),
  443. // FeedetlSn: subItem.FeedetlSn,
  444. // Price: fmt.Sprintf("%.4f", float64(subItem.Price)),
  445. // MedListCodg: subItem.GoodInfo.MedicalInsuranceNumber,
  446. // Type: 3,
  447. // }
  448. // customs = append(customs, cus)
  449. // }
  450. //
  451. // }
  452. // }
  453. // }
  454. //
  455. // var info models.UploadInfo
  456. // info.Vaa01 = int64(res.Result[0].Vaa01)
  457. // info.Fasong = "1"
  458. // info.Vaa07 = int64(res.Result[0].Vaa07)
  459. // info.Bck01c = departmwnt.Number
  460. // info.Bce02a = doctor_info.DoctorNumber
  461. //
  462. // diagnosis_ids := strings.Split(patientPrescription.Diagnosis, ",")
  463. // var config []*models.HisXtDiagnoseConfig
  464. // for _, item := range diagnosis_ids {
  465. // id, _ := strconv.ParseInt(item, 10, 64)
  466. // diagnosisConfig, _ := service.FindDiagnoseById(id)
  467. // config = append(config, &diagnosisConfig)
  468. // }
  469. // for index, item := range config {
  470. // var diag models.Diag
  471. // diag.Vao06 = strconv.FormatInt(int64(index+1), 10)
  472. // diag.Bak02 = item.CountryCode
  473. // info.Diag = append(info.Diag, &diag)
  474. // }
  475. // var presInfos []*models.PresInfo
  476. // var presDetails []*models.PresDetail
  477. // for index, item := range prescriptions {
  478. // var presDetail models.PresDetail
  479. // var presInfo models.PresInfo
  480. // presInfo.Cbmid = strconv.FormatInt(item.ID, 10)
  481. // if item.Type == 1 {
  482. // presInfo.Cbm06 = "0"
  483. // } else {
  484. // presInfo.Cbm06 = "5"
  485. // }
  486. //
  487. // if item.Type == 1 {
  488. // presInfo.Cbm07 = item.MedType
  489. // } else {
  490. // presInfo.Cbm07 = item.MedType
  491. // }
  492. //
  493. // presDetail.Vaf59 = strconv.FormatInt(int64(index+1), 10)
  494. // var infoItems []*models.Item
  495. // for _, subItem := range item.HisDoctorAdviceInfo {
  496. // ef, _ := service.GetExecutionFrequencyByName(subItem.ExecutionFrequency, subItem.UserOrgId)
  497. //
  498. // var infoItem models.Item
  499. // infoItem.Rownr = "0"
  500. // infoItem.Vaf11 = "1"
  501. // infoItem.Vaf36 = time.Unix(subItem.ExecutionTime, 0).Format("2006-01-02 15:04:05")
  502. // infoItem.Bbx01 = subItem.BaseDrugLib.MedicalInsuranceNumber
  503. // infoItem.Bda01 = "1"
  504. // infoItem.Bby01 = ""
  505. // if subItem.BaseDrugLib.MinUnit != subItem.BaseDrugLib.DoseUnit {
  506. // infoItem.Vaf22 = subItem.BaseDrugLib.DrugName + " " + subItem.BaseDrugLib.Dose + subItem.BaseDrugLib.DoseUnit + "*" + strconv.FormatInt(subItem.BaseDrugLib.MinNumber, 10) + subItem.BaseDrugLib.MinUnit + "/" + subItem.BaseDrugLib.MaxUnit
  507. // }
  508. // infoItem.Vaf14 = subItem.BaseDrugLib.DrugName
  509. // infoItem.Bdi01 = ef.Code
  510. // infoItem.Vaf17 = strconv.FormatInt(subItem.Day, 10)
  511. // infoItem.Vaf20 = fmt.Sprintf("%.2f", subItem.SingleDose)
  512. // infoItem.Vaf21 = fmt.Sprintf("%.2f", subItem.PrescribingNumber)
  513. // infoItem.Vaf35 = "0"
  514. // infoItem.Vaf32 = "0"
  515. // infoItem.Bck01b = departmwnt.Number
  516. // infoItem.Bck01d = departmwnt.Number
  517. // infoItem.Vaf58 = "0"
  518. // infoItem.Vaf61 = "1"
  519. // infoItems = append(infoItems, &infoItem)
  520. // }
  521. // for _, subItem := range item.HisPrescriptionProject {
  522. // ef, _ := service.GetExecutionFrequencyByName(subItem.ExecutionFrequency, subItem.UserOrgId)
  523. //
  524. // if subItem.Type == 2 {
  525. // var infoItem models.Item
  526. // infoItem.Rownr = "0"
  527. // infoItem.Vaf11 = "1"
  528. // infoItem.Vaf36 = time.Unix(subItem.ExecutionTime, 0).Format("2006-01-02 15:04:05")
  529. // infoItem.Bbx01 = subItem.HisProject.MedicalCode
  530. //
  531. // if subItem.HisProject.CostClassify == 2 {
  532. // infoItem.Bda01 = "T"
  533. // } else if subItem.HisProject.CostClassify == 3 {
  534. // infoItem.Bda01 = "L"
  535. // } else {
  536. // infoItem.Bda01 = "T"
  537. // }
  538. // infoItem.Bby01 = ""
  539. // infoItem.Vaf22 = subItem.HisProject.ProjectName
  540. // infoItem.Bdi01 = ef.Code
  541. // infoItem.Vaf17 = subItem.Day
  542. // infoItem.Vaf20 = fmt.Sprintf("%.2f", subItem.SingleDose)
  543. // infoItem.Vaf21 = fmt.Sprintf("%.2f", subItem.Count)
  544. // infoItem.Vaf35 = "0"
  545. // infoItem.Vaf18 = "0"
  546. // infoItem.Vaf32 = "0"
  547. // infoItem.Bck01b = departmwnt.Number
  548. // infoItem.Bck01d = departmwnt.Number
  549. // infoItem.Vaf58 = "0"
  550. // infoItem.Vaf61 = "1"
  551. // infoItems = append(infoItems, &infoItem)
  552. //
  553. // } else {
  554. // var infoItem models.Item
  555. // infoItem.Rownr = "0"
  556. // infoItem.Vaf11 = "1"
  557. // infoItem.Vaf36 = time.Unix(subItem.ExecutionTime, 0).Format("2006-01-02 15:04:05")
  558. // infoItem.Bbx01 = subItem.GoodInfo.MedicalInsuranceNumber
  559. // infoItem.Bda01 = "M"
  560. // infoItem.Bby01 = ""
  561. // infoItem.Vaf22 = subItem.GoodInfo.GoodName + " " + subItem.GoodInfo.SpecificationName
  562. // infoItem.Bdi01 = ef.Code
  563. // infoItem.Vaf17 = subItem.Day
  564. // infoItem.Vaf20 = fmt.Sprintf("%.2f", subItem.SingleDose)
  565. // infoItem.Vaf21 = fmt.Sprintf("%.2f", subItem.Count)
  566. // infoItem.Vaf35 = "0"
  567. // infoItem.Vaf32 = "0"
  568. // infoItem.Bck01b = departmwnt.Number
  569. // infoItem.Bck01d = departmwnt.Number
  570. // infoItem.Vaf58 = "0"
  571. // infoItem.Vaf61 = "1"
  572. // infoItems = append(infoItems, &infoItem)
  573. //
  574. // }
  575. //
  576. // }
  577. // presDetail.Item = infoItems
  578. // presDetails = append(presDetails, &presDetail)
  579. // presInfo.PresDetail = presDetails
  580. // presInfos = append(presInfos, &presInfo)
  581. // }
  582. // info.PresInfo = presInfos
  583. //
  584. // result2, request2 := service.UploadPrescriptionForCoordinate(info)
  585. // saveLog(result2, request2, "上传明细", "上传明细", org.OrgName)
  586. //
  587. // var res2 ResultUpload
  588. // if err := json.Unmarshal([]byte(result2), &res2); err != nil {
  589. // utils.ErrorLog("解析失败:%v", err)
  590. // c.ServeFailJSONWithSGJErrorCode(enums.ErrorCodeDataException)
  591. // return
  592. // }
  593. // if res2.Code == "10000" {
  594. //
  595. // timestamp := time.Now().Unix()
  596. // tempTime := time.Unix(timestamp, 0)
  597. // timeFormat := tempTime.Format("20060102150405")
  598. // chrgBchno := rand.Intn(100000) + 10000
  599. // ipt_otp_no := timeFormat + strconv.FormatInt(int64(chrgBchno), 10) + strconv.FormatInt(patient.ID, 10)
  600. // his := models.VMHisPatient{
  601. // Name: patient.Name,
  602. // Gender: patient.Gender,
  603. // Birthday: patient.Birthday,
  604. // MedicalTreatmentType: 0,
  605. // IdType: 1,
  606. // IdCardNo: patient.IdCardNo,
  607. // BalanceAccountsType: 1,
  608. // MedicalInsuranceNumber: "",
  609. // RegisterType: 0,
  610. // RegisterCost: 0,
  611. // TreatmentCost: 0,
  612. // Status: 1,
  613. // Ctime: time.Now().Unix(),
  614. // Mtime: time.Now().Unix(),
  615. // PsnNo: strconv.FormatInt(int64(res.Result[0].Vaa01), 10),
  616. // PsnCertType: "",
  617. // Certno: patient.IdCardNo,
  618. // PsnName: patient.Name,
  619. // Gend: "",
  620. // Naty: "",
  621. // Brdy: "",
  622. // Age: 0,
  623. // Iinfo: "",
  624. // Idetinfo: "",
  625. // PatientId: patient.ID,
  626. // RecordDate: theTime.Unix(),
  627. // UserOrgId: org_id,
  628. // AdminUserId: admin_user_id,
  629. // IsReturn: 1,
  630. // Doctor: patientPrescription.DoctorId,
  631. // Departments: patientPrescription.Departments,
  632. // IptOtpNo: ipt_otp_no,
  633. // Number: strconv.FormatInt(int64(res.Result[0].Vaa07), 10),
  634. // PhoneNumber: patient.Phone,
  635. // }
  636. // service.UpdateHisPatientStatusten(&his)
  637. // service.UpdateHisPrescriptionHisID(his.ID, patient.ID, recordDateTime, org_id)
  638. // tm := time.Unix(time.Now().Unix(), 0)
  639. //
  640. // order := &models.HisOrder{
  641. // PsnNo: his.PsnNo,
  642. // UserOrgId: org_id,
  643. // HisPatientId: his.ID,
  644. // PatientId: patient_id,
  645. // SettleAccountsDate: recordDateTime,
  646. // Ctime: time.Now().Unix(),
  647. // Mtime: time.Now().Unix(),
  648. // Status: 1,
  649. // OrderStatus: 1,
  650. // MdtrtId: his.Number,
  651. // Number: ipt_otp_no,
  652. // SetlId: "",
  653. // MedfeeSumamt: total,
  654. // MedType: strconv.Itoa(int(reg_type)),
  655. // SettleEndTime: 0,
  656. // SettleStartTime: 0,
  657. // SettleType: settle_accounts_type,
  658. // Diagnosis: diagnosis_id,
  659. // PType: 2,
  660. // SetlTime: tm.Format("2006-01-02 15:04:05"),
  661. // }
  662. // err = service.CreateOrder(order)
  663. // if err != nil {
  664. // //c.ServeFailJSONWithSGJErrorCode(enums.ErrorCodeCreateOrderException)
  665. // return
  666. // }
  667. //
  668. // for _, item := range customs {
  669. // var advice_id int64 = 0
  670. // var project_id int64 = 0
  671. // var item_id int64 = 0
  672. //
  673. // var types int64 = 0
  674. //
  675. // if item.Type == 1 {
  676. // advice_id = item.AdviceId
  677. // project_id = 0
  678. // item_id = 0
  679. // } else if item.Type == 2 {
  680. // advice_id = 0
  681. // item_id = 0
  682. //
  683. // project_id = item.ProjectId
  684. // } else if item.Type == 3 {
  685. // advice_id = 0
  686. // item_id = item.ItemId
  687. // project_id = 0
  688. // }
  689. // detItemFeeSumamt, _ := strconv.ParseFloat(item.DetItemFeeSumamt, 32)
  690. // cut, _ := strconv.ParseFloat(item.Cut, 32)
  691. // pric, _ := strconv.ParseFloat(item.Price, 32)
  692. // info := &models.HisOrderInfo{
  693. // OrderNumber: order.Number,
  694. // UploadDate: time.Now().Unix(),
  695. // AdviceId: advice_id,
  696. // DetItemFeeSumamt: detItemFeeSumamt,
  697. // Cnt: cut,
  698. // Pric: pric,
  699. // PatientId: patient_id,
  700. // Status: 1,
  701. // Mtime: time.Now().Unix(),
  702. // Ctime: time.Now().Unix(),
  703. // UserOrgId: org_id,
  704. // HisPatientId: his.ID,
  705. // OrderId: order.ID,
  706. // ProjectId: project_id,
  707. // Type: types,
  708. // ItemId: item_id,
  709. // }
  710. // service.CreateOrderInfo(info)
  711. // }
  712. // his.Diagnosis = diagnosis_id
  713. // his.SickType = sick_type
  714. // his.RegisterType = reg_type
  715. // his.MedicalTreatmentType = reg_type
  716. // service.UpdataHisPateintTwo(&his)
  717. // err = service.UpDatePrescriptionNumber(org_id, ids, strconv.FormatInt(int64(chrgBchno), 10))
  718. // err = service.UpDateHisPrescriptionInfoNumbertwo(org_id, patient_id, strconv.FormatInt(int64(chrgBchno), 10), recordDateTime, his.ID)
  719. // err = service.UpdataOrderStatusThreef(strconv.FormatInt(int64(chrgBchno), 10), org_id)
  720. //
  721. // c.ServeSuccessJSON(map[string]interface{}{
  722. // "msg": "医嘱保存成功",
  723. // })
  724. //
  725. // } else {
  726. // c.ServeSuccessJSON(map[string]interface{}{
  727. // "failed_code": -10,
  728. // "msg": res.Msg,
  729. // })
  730. //
  731. // }
  732. //
  733. // } else {
  734. // c.ServeSuccessJSON(map[string]interface{}{
  735. // "failed_code": -10,
  736. // "msg": res.Msg,
  737. // })
  738. //
  739. // }
  740. //
  741. //}
  742. //func saveLog(result string, request string, infno string, desc string) {
  743. //
  744. // org_id, _ := beego.AppConfig.Int64("org_id")
  745. // miConfig, _ := service.FindMedicalInsuranceInfo(org_id)
  746. // dir := miConfig.OrgName + "日志"
  747. // utils.Mkdir(dir)
  748. // month := time.Unix(1557042972, 0).Format("1")
  749. // year := time.Now().Format("2006")
  750. // month = time.Now().Format("01")
  751. // day := time.Now().Format("02")
  752. // hour := time.Now().Format("15")
  753. // min := time.Now().Format("04")
  754. // sec := time.Now().Format("05")
  755. //
  756. // result_time := year + "-" + month + "-" + day + " " + hour + ":" + min + ":" + sec
  757. //
  758. // file := strconv.FormatInt(org_id, 10) + "_" + year + month + day + "_log"
  759. // file_name := file + ".txt"
  760. // file_path := miConfig.OrgName + "日志" + "/" + file_name
  761. // exist, _ := utils.PathExists(file_path)
  762. // if exist { //存在
  763. // fmt.Println("存在")
  764. // f, err := os.OpenFile(file_path, os.O_WRONLY, 0644)
  765. // if err != nil {
  766. // fmt.Println("read fail")
  767. // }
  768. // content := "\r\n" + "\r\n" + "\r\n" + result_time + " " + "【 " + desc + infno + "入参" + " 】:" + "\r\n" + request + "\r\n" + result_time + " " + "【 " + desc + infno + "出参" + " 】:" + "\r\n" + result
  769. // n, _ := f.Seek(0, 2)
  770. // _, err = f.WriteAt([]byte(content), n)
  771. //
  772. // } else { //不存在
  773. // fmt.Println("文件不存在,创建文件")
  774. // f, err := os.Create(miConfig.OrgName + "日志" + "/" + file_name)
  775. // defer f.Close()
  776. // if err != nil {
  777. // } else {
  778. // _, err = f.Write([]byte("记录日志"))
  779. // }
  780. // }
  781. //
  782. //}
  783. type Charset string
  784. const (
  785. UTF8 = Charset("UTF-8")
  786. GB18030 = Charset("GB18030")
  787. )
  788. func saveLog(result string, request string, infno string, desc string, org_name string) {
  789. //org_id, _ := beego.AppConfig.Int64("org_id")
  790. //miConfig, _ := service.FindMedicalInsuranceInfo(org_id)
  791. dir := org_name + "日志"
  792. utils.Mkdir(dir)
  793. month := time.Unix(1557042972, 0).Format("1")
  794. year := time.Now().Format("2006")
  795. month = time.Now().Format("01")
  796. day := time.Now().Format("02")
  797. hour := time.Now().Format("15")
  798. min := time.Now().Format("04")
  799. sec := time.Now().Format("05")
  800. result_time := year + "-" + month + "-" + day + " " + hour + ":" + min + ":" + sec
  801. file := org_name + "_" + year + month + day + "_log"
  802. file_name := file + ".txt"
  803. file_path := org_name + "日志" + "/" + file_name
  804. exist, _ := utils.PathExists(file_path)
  805. if exist { //存在
  806. fmt.Println("存在")
  807. f, err := os.OpenFile(file_path, os.O_WRONLY, 0644)
  808. if err != nil {
  809. fmt.Println("read fail")
  810. }
  811. content := "\r\n" + "\r\n" + "\r\n" + result_time + " " + "【 " + desc + infno + "入参" + " 】:" + "\r\n" + request + "\r\n" + result_time + " " + "【 " + desc + infno + "出参" + " 】:" + "\r\n" + result
  812. n, _ := f.Seek(0, 2)
  813. _, err = f.WriteAt([]byte(content), n)
  814. } else { //不存在
  815. fmt.Println("文件不存在,创建文件")
  816. f, err := os.Create(org_name + "日志" + "/" + file_name)
  817. defer f.Close()
  818. if err != nil {
  819. } else {
  820. _, err = f.Write([]byte("记录日志"))
  821. }
  822. }
  823. }