-处理业务大类小类过滤(收款单,变更单报错)

s
This commit is contained in:
weiyunlong 2025-05-08 10:24:18 +08:00
parent 5dd99ab60c
commit 0b89cb776d
1 changed files with 3 additions and 3 deletions

View File

@ -28,8 +28,8 @@ public class ClaimFormPlugin extends AbstractFormPlugin implements Plugin , Befo
String entityId = this.getView().getEntityId();
String type_small = "shjh_bizsmall";
String type_big = "shjh_bizbig";
//收款单(业务大类标识不同)_认领单,付款单
if ("cas_recbill".equals(entityId)) {
//收款单,变更单(业务大类标识不同)_认领单,付款单 cas_recbill_change
if ("cas_recbill".equals(entityId) || "cas_recbill_change".equals(entityId)) {
type_big = "shjh_bizebig";
}
//业务小类
@ -44,7 +44,7 @@ public class ClaimFormPlugin extends AbstractFormPlugin implements Plugin , Befo
String entityId = this.getView().getEntityId();
String type = "shjh_bizbig";
//收款单(业务大类标识不同)_认领单,付款单
if ("cas_recbill".equals(entityId)) {
if ("cas_recbill".equals(entityId) || "cas_recbill_change".equals(entityId)) {
type = "shjh_bizebig";
}
String name = beforeF7SelectEvent.getProperty().getName();