From d2ca88bd8fe9a2e1cc18311addfc86d9d9c20281 Mon Sep 17 00:00:00 2001 From: zengweihai Date: Tue, 2 Jul 2024 15:50:59 +0800 Subject: [PATCH] =?UTF-8?q?=E9=80=9A=E7=94=A8=E8=B4=B9=E7=94=A8=E9=A1=B9?= =?UTF-8?q?=E7=9B=AE=E6=8F=92=E4=BB=B6=E6=8F=90=E7=A4=BA=E4=BB=A3=E7=A0=81?= =?UTF-8?q?=E6=9B=B4=E6=96=B0?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../formplugin/CommonExpenseItemBillFormPlugin.java | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/shkd-cosmic-debug/src/main/java/shkd/fi/er/plugin/formplugin/CommonExpenseItemBillFormPlugin.java b/shkd-cosmic-debug/src/main/java/shkd/fi/er/plugin/formplugin/CommonExpenseItemBillFormPlugin.java index e20591a..f141b45 100644 --- a/shkd-cosmic-debug/src/main/java/shkd/fi/er/plugin/formplugin/CommonExpenseItemBillFormPlugin.java +++ b/shkd-cosmic-debug/src/main/java/shkd/fi/er/plugin/formplugin/CommonExpenseItemBillFormPlugin.java @@ -19,7 +19,7 @@ import java.util.*; /** * 单据界面插件 * 付款事项根据费用项目关联付款事项约束费用项目 - * 根据付款事项编码查询对于的费用项目(级次大于1的付款事项按它的1级编码查询) + * 根据界面上流程事项编码查询对于的费用项目(级次大于1的付款事项按它的1级编码查询) */ public class CommonExpenseItemBillFormPlugin extends AbstractBillPlugIn implements BeforeF7SelectListener,Plugin { String entityId; @@ -55,7 +55,7 @@ public class CommonExpenseItemBillFormPlugin extends AbstractBillPlugIn implemen payment = BusinessDataServiceHelper.loadSingle(payID,"bos_assistantdata_detail"); }else { beforeF7SelectEvent.setCancel(true); - this.getView().showTipNotification("请先选择付款事项"); + this.getView().showTipNotification("请先选择流程事项"); } }else if (paymentItemList.contains(entityId)){ DynamicObject shkd_paymentitem = dataEntity.getDynamicObject("shkd_paymentitem"); @@ -64,7 +64,7 @@ public class CommonExpenseItemBillFormPlugin extends AbstractBillPlugIn implemen payment = BusinessDataServiceHelper.loadSingle(payID,"bos_assistantdata_detail"); }else { beforeF7SelectEvent.setCancel(true); - this.getView().showTipNotification("请先选择付款事项"); + this.getView().showTipNotification("请先选择流程事项"); } } if (payment != null){ @@ -101,7 +101,7 @@ public class CommonExpenseItemBillFormPlugin extends AbstractBillPlugIn implemen formShowParameter.getListFilterParameter().setFilter(qF); }else { beforeF7SelectEvent.setCancel(true); - this.getView().showTipNotification("该付款事项未关联费用项目"); + this.getView().showTipNotification("该流程事项未关联费用项目"); } }