From 8eb663faf99dd7229b0dbffd20f0b6e81d0eef08 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E6=9D=8E=E8=B4=B5=E5=BC=BA?= Date: Mon, 17 Mar 2025 10:10:32 +0800 Subject: [PATCH] =?UTF-8?q?=E7=89=A9=E6=96=99=E6=96=B0=E5=A2=9E=E5=88=86?= =?UTF-8?q?=E7=B1=BB=E5=85=B3=E8=81=94=E5=85=B3=E7=B3=BB=E6=8C=89=E9=92=AE?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../MaterialClickSortingOperation.java | 63 +++++++++++++++++++ 1 file changed, 63 insertions(+) create mode 100644 main/java/shkd/repc/recon/operate/MaterialClickSortingOperation.java diff --git a/main/java/shkd/repc/recon/operate/MaterialClickSortingOperation.java b/main/java/shkd/repc/recon/operate/MaterialClickSortingOperation.java new file mode 100644 index 0000000..6b798ad --- /dev/null +++ b/main/java/shkd/repc/recon/operate/MaterialClickSortingOperation.java @@ -0,0 +1,63 @@ +package shkd.repc.recon.operate; + +import kd.bos.dataentity.entity.DynamicObject; +import kd.bos.dataentity.utils.StringUtils; +import kd.bos.entity.operate.result.OperateErrorInfo; +import kd.bos.entity.plugin.AbstractOperationServicePlugIn; +import kd.bos.entity.plugin.args.AfterOperationArgs; +import kd.bos.entity.validate.ErrorLevel; +import kd.bos.orm.query.QCP; +import kd.bos.orm.query.QFilter; +import kd.bos.servicehelper.BusinessDataServiceHelper; +import kd.bos.servicehelper.operation.SaveServiceHelper; +import kd.sdk.plugin.Plugin; +import shkd.repc.recon.formplugin.ContractMaterialImportPlugin; + +/** + * 单据操作插件 + * 一键物料待分类-自用 + */ +public class MaterialClickSortingOperation extends AbstractOperationServicePlugIn implements Plugin { + + /** + * 操作标识 + */ + private static final String KEY_CLICK_SORTING = "clicksorting"; + + @Override + public void afterExecuteOperationTransaction(AfterOperationArgs e) { + super.afterExecuteOperationTransaction(e); + String operationKey = e.getOperationKey(); + if (StringUtils.equals(KEY_CLICK_SORTING, operationKey)) { + DynamicObject[] dataEntities = e.getDataEntities(); + if (dataEntities != null && dataEntities.length >= 1) { + StringBuilder message = new StringBuilder(); + for (DynamicObject dataEntity : dataEntities) { + long id = dataEntity.getLong("id"); + QFilter qFilter = new QFilter("material.id", QCP.equals, id); + DynamicObject dynamicObject = BusinessDataServiceHelper.loadSingle("bd_materialgroupdetail", qFilter.toArray()); + if (dynamicObject==null){ + DynamicObject materialType = BusinessDataServiceHelper.newDynamicObject("bd_materialgroupdetail"); + //分类标准 + DynamicObject standard = BusinessDataServiceHelper.loadSingle("bd_materialgroupstandard", (new QFilter("number", QCP.equals, "JBFLBZ")).toArray()); + materialType.set("standard",standard); + //分类 + DynamicObject group=BusinessDataServiceHelper.loadSingle("bd_materialgroup",(new QFilter("number", QCP.equals, "waitgroup")).toArray()); + materialType.set("group",group); + //物料 + materialType.set("material",id); + SaveServiceHelper.save(new DynamicObject[]{materialType}); + message.append("新增【").append(dataEntity.getString("name")).append("】待分类映射表。\n"); + } + if (message.length()!=0){ + OperateErrorInfo operateErrorInfo = new OperateErrorInfo(); + operateErrorInfo.setMessage(String.valueOf(message)); + operateErrorInfo.setErrorLevel(ErrorLevel.Error.name()); + operateErrorInfo.setPkValue(dataEntity.getPkValue()); + this.operationResult.addErrorInfo(operateErrorInfo); + } + } + } + } + } +} \ No newline at end of file