From 35d101386a2e20149928a8fb9bad76ea01968a53 Mon Sep 17 00:00:00 2001 From: zzs Date: Fri, 6 Dec 2024 14:22:41 +0800 Subject: [PATCH] =?UTF-8?q?fix:=E6=99=BA=E8=83=BD=E5=AE=A1=E6=89=B9?= =?UTF-8?q?=E5=8D=95=E6=8D=AE=E6=B3=A8=E5=86=8C=EF=BC=8C=E5=AD=90=E5=8D=95?= =?UTF-8?q?=E6=8D=AE=E4=BD=93=E4=BF=AE=E6=94=B9=E4=BC=9A=E6=B8=85=E7=A9=BA?= =?UTF-8?q?=E7=88=B6=E5=88=86=E5=BD=95=E6=A0=87=E8=AF=86?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../yem/ia/intebilllogon/form/IntebilllogonFormPlugIn.java | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/src/main/java/com/yem/ia/intebilllogon/form/IntebilllogonFormPlugIn.java b/src/main/java/com/yem/ia/intebilllogon/form/IntebilllogonFormPlugIn.java index fa571865..325a2a10 100644 --- a/src/main/java/com/yem/ia/intebilllogon/form/IntebilllogonFormPlugIn.java +++ b/src/main/java/com/yem/ia/intebilllogon/form/IntebilllogonFormPlugIn.java @@ -92,8 +92,9 @@ public class IntebilllogonFormPlugIn extends AbstractBillPlugIn implements Befor int row = this.getModel().getEntryCurrentRowIndex("yem_signentryentity"); String yem_parentcontainer = (String) model.getValue("yem_parentcontainer", row); if (StringUtils.isNotEmpty(yem_parentcontainer)) { - model.setValue("yem_parentcontainer", "", row); - model.setValue("yem_parentname", "", row); + // zzs禁用 20241206原因:智能审批 子单据体的字段清空或者修改时 父分录标识就被清空了 不应该清空 +// model.setValue("yem_parentcontainer", "", row); +// model.setValue("yem_parentname", "", row); } } }