物料新增分类关联关系按钮

This commit is contained in:
李贵强 2025-03-17 10:10:32 +08:00
parent da903c9729
commit 8eb663faf9
1 changed files with 63 additions and 0 deletions

View File

@ -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);
}
}
}
}
}
}