Explorar el Código

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

csx hace 3 años
padre
commit
e390a6460c
Se han modificado 4 ficheros con 18 adiciones y 16 borrados
  1. 1 1
      conf/app.conf
  2. 3 1
      controllers/hb/hbyb_controller.go
  3. 6 6
      main.go
  4. 8 8
      service/hbyb_service.go

+ 1 - 1
conf/app.conf Ver fichero

@@ -45,7 +45,7 @@ appsecret="61ee2e6268497d5aa9de0b0187c39aea"
45 45
 
46 46
 
47 47
 [prod]
48
-org_id = 9919
48
+org_id = 10088
49 49
 mobile_token_expiration_second = 86400
50 50
 httpdomain = https://api.xt.kuyicloud.com
51 51
 sso_domain = https://sso.kuyicloud.com

+ 3 - 1
controllers/hb/hbyb_controller.go Ver fichero

@@ -317,7 +317,9 @@ func (c *HBybController) PostEight() {
317 317
 	preselfpay_amt, _ := c.GetFloat("preselfpay_amt")
318 318
 	inscp_scp_amt, _ := c.GetFloat("inscp_scp_amt")
319 319
 
320
-	result, srcRequest := service.Hbyb2207(psnNo, mdtrtId, chrgBchno, certNo, insutype, total, org_name, doctor, fixmedins_code, insuplc_admdvs, mdtrtarea_admvs, secret_key, med_type, id_card_type, fulamt_ownpay_amt, overlmt_selfpay, preselfpay_amt, inscp_scp_amt, certificates)
320
+	acct_used_flag, _ := c.GetInt64("acct_used_flag")
321
+
322
+	result, srcRequest := service.Hbyb2207(psnNo, mdtrtId, chrgBchno, certNo, insutype, total, org_name, doctor, fixmedins_code, insuplc_admdvs, mdtrtarea_admvs, secret_key, med_type, id_card_type, fulamt_ownpay_amt, overlmt_selfpay, preselfpay_amt, inscp_scp_amt, certificates, acct_used_flag)
321 323
 	var dat map[string]interface{}
322 324
 	if err := json.Unmarshal([]byte(result), &dat); err == nil {
323 325
 		fmt.Println(dat)

+ 6 - 6
main.go Ver fichero

@@ -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,11 +15,11 @@ import (
15 15
 )
16 16
 
17 17
 func init() {
18
-	service.ConnectDB()
19
-	org_id, _ := beego.AppConfig.Int64("org_id")
20
-	miConfig, _ := service.FindMedicalInsuranceInfo(org_id)
21
-	CreateLog(miConfig)
22
-	UploadLog(miConfig)
18
+	//service.ConnectDB()
19
+	//org_id, _ := beego.AppConfig.Int64("org_id")
20
+	//miConfig, _ := service.FindMedicalInsuranceInfo(org_id)
21
+	//CreateLog(miConfig)
22
+	//UploadLog(miConfig)
23 23
 }
24 24
 func main() {
25 25
 	beego.Run()

+ 8 - 8
service/hbyb_service.go Ver fichero

@@ -540,7 +540,7 @@ func Hbyb2206(psnNo string, mdtrtId string, chrgBchno string, certNo string, ins
540 540
 }
541 541
 
542 542
 //  门诊结算
543
-func Hbyb2207(psnNo string, mdtrtId string, chrgBchno string, certNo string, insutype string, total string, org_name string, doctor string, fixmedins_code string, insuplc_admdvs string, mdtrtarea_admvs string, secret_key string, med_type string, id_card_type int64, fulamt_ownpay_amt float64, overlmt_selfpay float64, preselfpay_amt float64, inscp_scp_amt float64, certificates int64) (string, string) {
543
+func Hbyb2207(psnNo string, mdtrtId string, chrgBchno string, certNo string, insutype string, total string, org_name string, doctor string, fixmedins_code string, insuplc_admdvs string, mdtrtarea_admvs string, secret_key string, med_type string, id_card_type int64, fulamt_ownpay_amt float64, overlmt_selfpay float64, preselfpay_amt float64, inscp_scp_amt float64, certificates int64, acct_used_flag int64) (string, string) {
544 544
 	// 生成签名
545 545
 	nonce := GetRandomString(32)
546 546
 	timestamp := time.Now().Unix()
@@ -572,13 +572,13 @@ func Hbyb2207(psnNo string, mdtrtId string, chrgBchno string, certNo string, ins
572 572
 	} else {
573 573
 		inputData["med_type"] = med_type // 医疗类别 11 普通门诊  12 门诊挂号
574 574
 	}
575
-	inputData["medfee_sumamt"] = total  // 医疗费总额
576
-	inputData["psn_setlway"] = "01"     // 个人结算方式 01 按项目结 02 按定额结算
577
-	inputData["mdtrt_id"] = mdtrtId     // 就诊 ID(来自2201接口返回)
578
-	inputData["chrg_bchno"] = chrgBchno // 收费批次号(来自2204生成的)
579
-	inputData["acct_used_flag"] = "0"   // 个人账户使用标志 0否 1是
580
-	inputData["insutype"] = insutype    // 险种类型
581
-	inputData["invono"] = ""            // 发票号
575
+	inputData["medfee_sumamt"] = total           // 医疗费总额
576
+	inputData["psn_setlway"] = "01"              // 个人结算方式 01 按项目结 02 按定额结算
577
+	inputData["mdtrt_id"] = mdtrtId              // 就诊 ID(来自2201接口返回)
578
+	inputData["chrg_bchno"] = chrgBchno          // 收费批次号(来自2204生成的)
579
+	inputData["acct_used_flag"] = acct_used_flag // 个人账户使用标志 0否 1是
580
+	inputData["insutype"] = insutype             // 险种类型
581
+	inputData["invono"] = ""                     // 发票号
582 582
 
583 583
 	inputData["fulamt_ownpay_amt"] = fulamt_ownpay_amt //
584 584
 	inputData["overlmt_selfpay"] = overlmt_selfpay     //