feat: 入库流程 属性字段对应
This commit is contained in:
+3
-3
@@ -365,9 +365,9 @@ public class SarStandardsInfoServiceImpl extends ServiceImpl<SarStandardsInfoDao
|
|||||||
}
|
}
|
||||||
//编写预警信息
|
//编写预警信息
|
||||||
// writeWarnings(sarStandardsInfoEO);
|
// writeWarnings(sarStandardsInfoEO);
|
||||||
updateCiteStand(sarStandardsInfoEO, null, "DTBJH", "BDTBZBH");
|
// updateCiteStand(sarStandardsInfoEO, null, "DTBJH", "BDTBZBH");
|
||||||
updateCiteStand(sarStandardsInfoEO, null, "YYBJ", "BYYBJ");
|
// updateCiteStand(sarStandardsInfoEO, null, "YYBJ", "BYYBJ");
|
||||||
updateRelateStand(sarStandardsInfoEO, "CBBH");
|
// updateRelateStand(sarStandardsInfoEO, "CBBH");
|
||||||
// 根据代替标准号修改被代替的标准的状态 修改为已修订状态
|
// 根据代替标准号修改被代替的标准的状态 修改为已修订状态
|
||||||
replaseStandState(sarStandardsInfoEO);
|
replaseStandState(sarStandardsInfoEO);
|
||||||
// 处理属性表信息
|
// 处理属性表信息
|
||||||
|
|||||||
+1
-1
@@ -257,7 +257,7 @@ public class SarUpdLogServiceImpl extends ServiceImpl<SarUpdLogDao, SarUpdLog> i
|
|||||||
sarUpdLogEO.setSarId(sarId);
|
sarUpdLogEO.setSarId(sarId);
|
||||||
sarUpdLogEO.setSarType(sarType);
|
sarUpdLogEO.setSarType(sarType);
|
||||||
sarUpdLogEO.setCreationTime(new Date());
|
sarUpdLogEO.setCreationTime(new Date());
|
||||||
sarUpdLogEO.setCreationUser(LoginUserUtil.getUserId());
|
sarUpdLogEO.setCreationUser(LoginUserUtil.getUserId() == null ? "" : LoginUserUtil.getUserId());
|
||||||
sarUpdLogEO.setContent(content);
|
sarUpdLogEO.setContent(content);
|
||||||
dao.insert(sarUpdLogEO);
|
dao.insert(sarUpdLogEO);
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -51,7 +51,7 @@
|
|||||||
SELECT SEQ_SAR_UPD_LOG.NEXTVAL FROM DUAL
|
SELECT SEQ_SAR_UPD_LOG.NEXTVAL FROM DUAL
|
||||||
</selectKey> -->
|
</selectKey> -->
|
||||||
insert into SAR_UPD_LOG(<include refid="Base_Column_List" />)
|
insert into SAR_UPD_LOG(<include refid="Base_Column_List" />)
|
||||||
values (#{id, jdbcType=VARCHAR}, #{sarType, jdbcType=VARCHAR}, #{sarId, jdbcType=VARCHAR}, #{content, jdbcType=CLOB}, #{creationTime, jdbcType=TIMESTAMP})
|
values (#{id, jdbcType=VARCHAR}, #{sarType, jdbcType=VARCHAR}, #{sarId, jdbcType=VARCHAR}, #{content, jdbcType=CLOB}, #{creationTime, jdbcType=TIMESTAMP},#{creationUser, jdbcType=VARCHAR})
|
||||||
</insert>
|
</insert>
|
||||||
|
|
||||||
<!-- 动态插入记录 主键是序列 -->
|
<!-- 动态插入记录 主键是序列 -->
|
||||||
|
|||||||
Reference in New Issue
Block a user