Browse Source

Merge branch 'master' of http://git.shengws.com/csx/gdyb

csx 2 years ago
parent
commit
81df9ed19a
2 changed files with 9 additions and 7 deletions
  1. 2 0
      controllers/zh/zh_his_api_controller.go
  2. 7 7
      main.go

+ 2 - 0
controllers/zh/zh_his_api_controller.go View File

@@ -3017,6 +3017,7 @@ func (c *ZHHisApiController) ReadCard() {
3017 3017
 					c.ServeSuccessJSON(map[string]interface{}{
3018 3018
 						"patient": patient,
3019 3019
 						"number":  basNumber,
3020
+						"info":    res,
3020 3021
 					})
3021 3022
 				} else {
3022 3023
 					Iinfos, _ := json.Marshal(res.Output.Iinfo)
@@ -3043,6 +3044,7 @@ func (c *ZHHisApiController) ReadCard() {
3043 3044
 					c.ServeSuccessJSON(map[string]interface{}{
3044 3045
 						"patient": patient,
3045 3046
 						"number":  token,
3047
+						"info":    res,
3046 3048
 					})
3047 3049
 				}
3048 3050
 			}

+ 7 - 7
main.go View File

@@ -5,7 +5,7 @@ import (
5 5
 	"fmt"
6 6
 	"gdyb/models"
7 7
 	_ "gdyb/routers"
8
-	//"gdyb/service"
8
+	"gdyb/service"
9 9
 	"github.com/astaxie/beego"
10 10
 	"github.com/qiniu/api.v7/auth/qbox"
11 11
 	"github.com/qiniu/api.v7/storage"
@@ -15,12 +15,12 @@ import (
15 15
 )
16 16
 
17 17
 func init() {
18
-	//service.ConnectDB()
19
-	//org_id, _ := beego.AppConfig.Int64("org_id")
20
-	//
21
-	//miConfig, _ := service.FindMedicalInsuranceInfo(org_id)
22
-	//CreateLog(miConfig)
23
-	//UploadLog(miConfig)
18
+	service.ConnectDB()
19
+	org_id, _ := beego.AppConfig.Int64("org_id")
20
+
21
+	miConfig, _ := service.FindMedicalInsuranceInfo(org_id)
22
+	CreateLog(miConfig)
23
+	UploadLog(miConfig)
24 24
 
25 25
 	//UploadSettleList(org_id)
26 26
 }