1.同步货位功能代码

master
x_z 2 years ago
parent f9e324b352
commit bee4498fa8

@ -87,4 +87,20 @@ public interface InvSpaceDao extends BaseMapperPlus<InvSpaceDao, InvSpace, InvSp
* @return * @return
*/ */
List<InvSpace> selectByInvCode(@Param("invStorageCode") String invStorageCode, @Param("invWarehouseCode") String invWarehouseCode, @Param("invSpaceCode") String invSpaceCode); List<InvSpace> selectByInvCode(@Param("invStorageCode") String invStorageCode, @Param("invWarehouseCode") String invWarehouseCode, @Param("invSpaceCode") String invSpaceCode);
/**
*
*
* @param invSpace
* @return
*/
List<InvSpace> selectExistByName(InvSpace invSpace);
/**
*
*
* @param invCode
* @return
*/
String getMaxSpaceCode(@Param("invCode") String invCode);
} }

@ -92,6 +92,7 @@ public class SupCertRemindMsgResponse {
* *
*/ */
private String certName; private String certName;
/** /**
* *
*/ */

@ -53,6 +53,15 @@ public class InvSpaceServiceImpl implements InvSpaceService {
if (!"success".equals(result)) { if (!"success".equals(result)) {
return ResultVOUtils.error(ResultEnum.PARAM_VERIFY_FALL, result); return ResultVOUtils.error(ResultEnum.PARAM_VERIFY_FALL, result);
} }
//获取当前仓库下的最大货位编码
String maxSpaceCode = invSpaceDao.getMaxSpaceCode(invSpace.getInvWarehouseCode());
if (StrUtil.isBlank(maxSpaceCode)) {
maxSpaceCode = "0000";
}
String spaceCode = getSpaceCode(maxSpaceCode);
invSpace.setCode(spaceCode);
Date date = new Date(); Date date = new Date();
AuthAdmin user = customerService.getUserBean(); AuthAdmin user = customerService.getUserBean();
invSpace.setCreateTime(date); invSpace.setCreateTime(date);
@ -71,8 +80,8 @@ public class InvSpaceServiceImpl implements InvSpaceService {
*/ */
private static BaseResponse verifySpaceParams(InvSpace invSpace) { private static BaseResponse verifySpaceParams(InvSpace invSpace) {
//校验参数 //校验参数
if (StrUtil.isBlank(invSpace.getCode()) || StrUtil.isBlank(invSpace.getName())) { if (StrUtil.isBlank(invSpace.getName())) {
return ResultVOUtils.error(ResultEnum.PARAM_VERIFY_FALL, "货位名称和货位号不能为空!"); return ResultVOUtils.error(ResultEnum.PARAM_VERIFY_FALL, "货位名称不能为空!");
} }
if (StrUtil.isBlank(invSpace.getInvStorageCode()) || StrUtil.isBlank(invSpace.getInvWarehouseCode())) { if (StrUtil.isBlank(invSpace.getInvStorageCode()) || StrUtil.isBlank(invSpace.getInvWarehouseCode())) {
return ResultVOUtils.error(ResultEnum.PARAM_VERIFY_FALL, "请指定所属仓库和分库!"); return ResultVOUtils.error(ResultEnum.PARAM_VERIFY_FALL, "请指定所属仓库和分库!");
@ -142,22 +151,8 @@ public class InvSpaceServiceImpl implements InvSpaceService {
* @return * @return
*/ */
public String verifyExist(InvSpace invSpace) { public String verifyExist(InvSpace invSpace) {
//先检查货位号是否重复 //判断此货位名称是否重复
List<InvSpace> invSpaces = invSpaceDao.selectByInvCode(invSpace.getInvStorageCode(), invSpace.getInvWarehouseCode(), invSpace.getCode()); List<InvSpace> list = invSpaceDao.selectExistByName(invSpace);
if (CollUtil.isNotEmpty(invSpaces)) {
//判断ID是否为空如果为空表示数据为新增货位是重复添加-
if (null == invSpace.getId()) {
return "货位信息已存在";
}
//此分库下货位号重复判断ID是否与当前货位相同
for (InvSpace space : invSpaces) {
if (!space.getId().equals(invSpace.getId())) {
return "货位信息已存在";
}
}
}
List<InvSpace> list = invSpaceDao.selectExist(invSpace);
if (CollUtil.isNotEmpty(list)) { if (CollUtil.isNotEmpty(list)) {
if (null == invSpace.getId()) { if (null == invSpace.getId()) {
return "货位信息已存在"; return "货位信息已存在";
@ -171,4 +166,16 @@ public class InvSpaceServiceImpl implements InvSpaceService {
return "success"; return "success";
} }
/**
* +14
*
* @param maxSpaceCode
* @return
*/
public String getSpaceCode(String maxSpaceCode) {
Long l = Long.parseLong(maxSpaceCode) + 1L;
return String.format("%04d", l);
}
} }

@ -382,4 +382,30 @@
</if> </if>
</where> </where>
</select> </select>
<select id="selectExistByName" resultMap="BaseResultMap">
select
<include refid="Base_Column_List" />
from auth_space
<where>
<if test="invStorageCode != null and invStorageCode != ''">
AND invStorageCode = #{invStorageCode}
</if>
<if test="invWarehouseCode != null and invWarehouseCode != ''">
AND invWarehouseCode = #{invWarehouseCode}
</if>
<if test="name != null and name != ''">
AND name = #{name}
</if>
</where>
</select>
<select id="getMaxSpaceCode" resultType="java.lang.String">
select max(code) from auth_space
<where>
<if test="invCode != null and invCode != ''">
and invWarehouseCode = #{invCode}
</if>
</where>
</select>
</mapper> </mapper>
Loading…
Cancel
Save