|
@@ -91,14 +91,14 @@ public class DataTask implements ITask {
|
|
|
|
|
|
//匹配支付状态
|
|
//匹配支付状态
|
|
if (record.getStr("ExamItem").contains("无片")) {
|
|
if (record.getStr("ExamItem").contains("无片")) {
|
|
- JSONObject jsonObject = new JSONObject();
|
|
|
|
|
|
+ JSONObject jsonObjectPay = new JSONObject();
|
|
//机构ID
|
|
//机构ID
|
|
- jsonObject.put("institution_id", PropKit.get("institution_id"));
|
|
|
|
- jsonObject.put("patient_num", record.getStr("PatientId"));
|
|
|
|
|
|
+ jsonObjectPay.put("institution_id", PropKit.get("institution_id"));
|
|
|
|
+ jsonObjectPay.put("patient_num", record.getStr("PatientId"));
|
|
//机构类型:1:accession_num:patient_num
|
|
//机构类型:1:accession_num:patient_num
|
|
- jsonObject.put("ins_type", "2");
|
|
|
|
|
|
+ jsonObjectPay.put("ins_type", "2");
|
|
JSONObject pJsonObject = new JSONObject();
|
|
JSONObject pJsonObject = new JSONObject();
|
|
- pJsonObject.put("params", jsonObject.toJSONString());
|
|
|
|
|
|
+ pJsonObject.put("params", jsonObjectPay.toJSONString());
|
|
dService.fee(pJsonObject);
|
|
dService.fee(pJsonObject);
|
|
}
|
|
}
|
|
|
|
|