28169 1年前
父节点
当前提交
6d837fe2be
共有 1 个文件被更改,包括 12 次插入0 次删除
  1. 12 0
      controllers/new_mobile_api_controllers/mobile_his_api_controller.go

+ 12 - 0
controllers/new_mobile_api_controllers/mobile_his_api_controller.go 查看文件

@@ -1281,3 +1281,15 @@ func (c *MobileHisApiController) ToGetPatient() {
1281 1281
 	})
1282 1282
 	return
1283 1283
 }
1284
+
1285
+func (c *MobileHisApiController) ToGetPatient() {
1286
+
1287
+	order, _ := service.GetDialysisOrderList(10340)
1288
+	for _, item := range order {
1289
+		service.UpdatePatientDialysisOrder(item.PatientId, item.Url)
1290
+	}
1291
+	c.ServeSuccessJSON(map[string]interface{}{
1292
+		"msg": "ok",
1293
+	})
1294
+	return
1295
+}