bugfix:对账排除住院订单

This commit is contained in:
Yuan
2025-11-20 17:25:09 +08:00
parent 97aae27351
commit c7747abc1e

View File

@@ -696,7 +696,7 @@ public class BankGetDataMethodByJHLZF {
// 根据终端号判断是否为住院订单
// 终端号为10091548或10091549的为住院订单不参与对账
if ("10091548".equals(zdh) || "10091549".equals(zdh)) {
if ("10091548".equals(zdh) || "10091549".equals(zdh) || "10091546".equals(zdh)) {
bankbillHistory.setIsInpatient("1"); // 标记为住院订单
log.info("标记为住院订单: 终端号=" + zdh + ", 订单号=" + bankbillHistory.getCShddh());
} else {