|
|
|
@ -13,16 +13,17 @@ import com.glxp.sale.admin.entity.basic.BasicUnitMaintainEntity;
|
|
|
|
|
import com.glxp.sale.admin.entity.basic.BussinessTypeEntity;
|
|
|
|
|
import com.glxp.sale.admin.entity.basic.UdiInfoEntity;
|
|
|
|
|
import com.glxp.sale.admin.entity.info.CompanyEntity;
|
|
|
|
|
import com.glxp.sale.admin.entity.inout.OrderEntity;
|
|
|
|
|
import com.glxp.sale.admin.entity.inout.StockOrderEntity;
|
|
|
|
|
import com.glxp.sale.admin.entity.inout.WarehouseEntity;
|
|
|
|
|
import com.glxp.sale.admin.entity.inout.WarehouseUserEntity;
|
|
|
|
|
import com.glxp.sale.admin.entity.info.CompanyProductRelevanceEntity;
|
|
|
|
|
import com.glxp.sale.admin.entity.inout.*;
|
|
|
|
|
import com.glxp.sale.admin.entity.inventory.InvProductDetailEntity;
|
|
|
|
|
import com.glxp.sale.admin.entity.param.SystemParamConfigEntity;
|
|
|
|
|
import com.glxp.sale.admin.entity.udid.UdiEntity;
|
|
|
|
|
import com.glxp.sale.admin.exception.JsonException;
|
|
|
|
|
import com.glxp.sale.admin.req.basic.CompanyProductRelevanceRequest;
|
|
|
|
|
import com.glxp.sale.admin.req.basic.FilterUdiInfoRequest;
|
|
|
|
|
import com.glxp.sale.admin.req.info.FilterCompanyProductRelevanceRequest;
|
|
|
|
|
import com.glxp.sale.admin.req.inout.*;
|
|
|
|
|
import com.glxp.sale.admin.req.inventory.FilterInvProductDetailRequest;
|
|
|
|
|
import com.glxp.sale.admin.res.PageSimpleResponse;
|
|
|
|
|
import com.glxp.sale.admin.res.basic.BussinessTypResponse;
|
|
|
|
|
import com.glxp.sale.admin.res.basic.CompanyProductRelevanceResponse;
|
|
|
|
@ -45,6 +46,8 @@ import com.glxp.sale.common.enums.ResultEnum;
|
|
|
|
|
import com.glxp.sale.common.res.BaseResponse;
|
|
|
|
|
import com.glxp.sale.common.util.ResultVOUtils;
|
|
|
|
|
import org.apache.commons.lang3.StringUtils;
|
|
|
|
|
import org.slf4j.Logger;
|
|
|
|
|
import org.slf4j.LoggerFactory;
|
|
|
|
|
import org.springframework.beans.BeanUtils;
|
|
|
|
|
import org.springframework.validation.BindingResult;
|
|
|
|
|
import org.springframework.web.bind.annotation.*;
|
|
|
|
@ -54,10 +57,7 @@ import org.springframework.web.context.request.ServletRequestAttributes;
|
|
|
|
|
import javax.annotation.Resource;
|
|
|
|
|
import javax.servlet.http.HttpServletRequest;
|
|
|
|
|
import javax.validation.Valid;
|
|
|
|
|
import java.util.ArrayList;
|
|
|
|
|
import java.util.Date;
|
|
|
|
|
import java.util.List;
|
|
|
|
|
import java.util.Map;
|
|
|
|
|
import java.util.*;
|
|
|
|
|
import java.util.stream.Collectors;
|
|
|
|
|
|
|
|
|
|
@RestController
|
|
|
|
@ -93,6 +93,7 @@ public class WareHouseController {
|
|
|
|
|
CompanyProductRelevanceService companyProductRelevanceService;
|
|
|
|
|
@Resource
|
|
|
|
|
SystemParamConfigService systemParamConfigService;
|
|
|
|
|
Logger logger = LoggerFactory.getLogger(StockOrderController.class);
|
|
|
|
|
@Resource
|
|
|
|
|
StockOrderService stockOrderService;
|
|
|
|
|
@Resource
|
|
|
|
@ -280,6 +281,16 @@ public class WareHouseController {
|
|
|
|
|
return ResultVOUtils.success();
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
@AuthRuleAnnotation("")
|
|
|
|
|
@PostMapping("warehouse/inout/saveTempCode")
|
|
|
|
|
public BaseResponse saveCode(@RequestBody WarehouseEntity warehouseEntity) {
|
|
|
|
|
boolean b = codesTempService.update(warehouseEntity);
|
|
|
|
|
if (b)
|
|
|
|
|
return ResultVOUtils.success("修改成功");
|
|
|
|
|
else return ResultVOUtils.error(500, "修改失败!");
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
@AuthRuleAnnotation("")
|
|
|
|
|
@GetMapping("warehouse/inout/deleteCodesTempById")
|
|
|
|
|
public BaseResponse deleteCodesTempById(@RequestParam("id") Long id) {
|
|
|
|
@ -336,6 +347,132 @@ public class WareHouseController {
|
|
|
|
|
@Resource
|
|
|
|
|
InvPreInProductDetailService invPreInProductDetailService;
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
@AuthRuleAnnotation("")
|
|
|
|
|
@PostMapping("warehouse/inout/enterCode")
|
|
|
|
|
public BaseResponse addEndterCode(@RequestBody AddEnterCodeRequest addEnterCodeRequest, BindingResult bindingResult) {
|
|
|
|
|
|
|
|
|
|
if (StrUtil.isEmpty(addEnterCodeRequest.getCode())) {
|
|
|
|
|
return ResultVOUtils.error(500, "条码不能为空!");
|
|
|
|
|
}
|
|
|
|
|
String code = "";
|
|
|
|
|
String originCode = addEnterCodeRequest.getOriginCode();
|
|
|
|
|
if (originCode == null)
|
|
|
|
|
originCode = "";
|
|
|
|
|
code = originCode + addEnterCodeRequest.getCode();
|
|
|
|
|
String newCode = addEnterCodeRequest.getCode();
|
|
|
|
|
//重复判断
|
|
|
|
|
if (StrUtil.isNotEmpty(addEnterCodeRequest.getOriginCode())) {
|
|
|
|
|
String tempOriginCode = addEnterCodeRequest.getOriginCode();
|
|
|
|
|
if (tempOriginCode.endsWith("\u001D")) {
|
|
|
|
|
tempOriginCode = tempOriginCode.replace("\u001D", "");
|
|
|
|
|
}
|
|
|
|
|
UdiEntity originUdiEntity = FilterUdiUtils.getUdi(tempOriginCode);
|
|
|
|
|
if (StrUtil.isNotEmpty(newCode)) {
|
|
|
|
|
if (newCode.startsWith("10")) {
|
|
|
|
|
if (StrUtil.isNotEmpty(originUdiEntity.getBatchNo())) {
|
|
|
|
|
BaseResponse baseResponse = ResultVOUtils.error(501, "DI格式错误");
|
|
|
|
|
baseResponse.setData(originCode);
|
|
|
|
|
return baseResponse;
|
|
|
|
|
}
|
|
|
|
|
} else if (newCode.startsWith("17")) {
|
|
|
|
|
if (StrUtil.isNotEmpty(originUdiEntity.getExpireDate())) {
|
|
|
|
|
BaseResponse baseResponse = ResultVOUtils.error(501, "DI格式错误");
|
|
|
|
|
baseResponse.setData(originCode);
|
|
|
|
|
return baseResponse;
|
|
|
|
|
}
|
|
|
|
|
} else if (newCode.startsWith("11")) {
|
|
|
|
|
if (StrUtil.isNotEmpty(originUdiEntity.getProduceDate())) {
|
|
|
|
|
BaseResponse baseResponse = ResultVOUtils.error(501, "DI格式错误");
|
|
|
|
|
baseResponse.setData(originCode);
|
|
|
|
|
return baseResponse;
|
|
|
|
|
}
|
|
|
|
|
} else if (newCode.startsWith("21")) {
|
|
|
|
|
if (StrUtil.isNotEmpty(originUdiEntity.getSerialNo())) {
|
|
|
|
|
BaseResponse baseResponse = ResultVOUtils.error(501, "DI格式错误");
|
|
|
|
|
baseResponse.setData(originCode);
|
|
|
|
|
return baseResponse;
|
|
|
|
|
}
|
|
|
|
|
// else {
|
|
|
|
|
// return ResultVOUtils.success(code);
|
|
|
|
|
// }
|
|
|
|
|
} else {
|
|
|
|
|
BaseResponse baseResponse = ResultVOUtils.error(501, "DI格式错误");
|
|
|
|
|
baseResponse.setData(originCode);
|
|
|
|
|
return baseResponse;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
UdiEntity udiEntity = FilterUdiUtils.getUdi(code);
|
|
|
|
|
if (udiEntity == null) {
|
|
|
|
|
BaseResponse baseResponse = ResultVOUtils.error(501, "DI格式错误");
|
|
|
|
|
baseResponse.setData(originCode);
|
|
|
|
|
return baseResponse;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if (StrUtil.isNotEmpty(udiEntity.getBatchNo())) {
|
|
|
|
|
if (code.endsWith("10" + udiEntity.getBatchNo())) {
|
|
|
|
|
code = code + "\u001D";
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
UdiRelevanceResponse checkUdi = udiRelevanceService.selectByNameCode(udiEntity.getUdi());
|
|
|
|
|
if (checkUdi == null) {
|
|
|
|
|
return ResultVOUtils.error(500, "耗材字典不存在此产品!");
|
|
|
|
|
}
|
|
|
|
|
boolean checkSuccess = true;
|
|
|
|
|
//校验条码完整性
|
|
|
|
|
if (("是".equals(checkUdi.getScbssfbhph()) && StrUtil.isEmpty(udiEntity.getBatchNo()))) {
|
|
|
|
|
if (!checkUdi.isAllowNoBatch())
|
|
|
|
|
checkSuccess = false;
|
|
|
|
|
}
|
|
|
|
|
if (("是".equals(checkUdi.getScbssfbhscrq()) && StrUtil.isEmpty(udiEntity.getProduceDate()))
|
|
|
|
|
) {
|
|
|
|
|
if (!checkUdi.isAllowNoProduct())
|
|
|
|
|
checkSuccess = false;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if (("是".equals(checkUdi.getScbssfbhsxrq()) && StrUtil.isEmpty(udiEntity.getExpireDate()))
|
|
|
|
|
) {
|
|
|
|
|
if (!checkUdi.isAllowNoExpire())
|
|
|
|
|
checkSuccess = false;
|
|
|
|
|
}
|
|
|
|
|
if (("是".equals(checkUdi.getScbssfbhxlh()) && StrUtil.isEmpty(udiEntity.getSerialNo()))
|
|
|
|
|
) {
|
|
|
|
|
checkSuccess = false;
|
|
|
|
|
}
|
|
|
|
|
if (StrUtil.isNotEmpty(udiEntity.getSerialNo()) && udiEntity.getSerialNo().length() > 20) {
|
|
|
|
|
checkSuccess = false;
|
|
|
|
|
return ResultVOUtils.error(504, "序列号超出20位!");
|
|
|
|
|
}
|
|
|
|
|
if (StrUtil.isNotEmpty(udiEntity.getBatchNo()) && udiEntity.getBatchNo().length() > 20) {
|
|
|
|
|
checkSuccess = false;
|
|
|
|
|
return ResultVOUtils.error(504, "批次号超出20位!");
|
|
|
|
|
}
|
|
|
|
|
if (StrUtil.isEmpty(udiEntity.getSerialNo()) && StrUtil.isEmpty(udiEntity.getBatchNo())) {
|
|
|
|
|
checkSuccess = false;
|
|
|
|
|
}
|
|
|
|
|
if (checkSuccess) {
|
|
|
|
|
if (code.endsWith("\u001D")) {
|
|
|
|
|
code = code.replace("\u001D", "");
|
|
|
|
|
}
|
|
|
|
|
return ResultVOUtils.success(code);
|
|
|
|
|
} else {
|
|
|
|
|
if (newCode.startsWith("21")) {
|
|
|
|
|
BaseResponse baseResponse = ResultVOUtils.error(503, "当前条码未完成,是否继续添加?");
|
|
|
|
|
baseResponse.setData(code);
|
|
|
|
|
return baseResponse;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
BaseResponse baseResponse = ResultVOUtils.error(502, "校验未完成");
|
|
|
|
|
baseResponse.setData(code);
|
|
|
|
|
return baseResponse;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
//网页端数据上传调用接口
|
|
|
|
|
@AuthRuleAnnotation("")
|
|
|
|
|
@PostMapping("warehouse/inout/addOrderWeb")
|
|
|
|
@ -352,6 +489,20 @@ public class WareHouseController {
|
|
|
|
|
if (udiEntity == null)
|
|
|
|
|
return ResultVOUtils.error(500, "无效条码!");
|
|
|
|
|
|
|
|
|
|
if (StrUtil.isNotEmpty(addOrderRequest.getBatchNo())) {
|
|
|
|
|
udiEntity.setBatchNo(addOrderRequest.getBatchNo());
|
|
|
|
|
}
|
|
|
|
|
if (StrUtil.isNotEmpty(addOrderRequest.getProduceDate())) {
|
|
|
|
|
udiEntity.setProduceDate(addOrderRequest.getProduceDate());
|
|
|
|
|
}
|
|
|
|
|
if (StrUtil.isNotEmpty(addOrderRequest.getExpireDate())) {
|
|
|
|
|
udiEntity.setExpireDate(addOrderRequest.getExpireDate());
|
|
|
|
|
}
|
|
|
|
|
if (StrUtil.isNotEmpty(addOrderRequest.getSerialNo())) {
|
|
|
|
|
udiEntity.setSerialNo(addOrderRequest.getSerialNo());
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
if (StrUtil.isNotEmpty(udiEntity.getSerialNo()) && udiEntity.getSerialNo().length() > 20) {
|
|
|
|
|
return ResultVOUtils.error(500, "无效条码!序列号超出最大范围");
|
|
|
|
|
}
|
|
|
|
@ -365,6 +516,9 @@ public class WareHouseController {
|
|
|
|
|
if (StrUtil.isEmpty(udiEntity.getSerialNo()) && StrUtil.isEmpty(udiEntity.getBatchNo())) {
|
|
|
|
|
return ResultVOUtils.error(500, "批次号不能为空!");
|
|
|
|
|
}
|
|
|
|
|
BaseResponse checkOriginCodeRes = checkOriginCode(udiEntity);
|
|
|
|
|
if (checkOriginCodeRes != null)
|
|
|
|
|
return checkOriginCodeRes;
|
|
|
|
|
|
|
|
|
|
//过期提醒:
|
|
|
|
|
SystemParamConfigEntity expireParamConfigEntity = systemParamConfigService.selectByParamKey("expire_date_tip");
|
|
|
|
@ -417,8 +571,8 @@ public class WareHouseController {
|
|
|
|
|
return ResultVOUtils.error(500, "超出预验收库存数量");
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
} else {
|
|
|
|
|
if (invProductDetailEntity.getCount() < 1) {
|
|
|
|
|
}else {
|
|
|
|
|
if(invProductDetailEntity.getCount()<1){
|
|
|
|
|
return ResultVOUtils.error(500, "超出预验收库存数量");
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
@ -585,7 +739,7 @@ public class WareHouseController {
|
|
|
|
|
return null;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
//校验产品ID唯一性
|
|
|
|
|
public BaseResponse checkRelId(BussinessTypeEntity bussinessTypeEntity, WarehouseEntity warehouseEntity) {
|
|
|
|
|
|
|
|
|
|
String unitFk = null;
|
|
|
|
@ -615,6 +769,7 @@ public class WareHouseController {
|
|
|
|
|
return null;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
//校验供应商唯一性
|
|
|
|
|
public BaseResponse checkSupId(BussinessTypeEntity bussinessTypeEntity, WarehouseEntity warehouseEntity) {
|
|
|
|
|
String originSupId = ioTransInoutService.checkOriginExitSup(bussinessTypeEntity, warehouseEntity);
|
|
|
|
|
if (originSupId != null) {
|
|
|
|
@ -643,6 +798,63 @@ public class WareHouseController {
|
|
|
|
|
return null;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
//校验条码完整性
|
|
|
|
|
public BaseResponse checkCode(WarehouseEntity warehouseEntity) {
|
|
|
|
|
//校验条码的完整性
|
|
|
|
|
String errMsg = "";
|
|
|
|
|
UdiRelevanceResponse udiRelevanceResponse = udiRelevanceService.selectGroupById(warehouseEntity.getRelId());
|
|
|
|
|
if (StrUtil.isEmpty(warehouseEntity.getBatchNo()) &&
|
|
|
|
|
"是".equals(udiRelevanceResponse.getScbssfbhph()) && !udiRelevanceResponse.isAllowNoBatch()) {
|
|
|
|
|
errMsg = errMsg + ",批次号";
|
|
|
|
|
}
|
|
|
|
|
if (StrUtil.isEmpty(warehouseEntity.getProduceDate()) &&
|
|
|
|
|
"是".equals(udiRelevanceResponse.getScbssfbhscrq()) && !udiRelevanceResponse.isAllowNoProduct()) {
|
|
|
|
|
errMsg = errMsg + ",生产日期";
|
|
|
|
|
}
|
|
|
|
|
if (StrUtil.isEmpty(warehouseEntity.getExpireDate()) &&
|
|
|
|
|
"是".equals(udiRelevanceResponse.getScbssfbhsxrq()) && !udiRelevanceResponse.isAllowNoExpire()) {
|
|
|
|
|
errMsg = errMsg + ",失效日期";
|
|
|
|
|
}
|
|
|
|
|
if (StrUtil.isNotEmpty(errMsg)) {
|
|
|
|
|
BaseResponse baseResponse = ResultVOUtils.error(507, "请补齐" + errMsg.substring(1) + "");
|
|
|
|
|
baseResponse.setData(warehouseEntity);
|
|
|
|
|
return baseResponse;
|
|
|
|
|
}
|
|
|
|
|
return null;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public BaseResponse checkOriginCode(UdiEntity udiEntity) {
|
|
|
|
|
//校验条码的完整性
|
|
|
|
|
String errMsg = "";
|
|
|
|
|
UdiRelevanceResponse udiRelevanceResponse = udiRelevanceService.selectByNameCode(udiEntity.getUdi());
|
|
|
|
|
|
|
|
|
|
if (StrUtil.isEmpty(udiEntity.getBatchNo()) &&
|
|
|
|
|
"是".equals(udiRelevanceResponse.getScbssfbhph()) && !udiRelevanceResponse.isAllowNoBatch()) {
|
|
|
|
|
errMsg = errMsg + ",批次号";
|
|
|
|
|
}
|
|
|
|
|
if (StrUtil.isEmpty(udiEntity.getProduceDate()) &&
|
|
|
|
|
"是".equals(udiRelevanceResponse.getScbssfbhscrq()) && !udiRelevanceResponse.isAllowNoProduct()) {
|
|
|
|
|
errMsg = errMsg + ",生产日期";
|
|
|
|
|
}
|
|
|
|
|
if (StrUtil.isEmpty(udiEntity.getExpireDate()) &&
|
|
|
|
|
"是".equals(udiRelevanceResponse.getScbssfbhsxrq()) && !udiRelevanceResponse.isAllowNoExpire()) {
|
|
|
|
|
errMsg = errMsg + ",失效日期";
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
if (StrUtil.isEmpty(udiEntity.getSerialNo()) &&
|
|
|
|
|
"是".equals(udiRelevanceResponse.getScbssfbhxlh())) {
|
|
|
|
|
errMsg = errMsg + ",序列号";
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if (StrUtil.isNotEmpty(errMsg)) {
|
|
|
|
|
BaseResponse baseResponse = ResultVOUtils.error(507, "请补齐" + errMsg.substring(1) + "");
|
|
|
|
|
baseResponse.setData(udiEntity);
|
|
|
|
|
return baseResponse;
|
|
|
|
|
}
|
|
|
|
|
return null;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
@AuthRuleAnnotation("")
|
|
|
|
|
@PostMapping("/udiwms/addCode/updateBindSup")
|
|
|
|
@ -680,11 +892,11 @@ public class WareHouseController {
|
|
|
|
|
try {
|
|
|
|
|
String customerId = getCustomerId();
|
|
|
|
|
|
|
|
|
|
if (customerId.equals("110")) {
|
|
|
|
|
if(customerId.equals("110")){
|
|
|
|
|
Integer userId = customerService.getUserId();
|
|
|
|
|
postOrderRequest.setCustomerId(customerId);
|
|
|
|
|
postOrderRequest.setUserId(userId);
|
|
|
|
|
} else {
|
|
|
|
|
}else {
|
|
|
|
|
postOrderRequest.setUserId(null);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|