|
|
|
@ -116,7 +116,10 @@ public class PurOrderController {
|
|
|
|
|
if (purOrderRequest.getStatus() == null) {
|
|
|
|
|
purOrderRequest.setStatus(11); //查询未审核和草稿状态
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
String customerId = customerService.getCustomerId();
|
|
|
|
|
if (!customerId.equals("110")) {
|
|
|
|
|
purOrderRequest.setSupId(customerId);
|
|
|
|
|
}
|
|
|
|
|
List<PurOrderResponse> purApplyEntities = purOrderService.queryPageList(purOrderRequest);
|
|
|
|
|
PageInfo<PurOrderResponse> pageInfo;
|
|
|
|
|
pageInfo = new PageInfo<>(purApplyEntities);
|
|
|
|
@ -156,7 +159,7 @@ public class PurOrderController {
|
|
|
|
|
purOrderEntity.setUpdateTime(new Date());
|
|
|
|
|
purOrderService.update(purOrderEntity);
|
|
|
|
|
|
|
|
|
|
if(postPurOrderRequest.isAutoPurchase() && StrUtil.isNotEmpty(postPurOrderRequest.getTargetBillAction())){
|
|
|
|
|
if (postPurOrderRequest.isAutoPurchase() && StrUtil.isNotEmpty(postPurOrderRequest.getTargetBillAction())) {
|
|
|
|
|
String billNo = "";
|
|
|
|
|
List<PurOrderDetailEntity> purOrderDetailEntities = purOrderDetailService.findByOrderId(purOrderEntity.getId() + "");
|
|
|
|
|
|
|
|
|
@ -164,61 +167,59 @@ public class PurOrderController {
|
|
|
|
|
Map<String, List<PurOrderDetailEntity>> map = purOrderDetailEntities.stream().collect(Collectors.groupingBy(PurOrderDetailEntity::getSupId));
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
if (CollUtil.isNotEmpty(purOrderDetailEntities) && postPurOrderRequest.isAutoPurchase() == true
|
|
|
|
|
&& StrUtil.isNotEmpty(postPurOrderRequest.getTargetBillAction())) {
|
|
|
|
|
|
|
|
|
|
if (CollUtil.isNotEmpty(purOrderDetailEntities) && postPurOrderRequest.isAutoPurchase() == true
|
|
|
|
|
&& StrUtil.isNotEmpty(postPurOrderRequest.getTargetBillAction())) {
|
|
|
|
|
|
|
|
|
|
for (Map.Entry<String, List<PurOrderDetailEntity>> m : map.entrySet()) {
|
|
|
|
|
//生产单据表信息
|
|
|
|
|
IoOrderEntity ioOrderEntity = new IoOrderEntity();
|
|
|
|
|
ioOrderEntity.setBillNo(gennerOrderUtils.createScOrderNo(new OrderNoTypeBean(Constant.SCAN_ORDER, "yyyyMMdd")));
|
|
|
|
|
ioOrderEntity.setCorpOrderId(CustomUtil.getDate());
|
|
|
|
|
ioOrderEntity.setMainAction(ConstantType.TYPE_PUT);
|
|
|
|
|
ioOrderEntity.setAction(postPurOrderRequest.getTargetBillAction());
|
|
|
|
|
ioOrderEntity.setFromCorp(m.getKey());
|
|
|
|
|
ioOrderEntity.setFromType(ConstantStatus.FROM_Order);
|
|
|
|
|
ioOrderEntity.setStatus(1);
|
|
|
|
|
ioOrderEntity.setDealStatus(1);
|
|
|
|
|
ioOrderEntity.setOrderType(1);
|
|
|
|
|
ioOrderEntity.setCreateTime(new Date());
|
|
|
|
|
ioOrderEntity.setCreateUser(postPurOrderRequest.getPurOrderEntity().getAuditUser());
|
|
|
|
|
ioOrderEntity.setUpdateTime(new Date());
|
|
|
|
|
ioOrderEntity.setUpdateUser(postPurOrderRequest.getPurOrderEntity().getAuditUser());
|
|
|
|
|
ioOrderEntity.setCustomerId("110");
|
|
|
|
|
ioOrderEntity.setDeptCode(purOrderEntity.getDeptCode());
|
|
|
|
|
ioOrderEntity.setInvCode(purOrderEntity.getInvCode());
|
|
|
|
|
ioOrderService.insertOrder(ioOrderEntity);
|
|
|
|
|
billNo += ioOrderEntity.getBillNo() + ",";
|
|
|
|
|
//插入业务单表
|
|
|
|
|
for (PurOrderDetailEntity obj : m.getValue()) {
|
|
|
|
|
BasicProductsEntity basicProductsEntity = purOrderDetailService.selectIoOrderDetailBiz(obj.getId());
|
|
|
|
|
IoOrderDetailBizEntity ioOrderDetailBizEntity = new IoOrderDetailBizEntity();
|
|
|
|
|
ioOrderDetailBizEntity.setOrderIdFk(ioOrderEntity.getBillNo());
|
|
|
|
|
ioOrderDetailBizEntity.setBindRlFk(Long.valueOf(obj.getProductId()));
|
|
|
|
|
ioOrderDetailBizEntity.setCount(obj.getCount());
|
|
|
|
|
ioOrderDetailBizEntity.setUuidFk(basicProductsEntity.getUuid());
|
|
|
|
|
ioOrderDetailBizEntity.setNameCode(basicProductsEntity.getNameCode());
|
|
|
|
|
ioOrderDetailBizEntity.setCoName(basicProductsEntity.getCpmctymc());
|
|
|
|
|
ioOrderDetailBizEntity.setCertCode(basicProductsEntity.getZczbhhzbapzbh());
|
|
|
|
|
ioOrderDetailBizEntity.setYlqxzcrbarmc(basicProductsEntity.getYlqxzcrbarmc());
|
|
|
|
|
ioOrderDetailBizEntity.setManufacturer(basicProductsEntity.getManufactory());
|
|
|
|
|
ioOrderDetailBizEntity.setMeasname(basicProductsEntity.getMeasname());
|
|
|
|
|
ioOrderDetailBizEntity.setSpec(basicProductsEntity.getGgxh());
|
|
|
|
|
if (basicProductsEntity.getPrice() != null) {
|
|
|
|
|
ioOrderDetailBizEntity.setPrice(BigDecimal.valueOf(basicProductsEntity.getPrice()));
|
|
|
|
|
}
|
|
|
|
|
ioOrderDetailBizEntity.setSupId(obj.getSupId());
|
|
|
|
|
ioOrderDetailBizService.insert(ioOrderDetailBizEntity);
|
|
|
|
|
for (Map.Entry<String, List<PurOrderDetailEntity>> m : map.entrySet()) {
|
|
|
|
|
//生产单据表信息
|
|
|
|
|
IoOrderEntity ioOrderEntity = new IoOrderEntity();
|
|
|
|
|
ioOrderEntity.setBillNo(gennerOrderUtils.createScOrderNo(new OrderNoTypeBean(Constant.SCAN_ORDER, "yyyyMMdd")));
|
|
|
|
|
ioOrderEntity.setCorpOrderId(CustomUtil.getDate());
|
|
|
|
|
ioOrderEntity.setMainAction(ConstantType.TYPE_PUT);
|
|
|
|
|
ioOrderEntity.setAction(postPurOrderRequest.getTargetBillAction());
|
|
|
|
|
ioOrderEntity.setFromCorp(m.getKey());
|
|
|
|
|
ioOrderEntity.setFromType(ConstantStatus.FROM_Order);
|
|
|
|
|
ioOrderEntity.setStatus(1);
|
|
|
|
|
ioOrderEntity.setDealStatus(1);
|
|
|
|
|
ioOrderEntity.setOrderType(1);
|
|
|
|
|
ioOrderEntity.setCreateTime(new Date());
|
|
|
|
|
ioOrderEntity.setCreateUser(postPurOrderRequest.getPurOrderEntity().getAuditUser());
|
|
|
|
|
ioOrderEntity.setUpdateTime(new Date());
|
|
|
|
|
ioOrderEntity.setUpdateUser(postPurOrderRequest.getPurOrderEntity().getAuditUser());
|
|
|
|
|
ioOrderEntity.setCustomerId("110");
|
|
|
|
|
ioOrderEntity.setDeptCode(purOrderEntity.getDeptCode());
|
|
|
|
|
ioOrderEntity.setInvCode(purOrderEntity.getInvCode());
|
|
|
|
|
ioOrderService.insertOrder(ioOrderEntity);
|
|
|
|
|
billNo += ioOrderEntity.getBillNo() + ",";
|
|
|
|
|
//插入业务单表
|
|
|
|
|
for (PurOrderDetailEntity obj : m.getValue()) {
|
|
|
|
|
BasicProductsEntity basicProductsEntity = purOrderDetailService.selectIoOrderDetailBiz(obj.getId());
|
|
|
|
|
IoOrderDetailBizEntity ioOrderDetailBizEntity = new IoOrderDetailBizEntity();
|
|
|
|
|
ioOrderDetailBizEntity.setOrderIdFk(ioOrderEntity.getBillNo());
|
|
|
|
|
ioOrderDetailBizEntity.setBindRlFk(Long.valueOf(obj.getProductId()));
|
|
|
|
|
ioOrderDetailBizEntity.setCount(obj.getCount());
|
|
|
|
|
ioOrderDetailBizEntity.setUuidFk(basicProductsEntity.getUuid());
|
|
|
|
|
ioOrderDetailBizEntity.setNameCode(basicProductsEntity.getNameCode());
|
|
|
|
|
ioOrderDetailBizEntity.setCoName(basicProductsEntity.getCpmctymc());
|
|
|
|
|
ioOrderDetailBizEntity.setCertCode(basicProductsEntity.getZczbhhzbapzbh());
|
|
|
|
|
ioOrderDetailBizEntity.setYlqxzcrbarmc(basicProductsEntity.getYlqxzcrbarmc());
|
|
|
|
|
ioOrderDetailBizEntity.setManufacturer(basicProductsEntity.getManufactory());
|
|
|
|
|
ioOrderDetailBizEntity.setMeasname(basicProductsEntity.getMeasname());
|
|
|
|
|
ioOrderDetailBizEntity.setSpec(basicProductsEntity.getGgxh());
|
|
|
|
|
if (basicProductsEntity.getPrice() != null) {
|
|
|
|
|
ioOrderDetailBizEntity.setPrice(BigDecimal.valueOf(basicProductsEntity.getPrice()));
|
|
|
|
|
}
|
|
|
|
|
ioOrderDetailBizEntity.setSupId(obj.getSupId());
|
|
|
|
|
ioOrderDetailBizService.insert(ioOrderDetailBizEntity);
|
|
|
|
|
}
|
|
|
|
|
purOrderEntity.setStockOrderNo(billNo.substring(0, billNo.length() - 1));
|
|
|
|
|
purOrderService.update(purOrderEntity);
|
|
|
|
|
}
|
|
|
|
|
purOrderEntity.setStockOrderNo(billNo.substring(0, billNo.length() - 1));
|
|
|
|
|
purOrderService.update(purOrderEntity);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
return ResultVOUtils.success("更新成功!");
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|