diff --git a/laws-modules/src/main/java/com/jero/modules/laws/common/service/impl/LawsCommonServiceImpl.java b/laws-modules/src/main/java/com/jero/modules/laws/common/service/impl/LawsCommonServiceImpl.java index 08653c69..7dafbac0 100644 --- a/laws-modules/src/main/java/com/jero/modules/laws/common/service/impl/LawsCommonServiceImpl.java +++ b/laws-modules/src/main/java/com/jero/modules/laws/common/service/impl/LawsCommonServiceImpl.java @@ -694,17 +694,6 @@ public class LawsCommonServiceImpl implements ILawsCommonService { // 操作数据库进行新增数据 lawsCommonMapper.commonAdd(tableName, fieldsBuilder.toString(), valuesBuilder.toString()); - // 国标外表增加入库记录 - if (module.equals(TableNameEnum.DOMESTIC_REGULATIONS.getValue()) - || module.equals(TableNameEnum.FOREIGN_REGULATIONS.getValue())) { - LoginUser loginUser = (LoginUser) SecurityUtils.getSubject().getPrincipal(); - SimpleDateFormat dateFormat = new SimpleDateFormat("yyyy-MM-dd HH:mm:ss"); - String now = dateFormat.format(new Date()); - String content = loginUser.calcNameWorkNo() + " " + now + " 入库" + - standardNumber + "《" + standardName + "》"; - lawsUpdateRecordService.addRecord(standardNumber, content); - } - // 对标准体系做处理 lawsNodeRelationService.addRelation(standardSystem, standardNumber, id);