From 3f83b9e23175d07de4060e27491f04e216d30610 Mon Sep 17 00:00:00 2001 From: caihaohan Date: Fri, 2 Feb 2024 15:45:21 +0800 Subject: [PATCH] =?UTF-8?q?fix:=2081153=20=E6=96=87=E6=A1=A3=E5=8A=A8?= =?UTF-8?q?=E6=80=81-=E6=97=A0=E6=B3=95=E5=8C=BA=E5=88=86=E4=B8=89?= =?UTF-8?q?=E4=B8=AA=E6=A0=87=E5=87=86=E5=BA=93=E7=9A=84=E6=95=B0=E6=8D=AE?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../common/service/impl/LawsCommonServiceImpl.java | 11 ----------- 1 file changed, 11 deletions(-) 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);