|
@@ -468,7 +468,7 @@ public class PatientService {
|
|
|
return ResultVoUtil.success(String.valueOf(orderNo));
|
|
|
}
|
|
|
|
|
|
- public ResultVo<String> receiveAndRecalculateCost(Patient p) {
|
|
|
+ public ResultVo<Patient> receiveAndRecalculateCost(Patient p) {
|
|
|
String zyh = p.getInpatientNo();
|
|
|
int times = p.getAdmissTimes();
|
|
|
int infant = zyh.startsWith("$") ? 1 : 0;
|
|
@@ -485,6 +485,6 @@ public class PatientService {
|
|
|
dao.zyCnglFyjsListYz(zyh, times);
|
|
|
dao.updateZyDetailCharge(zyh, times, ledger);
|
|
|
dao.zyCalcDetailAgainNew(zyh, times, ledger);
|
|
|
- return ResultVoUtil.success("费用接收重算成功。");
|
|
|
+ return getPatientInfo(zyh);
|
|
|
}
|
|
|
}
|