|
@@ -167,7 +167,7 @@ public class SiZyFeeService {
|
|
|
List<Integer> tempSns = new ArrayList<>();
|
|
|
for (int sn : notAllowedSns) {
|
|
|
tempSns.add(sn);
|
|
|
- if (tempSns.size() == 100) {
|
|
|
+ if (tempSns.size() == 50) {
|
|
|
zyPtnt.setDetailSns(tempSns);
|
|
|
revokeUploadFees(zyPtnt);
|
|
|
tempSns.clear();
|
|
@@ -278,7 +278,7 @@ public class SiZyFeeService {
|
|
|
feeDtle.setOrdersDrCode(feeDtle.getBilgDrCodg());
|
|
|
feeDtle.setOrdersDrName(feeDtle.getBilgDrName());
|
|
|
tempList.add(feeDtle);
|
|
|
- if (tempList.size() == 100) {
|
|
|
+ if (tempList.size() == 50) {
|
|
|
int[] upldres = executeUploadFees(input, tempList, p);
|
|
|
index += upldres[0];
|
|
|
if (upldres[1] > 0) {
|
|
@@ -358,8 +358,8 @@ public class SiZyFeeService {
|
|
|
JSONObject result = exec.executeTrade(input, SiFunction.UPLOAD_HOSPITALIZATION_FEE_DETAILS);
|
|
|
int infcode = result.getIntValue(RESULT_CODE);
|
|
|
String logMsg = infcode + "," + result.getString("inf_refmsgid");
|
|
|
- log.info("【操作员:{}】,医保费用上传:\n患者:{},\n结果:{}", p.getStaffId(),
|
|
|
- p.getPsnInfo(), logMsg);
|
|
|
+ log.info("【操作员:{}】,医保费用上传:\n患者:{},\n结果:{},\n参数:{}", p.getStaffId(),
|
|
|
+ p.getPsnInfo(), logMsg, input);
|
|
|
if (infcode == 0) {
|
|
|
JSONArray array = result.getJSONObject(OUTPUT).getJSONArray("result");
|
|
|
List<SiChargeTemp> tempList = new ArrayList<>();
|