|
@@ -220,10 +220,8 @@ func (c *NmController) Post2301() {
|
220
|
220
|
chrg_bchno := respJSON["chrg_bchno"].(string)
|
221
|
221
|
dept := respJSON["dept"].(string)
|
222
|
222
|
dept_code := respJSON["dept_code"].(string)
|
223
|
|
- doctor_code := respJSON["doctor_code"].(float64)
|
224
|
|
- fmt.Println("@@@@@@")
|
|
223
|
+ doctor_code := respJSON["doctor_code"].(string)
|
225
|
224
|
|
226
|
|
- fmt.Println(doctor_code)
|
227
|
225
|
doctor_name := respJSON["doctor_name"].(string)
|
228
|
226
|
opertor := respJSON["opertor"].(string)
|
229
|
227
|
|
|
@@ -232,11 +230,11 @@ func (c *NmController) Post2301() {
|
232
|
230
|
insuplc_admdvs := respJSON["insuplc_admdvs"].(string)
|
233
|
231
|
mdtrtarea_admvs := respJSON["mdtrtarea_admvs"].(string)
|
234
|
232
|
secret_key := respJSON["secret_key"].(string)
|
235
|
|
- //med_type := respJSON["med_type"].(float64)
|
236
|
|
- med_type := strconv.FormatInt(int64(respJSON["med_type"].(float64)), 10)
|
|
233
|
+ med_type := respJSON["med_type"].(string)
|
|
234
|
+ //med_type := strconv.FormatInt(int64(respJSON["med_type"].(float64)), 10)
|
237
|
235
|
psn_no := respJSON["psn_no"].(string)
|
238
|
236
|
|
239
|
|
- result, requestLog := service.ZHGdyb2301A(psn_no, number, customs, chrg_bchno, org_name, doctor_name, dept, fixmedins_code, dept_code, int64(doctor_code), insuplc_admdvs, mdtrtarea_admvs, secret_key, med_type, opertor)
|
|
237
|
+ result, requestLog := service.ZHGdyb2301A(psn_no, number, customs, chrg_bchno, org_name, doctor_name, dept, fixmedins_code, dept_code, doctor_code, insuplc_admdvs, mdtrtarea_admvs, secret_key, med_type, opertor)
|
240
|
238
|
saveJsLog(result, requestLog, "2301", "上传明细", org_name)
|
241
|
239
|
|
242
|
240
|
var dat2 map[string]interface{}
|