|
|
|
@ -45,7 +45,7 @@ public class HisRecipeDao { |
|
|
|
|
* @param endDate 结束日期 |
|
|
|
|
* @return 已缴费项目 |
|
|
|
|
*/ |
|
|
|
|
public List<HisRecipe> getPaidRecipeList(String patientId, String begDate, String endDate) { |
|
|
|
|
public List<HisRecipe> getPaidRecipeList(String patientId, String begDate, String endDate,String personNo) { |
|
|
|
|
List<HisRecipe> resultList = new ArrayList<>(); |
|
|
|
|
|
|
|
|
|
Map<String, Object> params = new HashMap<>(); |
|
|
|
@ -53,6 +53,7 @@ public class HisRecipeDao { |
|
|
|
|
params.put("RecipeID", ""); |
|
|
|
|
params.put("StartTime", begDate); |
|
|
|
|
params.put("EndTime", endDate); |
|
|
|
|
params.put("PersonNo",personNo); |
|
|
|
|
JsonResult jsonResult = HisHelper.getJsonResult(HisEnum.AP_Query_OutpatientFee, params); |
|
|
|
|
|
|
|
|
|
if (!jsonResult.success()) { // 请求失败
|
|
|
|
@ -194,6 +195,7 @@ public class HisRecipeDao { |
|
|
|
|
params.put("PatientID", "0"); |
|
|
|
|
params.put("TJBH",treatNum.split("-")[1]); |
|
|
|
|
params.put("GroupFlag","1"); |
|
|
|
|
params.remove("Recipe"); |
|
|
|
|
} |
|
|
|
|
return HisHelper.getJsonResult(HisEnum.AP_Pay_Invoice, params,merchantEnum); |
|
|
|
|
} |
|
|
|
|