|
|
|
@ -1,5 +1,6 @@
|
|
|
|
|
package com.glxp.api.admin.service.inventory.impl;
|
|
|
|
|
|
|
|
|
|
import cn.hutool.core.bean.BeanUtil;
|
|
|
|
|
import cn.hutool.core.collection.CollUtil;
|
|
|
|
|
import cn.hutool.core.util.StrUtil;
|
|
|
|
|
import com.github.pagehelper.PageHelper;
|
|
|
|
@ -8,6 +9,7 @@ import com.glxp.api.admin.dao.inventory.DeviceCollectOrderDetailDao;
|
|
|
|
|
import com.glxp.api.admin.dao.inventory.InvProductDao;
|
|
|
|
|
import com.glxp.api.admin.dao.inventory.InvProductDetailDao;
|
|
|
|
|
import com.glxp.api.admin.entity.basic.UdiEntity;
|
|
|
|
|
import com.glxp.api.admin.entity.inout.WarehouseEntity;
|
|
|
|
|
import com.glxp.api.admin.entity.inventory.DeviceCollectOrderDetailEntity;
|
|
|
|
|
import com.glxp.api.admin.entity.inventory.InvProductDetailEntity;
|
|
|
|
|
import com.glxp.api.admin.entity.inventory.InvProductEntity;
|
|
|
|
@ -49,10 +51,15 @@ public class DeviceCollectOrderDetailServiceImpl implements DeviceCollectOrderDe
|
|
|
|
|
if (null == detailRequest) {
|
|
|
|
|
return Collections.emptyList();
|
|
|
|
|
}
|
|
|
|
|
if (null == detailRequest.getPage() && null == detailRequest.getLimit()) {
|
|
|
|
|
if (null != detailRequest.getPage() && null != detailRequest.getLimit()) {
|
|
|
|
|
PageHelper.offsetPage((detailRequest.getPage() - 1) * detailRequest.getLimit(), detailRequest.getLimit());
|
|
|
|
|
}
|
|
|
|
|
return deviceCollectOrderDetailDao.filterList(detailRequest);
|
|
|
|
|
List<DeviceCollectOrderDetailResponse> list = deviceCollectOrderDetailDao.filterList(detailRequest);
|
|
|
|
|
//设置是否可以自定义序列号标识
|
|
|
|
|
list.forEach(item -> {
|
|
|
|
|
item.setEditSerialNo(StrUtil.isBlank(item.getCode()) ? true : false);
|
|
|
|
|
});
|
|
|
|
|
return list;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
@Override
|
|
|
|
@ -60,11 +67,24 @@ public class DeviceCollectOrderDetailServiceImpl implements DeviceCollectOrderDe
|
|
|
|
|
if (null == addDetailRequest || StrUtil.isBlank(addDetailRequest.getOrderIdFk())) {
|
|
|
|
|
return ResultVOUtils.error(ResultEnum.PARAM_VERIFY_FALL);
|
|
|
|
|
}
|
|
|
|
|
if (StrUtil.isBlank(addDetailRequest.getCode()) || CollUtil.isEmpty(addDetailRequest.getInvProductIds())) {
|
|
|
|
|
if (StrUtil.isBlank(addDetailRequest.getCode()) && CollUtil.isEmpty(addDetailRequest.getInvProductIds())) {
|
|
|
|
|
return ResultVOUtils.error(ResultEnum.PARAM_VERIFY_FALL, "请添加领用设备!");
|
|
|
|
|
}
|
|
|
|
|
if (StrUtil.isNotBlank(addDetailRequest.getCode())) {
|
|
|
|
|
//通过条码添加
|
|
|
|
|
//解析此条码,判断此条码是否已经存在
|
|
|
|
|
UdiEntity udi = FilterUdiUtils.getUdi(addDetailRequest.getCode());
|
|
|
|
|
if (StrUtil.isNotBlank(udi.getSerialNo())) {
|
|
|
|
|
//条码为完整码,查询此条码在当前领用记录中是否存在,如果存在则无法添加
|
|
|
|
|
FilterDeviceCollectOrderDetailRequest detailRequest = new FilterDeviceCollectOrderDetailRequest();
|
|
|
|
|
detailRequest.setOrderIdFk(addDetailRequest.getOrderIdFk());
|
|
|
|
|
detailRequest.setCode(addDetailRequest.getCode());
|
|
|
|
|
List<DeviceCollectOrderDetailResponse> list = deviceCollectOrderDetailDao.filterList(detailRequest);
|
|
|
|
|
if (CollUtil.isNotEmpty(list)) {
|
|
|
|
|
return ResultVOUtils.error(ResultEnum.DATA_REPEAT, "条码重复!");
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
//设置库存详情查询参数
|
|
|
|
|
FilterInvProductDetailRequest invProductDetailRequest = new FilterInvProductDetailRequest();
|
|
|
|
|
invProductDetailRequest.setCode(addDetailRequest.getCode());
|
|
|
|
@ -132,7 +152,8 @@ public class DeviceCollectOrderDetailServiceImpl implements DeviceCollectOrderDe
|
|
|
|
|
deviceCollectOrderDetailDao.insert(orderDetail);
|
|
|
|
|
}
|
|
|
|
|
} else {
|
|
|
|
|
getDeviceCollectOrderDetailEntity(addDetailRequest.getOrderIdFk(), code, invProductDetailEntity);
|
|
|
|
|
DeviceCollectOrderDetailEntity orderDetail = getDeviceCollectOrderDetailEntity(addDetailRequest.getOrderIdFk(), code, invProductDetailEntity);
|
|
|
|
|
deviceCollectOrderDetailDao.insert(orderDetail);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
@ -179,6 +200,17 @@ public class DeviceCollectOrderDetailServiceImpl implements DeviceCollectOrderDe
|
|
|
|
|
if (null == detailEntity || null == detailEntity.getId()) {
|
|
|
|
|
return ResultVOUtils.error(ResultEnum.PARAM_VERIFY_FALL);
|
|
|
|
|
}
|
|
|
|
|
//判断新的条码是否重复
|
|
|
|
|
WarehouseEntity warehouseEntity = new WarehouseEntity();
|
|
|
|
|
BeanUtil.copyProperties(detailEntity, warehouseEntity);
|
|
|
|
|
String code = FilterUdiUtils.transGlxpHasSerStr(warehouseEntity);
|
|
|
|
|
FilterDeviceCollectOrderDetailRequest detailRequest = new FilterDeviceCollectOrderDetailRequest();
|
|
|
|
|
detailRequest.setOrderIdFk(detailEntity.getOrderIdFk());
|
|
|
|
|
detailRequest.setCode(code);
|
|
|
|
|
List<DeviceCollectOrderDetailResponse> list = deviceCollectOrderDetailDao.filterList(detailRequest);
|
|
|
|
|
if (CollUtil.isNotEmpty(list)) {
|
|
|
|
|
return ResultVOUtils.error(ResultEnum.DATA_REPEAT, "条码重复!");
|
|
|
|
|
}
|
|
|
|
|
deviceCollectOrderDetailDao.updateByPrimaryKey(detailEntity);
|
|
|
|
|
return ResultVOUtils.success("更新成功!");
|
|
|
|
|
}
|
|
|
|
@ -188,9 +220,9 @@ public class DeviceCollectOrderDetailServiceImpl implements DeviceCollectOrderDe
|
|
|
|
|
if (null == detailRequest.getId() && StrUtil.isBlank(detailRequest.getOrderIdFk())) {
|
|
|
|
|
return ResultVOUtils.error(ResultEnum.PARAM_VERIFY_FALL);
|
|
|
|
|
}
|
|
|
|
|
if (null == detailRequest.getId()) {
|
|
|
|
|
if (null != detailRequest.getId()) {
|
|
|
|
|
deviceCollectOrderDetailDao.deleteByPrimaryKey(detailRequest.getId());
|
|
|
|
|
} else if (null == detailRequest.getOrderIdFk()) {
|
|
|
|
|
} else if (StrUtil.isNotBlank(detailRequest.getOrderIdFk())) {
|
|
|
|
|
deviceCollectOrderDetailDao.deleteByOrderId(detailRequest.getOrderIdFk());
|
|
|
|
|
}
|
|
|
|
|
return ResultVOUtils.success("删除成功!");
|
|
|
|
|