|
@@ -244,7 +244,10 @@ func (c *HisApiController) CheckCardPWD() {
|
244
|
244
|
roles, _ := service.GetAdminUserInfoByID(c.GetAdminUserInfo().CurrentOrgId, admin_user_id)
|
245
|
245
|
miConfig, _ := service.FindMedicalInsuranceInfo(c.GetAdminUserInfo().CurrentOrgId)
|
246
|
246
|
his, _ := service.GetNewHisPatientInfoFour(c.GetAdminUserInfo().CurrentOrgId, his_patient_id)
|
247
|
|
- result := service.Gdyb90991(his.PsnNo, miConfig.OrgName, roles.UserName, miConfig.Code, miConfig.InsuplcAdmdvs, miConfig.MdtrtareaAdmvs, miConfig.SecretKey, card_pwd)
|
|
247
|
+ psn, _ := service.GetPsnByPatientId(his.PatientId)
|
|
248
|
+ bas := strings.Split(psn.CardInfo, "|")
|
|
249
|
+ basNumber := bas[2]
|
|
250
|
+ result := service.Gdyb90991(his.PsnNo, miConfig.OrgName, roles.UserName, miConfig.Code, miConfig.InsuplcAdmdvs, miConfig.MdtrtareaAdmvs, miConfig.SecretKey, card_pwd, basNumber)
|
248
|
251
|
|
249
|
252
|
var dat map[string]interface{}
|
250
|
253
|
if err := json.Unmarshal([]byte(result), &dat); err == nil {
|
|
@@ -616,6 +619,28 @@ func (c *HisApiController) ReadCard() {
|
616
|
619
|
return
|
617
|
620
|
|
618
|
621
|
} else {
|
|
622
|
+ Iinfos, _ := json.Marshal(res.Output.Iinfo)
|
|
623
|
+ Idetinfos, _ := json.Marshal(res.Output.Idetinfo)
|
|
624
|
+ infoStr := string(Iinfos)
|
|
625
|
+ idetinfoStr := string(Idetinfos)
|
|
626
|
+ psn := &models.HisPsn{
|
|
627
|
+ PsnNo: res.Output.Baseinfo.PsnNo,
|
|
628
|
+ Age: res.Output.Baseinfo.Age,
|
|
629
|
+ PatientId: patient.ID,
|
|
630
|
+ Certno: res.Output.Baseinfo.Certno,
|
|
631
|
+ Brdy: res.Output.Baseinfo.Brdy,
|
|
632
|
+ Gend: res.Output.Baseinfo.Gend,
|
|
633
|
+ Naty: res.Output.Baseinfo.Naty,
|
|
634
|
+ PsnCertType: res.Output.Baseinfo.PsnCertType,
|
|
635
|
+ PsnName: res.Output.Baseinfo.PsnName,
|
|
636
|
+ Idetinfo: idetinfoStr,
|
|
637
|
+ Insuinfo: infoStr,
|
|
638
|
+ UserOrgId: c.GetAdminUserInfo().CurrentOrgId,
|
|
639
|
+ CardInfo: basStr,
|
|
640
|
+ VerifyNumber: "",
|
|
641
|
+ }
|
|
642
|
+ service.CreateHisPsn(psn)
|
|
643
|
+
|
619
|
644
|
c.ServeSuccessJSON(map[string]interface{}{
|
620
|
645
|
"patient": patient,
|
621
|
646
|
"number": basNumber,
|