|
|
|
@ -45,9 +45,11 @@ import com.glxp.api.util.OrderNoTypeBean;
|
|
|
|
|
import com.glxp.api.util.udi.FilterUdiUtils;
|
|
|
|
|
import lombok.extern.slf4j.Slf4j;
|
|
|
|
|
import org.apache.ibatis.annotations.Param;
|
|
|
|
|
import org.apache.regexp.RE;
|
|
|
|
|
import org.springframework.context.annotation.Lazy;
|
|
|
|
|
import org.springframework.stereotype.Service;
|
|
|
|
|
import com.baomidou.mybatisplus.extension.service.impl.ServiceImpl;
|
|
|
|
|
import org.springframework.transaction.annotation.Transactional;
|
|
|
|
|
|
|
|
|
|
import javax.annotation.Resource;
|
|
|
|
|
import java.util.ArrayList;
|
|
|
|
@ -173,8 +175,8 @@ public class InvCountOrderService extends ServiceImpl<InvCountOrderMapper, InvCo
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
public BaseResponse submitAudit(String id) {
|
|
|
|
|
InvCountOrderEntity invCountOrder = invCountOrderDao.selectByOrderId(id);
|
|
|
|
|
public BaseResponse submitAudit(String orderId) {
|
|
|
|
|
InvCountOrderEntity invCountOrder = invCountOrderDao.selectByOrderId(orderId);
|
|
|
|
|
if (null == invCountOrder) {
|
|
|
|
|
return ResultVOUtils.error(ResultEnum.DATA_ERROR, "单据不存在");
|
|
|
|
|
}
|
|
|
|
@ -186,11 +188,6 @@ public class InvCountOrderService extends ServiceImpl<InvCountOrderMapper, InvCo
|
|
|
|
|
if (detailCount == 0) {
|
|
|
|
|
return ResultVOUtils.error(ResultEnum.DATA_ERROR, "请先选择盘点产品");
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// Long codesCount = invCountCodesDao.countByOrderIdFk(invCountOrder.getOrderId());
|
|
|
|
|
// if (codesCount == 0) {
|
|
|
|
|
// return ResultVOUtils.error(ResultEnum.DATA_ERROR, "请扫描需要盘点的产品");
|
|
|
|
|
// }
|
|
|
|
|
//更新状态
|
|
|
|
|
invCountOrder.setStatus(1);
|
|
|
|
|
invCountOrder.setUpdateTime(new Date());
|
|
|
|
@ -239,7 +236,7 @@ public class InvCountOrderService extends ServiceImpl<InvCountOrderMapper, InvCo
|
|
|
|
|
return ResultVOUtils.success();
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
@Transactional(rollbackFor = Exception.class)
|
|
|
|
|
public BaseResponse saveCountOrderForPDA(FilterInvCountOrderSaveRequest filterInvCountOrderSaveRequest) {
|
|
|
|
|
InvCountOrderEntity invCountOrder = invCountOrderDao.selectByOrderId(filterInvCountOrderSaveRequest.getOrderId());
|
|
|
|
|
if (null == invCountOrder) {
|
|
|
|
@ -251,12 +248,18 @@ public class InvCountOrderService extends ServiceImpl<InvCountOrderMapper, InvCo
|
|
|
|
|
//解析条码,修改单据详情,修改单据状态为待审核
|
|
|
|
|
invCountOrder.setStatus(1);
|
|
|
|
|
invCountOrder.setUpdateTime(new Date());
|
|
|
|
|
|
|
|
|
|
invCountCodesDao.deleteByOrderId(invCountOrder.getOrderId());
|
|
|
|
|
List<InvCountCodesEntity> countCodeList = filterInvCountOrderSaveRequest.getCountCodeList();
|
|
|
|
|
for (InvCountCodesEntity invCountCodes : countCodeList) {
|
|
|
|
|
invCountCodesService.addCode(invCountCodes);
|
|
|
|
|
if (CollUtil.isNotEmpty(countCodeList)) {
|
|
|
|
|
invCountCodesDao.insertBatch(countCodeList);
|
|
|
|
|
}
|
|
|
|
|
submitAudit(invCountOrder.getId().toString());
|
|
|
|
|
return ResultVOUtils.success();
|
|
|
|
|
invCountOrderDetailDao.deleteByOrderId(invCountOrder.getOrderId());
|
|
|
|
|
List<InvCountOrderDetailEntity> orderDetailEntities = filterInvCountOrderSaveRequest.getOrderDetailEntities();
|
|
|
|
|
if (CollUtil.isNotEmpty(orderDetailEntities)) {
|
|
|
|
|
invCountOrderDetailDao.insertBatch(orderDetailEntities);
|
|
|
|
|
}
|
|
|
|
|
return submitAudit(invCountOrder.getOrderId());
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|