清账单不能主动去提交

This commit is contained in:
yuxueliang0813 2025-07-25 11:58:54 +08:00
parent b3fb47a680
commit ac7252b791
1 changed files with 4 additions and 0 deletions

View File

@ -135,6 +135,10 @@ public class ClearAccountBillOperation extends AbstractOperationServicePlugIn im
e.setCancelMessage(billno + "【单据状态】=暂存 and【清账状态】=待清账,才允许修改清账单状态");
e.setCancel(true);
}
} else if ("submit".equals(eok)) {
//清账单的提交按钮已隐藏其他也没有地方去主动调用提交现在奇怪的是会有些单据自动提交此处做判断
e.setCancelMessage(billno + "不能主动去提交");
e.setCancel(true);
}
}
}