| | |
| | | package com.vincent.rsf.server.api.service.impl; |
| | | |
| | | import com.alibaba.fastjson.JSON; |
| | | import com.alibaba.fastjson.JSONObject; |
| | | |
| | | import com.baomidou.mybatisplus.core.conditions.query.LambdaQueryWrapper; |
| | | import com.baomidou.mybatisplus.core.conditions.query.QueryWrapper; |
| | | import com.baomidou.mybatisplus.core.conditions.update.LambdaUpdateWrapper; |
| | | import com.vincent.rsf.common.domain.CommonReponse; |
| | | import com.baomidou.mybatisplus.core.metadata.IPage; |
| | | import com.baomidou.mybatisplus.extension.plugins.pagination.Page; |
| | | import com.vincent.rsf.framework.common.R; |
| | | import com.vincent.rsf.framework.exception.CoolException; |
| | | import com.vincent.rsf.server.api.config.RemotesInfoProperties; |
| | | import com.vincent.rsf.server.api.entity.dto.PoItemsDto; |
| | | import com.vincent.rsf.server.api.entity.enums.OrderType; |
| | | import com.vincent.rsf.server.api.entity.params.ErpInspectItem; |
| | | import com.vincent.rsf.server.api.entity.params.ErpInspectParams; |
| | | import com.vincent.rsf.server.manager.entity.AsnOrder; |
| | | import com.vincent.rsf.server.manager.entity.AsnOrderItem; |
| | | import com.vincent.rsf.server.manager.entity.PurchaseItem; |
| | | import com.vincent.rsf.server.manager.service.AsnOrderItemService; |
| | | import com.vincent.rsf.server.manager.service.AsnOrderService; |
| | | import com.vincent.rsf.server.manager.service.PurchaseItemService; |
| | | import com.vincent.rsf.server.manager.service.PurchaseService; |
| | | import com.vincent.rsf.server.api.controller.erp.params.*; |
| | | import com.vincent.rsf.server.common.domain.BaseParam; |
| | | import com.vincent.rsf.server.common.domain.PageParam; |
| | | import com.vincent.rsf.server.manager.controller.dto.LocStockDto; |
| | | import com.vincent.rsf.server.manager.entity.*; |
| | | import com.vincent.rsf.server.manager.enums.*; |
| | | import com.vincent.rsf.server.manager.service.*; |
| | | import com.vincent.rsf.server.manager.service.impl.MatnrServiceImpl; |
| | | import com.vincent.rsf.server.manager.service.impl.TransferItemServiceImpl; |
| | | import com.vincent.rsf.server.system.constant.SerialRuleCode; |
| | | import com.vincent.rsf.server.api.controller.params.OrderParams; |
| | | import com.vincent.rsf.server.system.entity.Fields; |
| | | import com.vincent.rsf.server.system.service.FieldsItemService; |
| | | import com.vincent.rsf.server.system.service.FieldsService; |
| | | import com.vincent.rsf.server.system.utils.SerialRuleUtils; |
| | | import com.vincent.rsf.server.api.service.ReceiveMsgService; |
| | | import com.vincent.rsf.server.manager.entity.Purchase; |
| | | import lombok.extern.slf4j.Slf4j; |
| | | import org.apache.poi.ss.formula.functions.T; |
| | | import org.springframework.beans.BeanUtils; |
| | | import org.springframework.beans.factory.annotation.Autowired; |
| | | import org.springframework.http.HttpEntity; |
| | | import org.springframework.http.HttpHeaders; |
| | | import org.springframework.http.HttpMethod; |
| | | import org.springframework.http.ResponseEntity; |
| | | import org.springframework.stereotype.Service; |
| | | import org.springframework.transaction.annotation.Transactional; |
| | | import org.springframework.util.LinkedMultiValueMap; |
| | | import org.springframework.util.MultiValueMap; |
| | | import org.springframework.web.client.RestTemplate; |
| | | |
| | | import java.util.*; |
| | | import java.util.stream.Collectors; |
| | |
| | | @Autowired |
| | | private PurchaseItemService purchaseItemService; |
| | | @Autowired |
| | | private FieldsService fieldsService; |
| | | @Autowired |
| | | private FieldsItemService fieldsItemService; |
| | | @Autowired |
| | | private MatnrGroupService matnrGroupService; |
| | | @Autowired |
| | | private MatnrServiceImpl matnrService; |
| | | @Autowired |
| | | private AsnOrderService asnOrderService; |
| | | @Autowired |
| | | private AsnOrderItemService asnOrderItemService; |
| | | @Autowired |
| | | private RestTemplate restTemplate; |
| | | private DeliveryService deliveryService; |
| | | @Autowired |
| | | private RemotesInfoProperties remotesInfoProperties; |
| | | private DeliveryItemService deliveryItemService; |
| | | @Autowired |
| | | private RemotesInfoProperties.ApiInfo apiInfo; |
| | | private LocService locService; |
| | | @Autowired |
| | | private FieldsService fieldsService; |
| | | private LocItemService locItemService; |
| | | @Autowired |
| | | private FieldsItemService fieldsItemService; |
| | | private WarehouseAreasService warehouseAreasService; |
| | | @Autowired |
| | | private WarehouseService warehouseService; |
| | | @Autowired |
| | | private CompanysService companysService; |
| | | @Autowired |
| | | private TransferService transferService; |
| | | @Autowired |
| | | private TransferItemService transferItemService; |
| | | @Autowired |
| | | private LocReviseService locReviseService; |
| | | @Autowired |
| | | private ReviseLogService reviseLogService; |
| | | @Autowired |
| | | private ReviseLogItemService reviseLogItemService; |
| | | |
| | | |
| | | /** |
| | | * @author Ryan |
| | | * @date 2025/8/15 |
| | | * @description: 保存PO/DO单据 |
| | | * @version 1.0 |
| | | */ |
| | | @Override |
| | | @Transactional(rollbackFor = Exception.class) |
| | | public boolean syncPurchasee(List<OrderParams> orders) { |
| | |
| | | throw new CoolException("单据内容不能为空!!"); |
| | | } |
| | | orders.forEach(ors -> { |
| | | Purchase purchase = new Purchase(); |
| | | BeanUtils.copyProperties(ors, purchase); |
| | | String wkVal = SerialRuleUtils.generateRuleCode(SerialRuleCode.PURCHASE_CODE, purchase); |
| | | purchase.setCode(wkVal) |
| | | .setType(OrderType.ORDER_PURCHASE_IN.type); |
| | | if (!purchaseService.save(purchase)) { |
| | | throw new CoolException("采购单据保存失败"); |
| | | } |
| | | if (ors.getType().equals("po")) { |
| | | Purchase purchase = new Purchase(); |
| | | BeanUtils.copyProperties(ors, purchase); |
| | | String wkVal = SerialRuleUtils.generateRuleCode(SerialRuleCode.PURCHASE_CODE, purchase); |
| | | purchase.setCode(wkVal) |
| | | .setType(OrderType.ORDER_IN.type); |
| | | if (!purchaseService.save(purchase)) { |
| | | throw new CoolException("采购单据保存失败"); |
| | | } |
| | | |
| | | //查询扩展字段是否存在 |
| | | List<Fields> fields = fieldsService.list(new LambdaQueryWrapper<Fields>().eq(Fields::getStatus, 1).eq(Fields::getFlagEnable, 1)); |
| | | //查询扩展字段是否存在 |
| | | List<Fields> fields = fieldsService.list(new LambdaQueryWrapper<Fields>().eq(Fields::getStatus, 1).eq(Fields::getFlagEnable, 1)); |
| | | |
| | | //判断子列表不为空 |
| | | if (!ors.getChildren().isEmpty()) { |
| | | ArrayList<PurchaseItem> list = new ArrayList<>(); |
| | | ors.getChildren().forEach(orderItem -> { |
| | | PurchaseItem item = new PurchaseItem(); |
| | | BeanUtils.copyProperties(orderItem, item); |
| | | //判断子列表不为空 |
| | | if (!ors.getChildren().isEmpty()) { |
| | | ArrayList<PurchaseItem> list = new ArrayList<>(); |
| | | ors.getChildren().forEach(orderItem -> { |
| | | PurchaseItem item = new PurchaseItem(); |
| | | BeanUtils.copyProperties(orderItem, item); |
| | | // if (!fields.isEmpty()) { |
| | | // List<String> fieldValue = fields.stream().map(Fields::getFields).collect(Collectors.toList()); |
| | | // fieldValue.forEach(value -> { |
| | | // |
| | | // }); |
| | | // } |
| | | item.setPurchaseId(purchase.getId()); |
| | | list.add(item); |
| | | }); |
| | | if (!purchaseItemService.saveBatch(list)) { |
| | | throw new CoolException("采购单明细保存失败!!"); |
| | | item.setPurchaseId(purchase.getId()); |
| | | list.add(item); |
| | | }); |
| | | if (!purchaseItemService.saveBatch(list)) { |
| | | throw new CoolException("采购单明细保存失败!!"); |
| | | } |
| | | } |
| | | } else { |
| | | Delivery delivery = new Delivery(); |
| | | BeanUtils.copyProperties(ors, delivery); |
| | | String wkVal = SerialRuleUtils.generateRuleCode(SerialRuleCode.SYS_DELIVERY_RULE_CODE, delivery); |
| | | delivery.setCode(wkVal) |
| | | .setType(OrderType.ORDER_OUT.type); |
| | | if (!deliveryService.save(delivery)) { |
| | | throw new CoolException("采购单据保存失败"); |
| | | } |
| | | |
| | | //查询扩展字段是否存在 |
| | | List<Fields> fields = fieldsService.list(new LambdaQueryWrapper<Fields>().eq(Fields::getStatus, 1).eq(Fields::getFlagEnable, 1)); |
| | | |
| | | //判断子列表不为空 |
| | | if (!ors.getChildren().isEmpty()) { |
| | | ArrayList<DeliveryItem> list = new ArrayList<>(); |
| | | ors.getChildren().forEach(orderItem -> { |
| | | DeliveryItem item = new DeliveryItem(); |
| | | BeanUtils.copyProperties(orderItem, item); |
| | | // if (!fields.isEmpty()) { |
| | | // List<String> fieldValue = fields.stream().map(Fields::getFields).collect(Collectors.toList()); |
| | | // fieldValue.forEach(value -> { |
| | | // |
| | | // }); |
| | | // } |
| | | item.setDeliveryId(delivery.getId()); |
| | | list.add(item); |
| | | }); |
| | | if (!deliveryItemService.saveBatch(list)) { |
| | | throw new CoolException("采购单明细保存失败!!"); |
| | | } |
| | | } |
| | | } |
| | | }); |
| | |
| | | } |
| | | |
| | | /** |
| | | * @author Ryan |
| | | * @description 上报质检列表 |
| | | * @params [items 列表] |
| | | * @return boolean |
| | | * @time 2025/3/7 09:12 |
| | | * 物料信息同步 |
| | | * |
| | | * @param matnrs |
| | | */ |
| | | @Override |
| | | @Transactional(rollbackFor = Exception.class) |
| | | public boolean reportInspectNotify(List<PoItemsDto> items) { |
| | | if (items.isEmpty()) { |
| | | throw new CoolException("上报内容为空!!"); |
| | | } |
| | | List<ErpInspectParams> inspectParams = new ArrayList<>(); |
| | | Map<String, List<PoItemsDto>> listMap = items.stream().collect(Collectors.groupingBy(PoItemsDto::getPurchaseId)); |
| | | listMap.keySet().forEach(key -> { |
| | | Purchase purchase = purchaseService.getOne(new LambdaQueryWrapper<Purchase>().eq(Purchase::getId, Long.valueOf(key))); |
| | | if (Objects.isNull(purchase)) { |
| | | throw new CoolException("采购单信息有误!!"); |
| | | } |
| | | ErpInspectParams params = new ErpInspectParams(); |
| | | List<ErpInspectItem> inspectItems = new ArrayList<>(); |
| | | //赋值erp主单编码,编号 |
| | | params.setPoId(purchase.getPlatId()) |
| | | .setPoCode(purchase.getPlatCode()); |
| | | List<PoItemsDto> dtos = listMap.get(key); |
| | | if (dtos.isEmpty()) { |
| | | throw new CoolException("单据信息错误!!"); |
| | | } |
| | | dtos.forEach(dto -> { |
| | | ErpInspectItem inspect= new ErpInspectItem(); |
| | | BeanUtils.copyProperties(dto, inspect); |
| | | //赋值erp明细编码 |
| | | inspect.setPoItemId(dto.getPlatItemId()); |
| | | inspectItems.add(inspect); |
| | | }); |
| | | params.setChildren(inspectItems); |
| | | inspectParams.add(params); |
| | | |
| | | }); |
| | | |
| | | MultiValueMap<String, Object> params = new LinkedMultiValueMap<>(); |
| | | //获取上报质检接口 |
| | | String url = remotesInfoProperties.getBaseUrl() + apiInfo.getNotifyInspect(); |
| | | // 设置请求参数 |
| | | params.add("params", JSONObject.toJSONString(inspectParams)); |
| | | log.info("请求地址:{},请求参数:{}", url, JSONObject.toJSONString(inspectParams)); |
| | | HttpHeaders headers = new HttpHeaders(); |
| | | headers.add("Content-Type", "application/json"); |
| | | HttpEntity httpEntity = new HttpEntity<>(params, headers); |
| | | // 请求 |
| | | ResponseEntity<String> exchange = restTemplate.exchange(url, HttpMethod.POST, httpEntity, String.class); |
| | | log.info("下发任务 返回结果:{}", exchange); |
| | | if (Objects.isNull(exchange.getBody()) || exchange.getBody() == null) { |
| | | throw new CoolException("下发任务失败!!"); |
| | | } else { |
| | | CommonReponse reponse = (CommonReponse) JSON.parse(exchange.getBody()); |
| | | if (reponse.getCode() == 0) { |
| | | //修改asn上报状态 |
| | | Set<String> itemSets = items.stream().map(PoItemsDto::getId).collect(Collectors.toSet()); |
| | | Set<Long> longSet = new HashSet<>(); |
| | | itemSets.forEach(set -> { |
| | | longSet.add(Long.parseLong(set)); |
| | | }); |
| | | |
| | | List<AsnOrderItem> asnOrderItems = asnOrderItemService.list(new LambdaQueryWrapper<AsnOrderItem>().in(AsnOrderItem::getPoDetlId, longSet)); |
| | | if (asnOrderItems.isEmpty()) { |
| | | throw new CoolException("ASN单据不存在!!"); |
| | | public void syncMatnrs(List<BaseMatParms> matnrs) { |
| | | List<Matnr> syncMatnrs = new ArrayList<>(); |
| | | if (!matnrs.isEmpty()) { |
| | | matnrs.forEach(matnr -> { |
| | | Matnr mat = new Matnr(); |
| | | if (Objects.isNull(matnr.getMatnr())) { |
| | | throw new RuntimeException("物料编码不能为空!!"); |
| | | } |
| | | List<Long> list = asnOrderItems.stream().map(AsnOrderItem::getId).collect(Collectors.toList()); |
| | | |
| | | /************************** 修改ASN明细单状态 ******************************/ |
| | | |
| | | |
| | | if (!asnOrderItemService.update(new LambdaUpdateWrapper<AsnOrderItem>().in(AsnOrderItem::getId, list).set(AsnOrderItem::getStatus, 1))) { |
| | | throw new CoolException("ASN明细单据状态修改失败!!"); |
| | | } |
| | | |
| | | /************************** 修改ASN主单数据 ******************************/ |
| | | //获取ASN明细订单标识 |
| | | List<Long> ids = asnOrderItems.stream().map(AsnOrderItem::getAsnId).collect(Collectors.toList()); |
| | | //ASN明细单据分组 |
| | | Map<Long, List<AsnOrderItem>> asnIds = asnOrderItems.stream().collect(Collectors.groupingBy(AsnOrderItem::getAsnId)); |
| | | ids.forEach(id -> { |
| | | int count = asnOrderService.count(new LambdaQueryWrapper<AsnOrder>().in(AsnOrder::getId, id)); |
| | | if (count == asnIds.get(id).size()) { |
| | | if (!asnOrderService.update(new LambdaUpdateWrapper<AsnOrder>().eq(AsnOrder::getId, id).set(AsnOrder::getStatus, 1))) { |
| | | throw new CoolException("ASN主单状态修改失败!!"); |
| | | } |
| | | } else { |
| | | if (!asnOrderService.update(new LambdaUpdateWrapper<AsnOrder>().eq(AsnOrder::getId, id).set(AsnOrder::getStatus, 2))) { |
| | | throw new CoolException("ASN主单状态修改失败!!"); |
| | | } |
| | | BeanUtils.copyProperties(matnr, mat); |
| | | mat.setCode(matnr.getMatnr()).setName(matnr.getMaktx()); |
| | | if (!Objects.isNull(matnr.getGroupName())) { |
| | | MatnrGroup matnrGroup = matnrGroupService.getOne(new LambdaQueryWrapper<MatnrGroup>().eq(MatnrGroup::getName, matnr.getGroupName()), false); |
| | | if (Objects.isNull(matnrGroup)) { |
| | | mat.setGroupCode(matnrGroup.getCode()).setGroupId(matnrGroup.getId()); |
| | | } |
| | | }); |
| | | return true; |
| | | } else { |
| | | throw new CoolException(reponse.getMsg()); |
| | | } |
| | | syncMatnrs.add(mat); |
| | | }); |
| | | |
| | | if (!matnrService.saveOrUpdateBatch(syncMatnrs)) { |
| | | throw new CoolException("物料信息保存成功!!"); |
| | | } |
| | | } |
| | | } |
| | | |
| | | /** |
| | | * @author Ryan |
| | | * @date 2025/8/15 |
| | | * @description: 订单查询 |
| | | * @version 1.0 |
| | | */ |
| | | @Override |
| | | public R queryOrderStatus(QueryOrderParam queryParams) { |
| | | WkOrder wkOrders = asnOrderService.getOne(new LambdaQueryWrapper<WkOrder>() |
| | | .in(WkOrder::getCode, queryParams.getOrderNo()) |
| | | .eq(WkOrder::getType, queryParams.getType())); |
| | | if (Objects.isNull(wkOrders)) { |
| | | throw new CoolException("单据不存在!!"); |
| | | } |
| | | List<WkOrderItem> orderItems = asnOrderItemService.list(new LambdaQueryWrapper<WkOrderItem>().eq(WkOrderItem::getOrderId, wkOrders.getId())); |
| | | |
| | | WkOrderDto wkorderDto = new WkOrderDto(); |
| | | wkorderDto.setOrder(wkOrders).setOrderItems(orderItems); |
| | | |
| | | return R.ok().add(wkorderDto); |
| | | } |
| | | |
| | | /** |
| | | * @author Ryan |
| | | * @date 2025/8/15 |
| | | * @description: 查询库位信息 |
| | | * @version 1.0 |
| | | */ |
| | | @Override |
| | | public R syncLocsDetl(PageParam<Loc, BaseParam> pageParam, QueryWrapper<Loc> wrapper) { |
| | | Page<Object> page = new Page<>(); |
| | | page.setCurrent(pageParam.getCurrent()).setSize(pageParam.getSize()); |
| | | IPage<LocStockDto> locStocks = locService.getLocDetls(page); |
| | | return R.ok().add(locStocks); |
| | | } |
| | | |
| | | /** |
| | | * @author Ryan |
| | | * @date 2025/8/18 |
| | | * @description: 库位同步 |
| | | * @version 1.0 |
| | | */ |
| | | @Override |
| | | @Transactional(timeout = 60, rollbackFor = Exception.class) |
| | | public R syncLocs(List<SyncLocsParams> locs) { |
| | | List<Loc> syncLocs = new ArrayList<>(); |
| | | locs.forEach(loc -> { |
| | | Loc loc1 = new Loc(); |
| | | BeanUtils.copyProperties(loc, loc1); |
| | | loc1.setCode(loc.getLocCode()).setId(null); |
| | | syncLocs.add(loc1); |
| | | }); |
| | | if (!locService.saveBatch(syncLocs)) { |
| | | throw new CoolException("库位同步失败!!"); |
| | | } |
| | | return R.ok(); |
| | | } |
| | | |
| | | /** |
| | | * @author Ryan |
| | | * @date 2025/8/18 |
| | | * @description: 物料信息同步 |
| | | * @version 1.0 |
| | | */ |
| | | @Override |
| | | @Transactional(timeout = 60, rollbackFor = Exception.class) |
| | | public R syncMatGroups(List<SyncMatGroupsParams> matGroupsParams) { |
| | | List<MatnrGroup> syncMatGroups = new ArrayList<>(); |
| | | matGroupsParams.forEach(matGroupsParam -> { |
| | | MatnrGroup matnrGroup = new MatnrGroup(); |
| | | BeanUtils.copyProperties(matGroupsParam, matnrGroup); |
| | | if (Objects.isNull(matGroupsParam.getCode())) { |
| | | throw new CoolException("物料分组编码不能为空!!"); |
| | | } |
| | | if (Objects.isNull(matGroupsParam.getName())) { |
| | | throw new CoolException("分组名称不能为空!!"); |
| | | } |
| | | if (Objects.isNull(matGroupsParam.getParCode())) { |
| | | throw new CoolException("上级物料分组编码不能为空!!"); |
| | | } |
| | | syncMatGroups.add(matnrGroup); |
| | | }); |
| | | if (!matnrGroupService.saveBatch(syncMatGroups)) { |
| | | throw new CoolException("物料分组保存失败!!"); |
| | | } |
| | | return R.ok(); |
| | | } |
| | | |
| | | /** |
| | | * @author Ryan |
| | | * @date 2025/8/18 |
| | | * @description: 库区信息同步 |
| | | * @version 1.0 |
| | | */ |
| | | @Override |
| | | @Transactional(timeout = 60, rollbackFor = Exception.class) |
| | | public R syncWarehouseAreas(List<LocAreasParams> areasParams) { |
| | | areasParams.forEach(param -> { |
| | | WarehouseAreas locArea = new WarehouseAreas(); |
| | | BeanUtils.copyProperties(param, locArea); |
| | | WarehouseAreas warehouseAreas = warehouseAreasService |
| | | .getOne(new LambdaQueryWrapper<WarehouseAreas>() |
| | | .eq(WarehouseAreas::getName, param.getName())); |
| | | if (!Objects.isNull(warehouseAreas)) { |
| | | locArea.setWarehouseId(warehouseAreas.getId()); |
| | | } |
| | | locArea.setName(param.getName()) |
| | | .setCode(param.getCode()) |
| | | .setId(null); |
| | | if (!warehouseAreasService.save(locArea)) { |
| | | throw new CoolException("库区保存失败!!"); |
| | | } |
| | | }); |
| | | return R.ok(); |
| | | } |
| | | |
| | | /** |
| | | * @author Ryan |
| | | * @date 2025/8/18 |
| | | * @description: 仓库同步 |
| | | * @version 1.0 |
| | | */ |
| | | @Override |
| | | @Transactional(timeout = 60, rollbackFor = Exception.class) |
| | | public R syncWarehouse(List<WarehouseParams> warehouses) { |
| | | warehouses.forEach(warehouse -> { |
| | | Warehouse ware = new Warehouse(); |
| | | BeanUtils.copyProperties(warehouse, ware); |
| | | ware.setId(null); |
| | | if (!warehouseService.save(ware)) { |
| | | throw new CoolException("仓库同步保存失败!!"); |
| | | } |
| | | }); |
| | | return R.ok(); |
| | | } |
| | | |
| | | /** |
| | | * @author Ryan |
| | | * @date 2025/8/19 |
| | | * @description: 同步企业信息 |
| | | * @version 1.0 |
| | | */ |
| | | @Override |
| | | @Transactional(timeout = 60, rollbackFor = Exception.class) |
| | | public R syncCompanies(List<CompaniesParam> companyParams) { |
| | | companyParams.forEach(param -> { |
| | | Companys companys = new Companys(); |
| | | BeanUtils.copyProperties(param, companys); |
| | | if (Objects.isNull(companys.getCode())) { |
| | | throw new CoolException("企业编码不能为空!!"); |
| | | } |
| | | Companys one = companysService.getOne(new LambdaQueryWrapper<Companys>().eq(Companys::getName, param.getName())); |
| | | if (Objects.isNull(one)) { |
| | | String ruleCode = SerialRuleUtils.generateRuleCode(SerialRuleCode.SYS_COMPANYS_CODE, null); |
| | | companys.setCode(ruleCode); |
| | | } else { |
| | | throw new CoolException(one.getName() + ",企业名重复!!"); |
| | | } |
| | | companys.setType(CompanysType.getCustomVal(param.getType())) |
| | | .setId(null); |
| | | if (!companysService.save(companys)) { |
| | | throw new CoolException("企业保存失败!!"); |
| | | } |
| | | }); |
| | | return R.ok(); |
| | | } |
| | | |
| | | |
| | | @Override |
| | | @Transactional(timeout = 60, rollbackFor = Exception.class) |
| | | public R syncCheckOrder(SyncOrderParams syncOrders, Long loginUserId) { |
| | | List<SyncOrdersItem> ordersItems = syncOrders.getItems(); |
| | | Map<String, List<SyncOrdersItem>> listMap = ordersItems.stream().collect(Collectors.groupingBy(SyncOrdersItem::getOrderCode)); |
| | | listMap.keySet().forEach(orderCode -> { |
| | | WkOrder wkOrder = new WkOrder(); |
| | | String ruleCode = null; |
| | | if (syncOrders.getType().equals(OrderType.ORDER_CHECK.type)) { |
| | | ruleCode = SerialRuleUtils.generateRuleCode(SerialRuleCode.SYS_CHECK_RULE_CODE, null); |
| | | } else if (syncOrders.getType().equals(OrderType.ORDER_IN.type)) { |
| | | ruleCode = SerialRuleUtils.generateRuleCode(SerialRuleCode.SYS_ASN_ORDER, null); |
| | | } else if (syncOrders.getType().equals(OrderType.ORDER_OUT.type)) { |
| | | ruleCode = SerialRuleUtils.generateRuleCode(SerialRuleCode.SYS_OUT_STOCK_CODE, null); |
| | | } else if (syncOrders.getType().equals(OrderType.ORDER_REVISE.type)) { |
| | | ruleCode = SerialRuleUtils.generateRuleCode(SerialRuleCode.SYS_LOC_REVISE_CODE, null); |
| | | } else if (syncOrders.getType().equals(OrderType.ORDER_TRANSFER.type)) { |
| | | ruleCode = SerialRuleUtils.generateRuleCode(SerialRuleCode.SYS_TRANSFER_ORDER_CODE, null); |
| | | } |
| | | |
| | | SyncOrdersItem ordersItem = listMap.get(orderCode).stream().findFirst().get(); |
| | | Double anfmes = listMap.get(orderCode).stream().mapToDouble(SyncOrdersItem::getAnfme).sum(); |
| | | wkOrder.setType(syncOrders.getType()) |
| | | .setWkType(OrderWorkType.getWorkType(ordersItem.getWkType())) |
| | | .setAnfme(anfmes) |
| | | .setPoCode(orderCode) |
| | | .setPoId(ordersItem.getId()) |
| | | .setCode(ruleCode) |
| | | .setId(null) |
| | | .setCreateTime(new Date()) |
| | | .setUpdateTime(new Date()) |
| | | .setCreateBy(loginUserId) |
| | | .setUpdateBy(loginUserId); |
| | | |
| | | if (!asnOrderService.save(wkOrder)) { |
| | | throw new CoolException("单据保存失败!!"); |
| | | } |
| | | |
| | | listMap.get(orderCode).forEach(order -> { |
| | | WkOrderItem wkOrderItem = new WkOrderItem(); |
| | | BeanUtils.copyProperties(order, wkOrderItem); |
| | | wkOrderItem.setOrderCode(wkOrder.getCode()) |
| | | .setOrderId(wkOrder.getId()) |
| | | .setId(null); |
| | | |
| | | if (!asnOrderItemService.save(wkOrderItem)) { |
| | | throw new CoolException("单据明细保存失败!!"); |
| | | } |
| | | }); |
| | | }); |
| | | |
| | | return R.ok(); |
| | | } |
| | | |
| | | /** |
| | | * @author Ryan |
| | | * @date 2025/8/19 |
| | | * @description: 调拔单据同步 |
| | | * @version 1.0 |
| | | */ |
| | | @Override |
| | | @Transactional(timeout = 60, rollbackFor = Exception.class) |
| | | public R syncTransfer(SyncTransferParams transferParams) { |
| | | Transfer transfer = new Transfer(); |
| | | WarehouseAreas warehouseAreas = warehouseAreasService |
| | | .getOne(new LambdaQueryWrapper<WarehouseAreas>() |
| | | .eq(WarehouseAreas::getName, transfer.getOrgAreaName())); |
| | | if (Objects.isNull(warehouseAreas)) { |
| | | throw new CoolException("原库区不存在!!"); |
| | | } |
| | | |
| | | WarehouseAreas warehouseAreas1 = warehouseAreasService.getOne(new LambdaQueryWrapper<WarehouseAreas>() |
| | | .eq(WarehouseAreas::getName, transfer.getTarAreaName())); |
| | | if (Objects.isNull(warehouseAreas1)) { |
| | | throw new CoolException("目标库区不存在!!"); |
| | | } |
| | | |
| | | transfer.setOrgAreaName(warehouseAreas.getName()) |
| | | .setOrgAreaId(warehouseAreas.getId()) |
| | | .setOrgWareName(warehouseAreas.getWarehouseId$()) |
| | | .setOrgWareId(warehouseAreas.getWarehouseId()) |
| | | .setTarWareName(warehouseAreas1.getWarehouseId$()) |
| | | .setTarAreaName(warehouseAreas1.getName()) |
| | | .setTarAreaId(warehouseAreas1.getId()) |
| | | .setTarWareName(warehouseAreas1.getWarehouseId$()) |
| | | .setTarWareId(warehouseAreas1.getWarehouseId()) |
| | | .setSource(OrderSourceType.ORDER_SOURCE_TYPE_ERP.val); |
| | | |
| | | if (!transferService.save(transfer)) { |
| | | throw new CoolException("调拔单据保存失败!!"); |
| | | } |
| | | |
| | | transferParams.getItems().forEach(item -> { |
| | | TransferItem transferItem = new TransferItem(); |
| | | BeanUtils.copyProperties(item, transferItem); |
| | | Matnr matnr = matnrService.getOne(new LambdaQueryWrapper<Matnr>().eq(Matnr::getCode, item.getMatnrCode())); |
| | | if (Objects.isNull(matnr)) { |
| | | throw new CoolException("物料不存在!!"); |
| | | } |
| | | transferItem.setMatnrId(matnr.getId()) |
| | | .setTransferId(transfer.getId()) |
| | | .setTransferCode(transfer.getCode()); |
| | | |
| | | if (!transferItemService.save(transferItem)) { |
| | | throw new CoolException("调拔单明细保存失败!!"); |
| | | } |
| | | }); |
| | | |
| | | return R.ok(); |
| | | } |
| | | |
| | | /** |
| | | * @author Ryan |
| | | * @date 2025/8/20 |
| | | * @description: 库存调整单同步 |
| | | * @version 1.0 |
| | | */ |
| | | @Override |
| | | @Transactional(timeout = 60, rollbackFor = Exception.class) |
| | | public R syncLocRevise(SyncLocReviseParams reviseParams) { |
| | | LocRevise locRevise = new LocRevise(); |
| | | if (Objects.isNull(reviseParams.getAreaName())) { |
| | | throw new CoolException("库区不能为空!!"); |
| | | } |
| | | WarehouseAreas warehouseAreas = warehouseAreasService |
| | | .getOne(new LambdaQueryWrapper<WarehouseAreas>() |
| | | .eq(WarehouseAreas::getName, reviseParams.getAreaName())); |
| | | if (Objects.isNull(warehouseAreas)) { |
| | | throw new CoolException("库区不存在!!"); |
| | | } |
| | | locRevise.setAreaName(locRevise.getAreaName()) |
| | | .setAreaId(warehouseAreas.getId()); |
| | | locRevise.setCode(SerialRuleUtils.generateRuleCode(SerialRuleCode.SYS_LOC_REVISE_CODE, null)); |
| | | |
| | | if (!locReviseService.save(locRevise)) { |
| | | throw new CoolException("库存调整单保存失败!!"); |
| | | } |
| | | |
| | | reviseParams.getItems().forEach(revise -> { |
| | | Loc loc = locService.getOne(new LambdaQueryWrapper<Loc>().eq(Loc::getCode, revise.getLocCode())); |
| | | ReviseLog reviseLog = new ReviseLog(); |
| | | BeanUtils.copyProperties(loc, reviseLog); |
| | | reviseLog.setReviseId(locRevise.getId()).setReviseCode(locRevise.getCode()); |
| | | if (!reviseLogService.save(reviseLog)) { |
| | | throw new CoolException("库存调整单不能为空!!"); |
| | | } |
| | | revise.getItems().forEach(reviseItem -> { |
| | | ReviseLogItem logItem = new ReviseLogItem(); |
| | | BeanUtils.copyProperties(reviseItem, logItem); |
| | | logItem.setLocId(loc.getId()) |
| | | .setLocCode(loc.getCode()) |
| | | .setId(null) |
| | | .setReviseQty(reviseItem.getAnfme()); |
| | | |
| | | if (!reviseLogItemService.save(logItem)) { |
| | | throw new CoolException("调整库存明细保存失败!!"); |
| | | } |
| | | }); |
| | | }); |
| | | |
| | | return R.ok(); |
| | | } |
| | | |
| | | /** |
| | | * @author Ryan |
| | | * @date 2025/8/20 |
| | | * @description: 单据修改--收货通知单/出库单/盘点单 |
| | | * @version 1.0 |
| | | */ |
| | | @Override |
| | | @Transactional(timeout = 60, rollbackFor = Exception.class) |
| | | public R syncOrderUpdate(SyncOrderParams orders) { |
| | | //入库单修改 |
| | | if (orders.getType().equals(OrderType.ORDER_IN.type)) { |
| | | orders.getItems().forEach(orderItem -> { |
| | | WkOrder order = asnOrderService.getOne(new LambdaQueryWrapper<WkOrder>() |
| | | .eq(WkOrder::getType, OrderType.ORDER_IN.type) |
| | | .eq(WkOrder::getCode, orderItem.getOrderCode())); |
| | | if (Objects.isNull(order)) { |
| | | throw new CoolException("单据不存在!!"); |
| | | } |
| | | |
| | | if (!asnOrderItemService.update(new LambdaUpdateWrapper<WkOrderItem>() |
| | | .eq(WkOrderItem::getOrderCode, orderItem.getOrderCode()) |
| | | .eq(WkOrderItem::getMatnrCode, orderItem.getMatnrCode()) |
| | | .eq(WkOrderItem::getSplrBatch, orderItem.getBatch()) |
| | | .set(WkOrderItem::getAnfme, orderItem.getAnfme()))) { |
| | | throw new CoolException("单据修改失败!!"); |
| | | } |
| | | |
| | | List<WkOrderItem> orderItems = asnOrderItemService.list(new LambdaQueryWrapper<WkOrderItem>() |
| | | .eq(WkOrderItem::getOrderId, order.getId())); |
| | | if (orderItems.isEmpty()) { |
| | | throw new CoolException("单据明细不存在!!"); |
| | | } |
| | | |
| | | Double summed = orderItems.stream().mapToDouble(WkOrderItem::getAnfme).sum(); |
| | | order.setAnfme(summed); |
| | | |
| | | if (!asnOrderService.updateById(order)) { |
| | | throw new CoolException("单据修改失败!!"); |
| | | } |
| | | }); |
| | | } else { |
| | | |
| | | } |
| | | return null; |
| | | } |
| | | |
| | | /** |
| | | * @author Ryan |
| | | * @date 2025/8/21 |
| | | * @description: 删除单据 |
| | | * @version 1.0 |
| | | */ |
| | | @Override |
| | | @Transactional(timeout = 60, rollbackFor = Exception.class) |
| | | public R syncOrderDelete(List<SyncOrderParams> orders) { |
| | | orders.forEach(order -> { |
| | | order.getItems().forEach(orderItem -> { |
| | | WkOrder wkOrder = asnOrderService.getOne(new LambdaQueryWrapper<WkOrder>() |
| | | .eq(WkOrder::getType, order.getType()) |
| | | .in(WkOrder::getExceStatus, Arrays.asList(AsnExceStatus.ASN_EXCE_STATUS_UN_EXCE.val, AsnExceStatus.OUT_STOCK_STATUS_TASK_INIT.val)) |
| | | .eq(WkOrder::getId, orderItem.getOrderId())); |
| | | if (Objects.isNull(wkOrder)) { |
| | | throw new CoolException("订单:" + orderItem.getOrderCode() + ",当前状态,不可执行删除操作!!"); |
| | | } |
| | | if (!asnOrderItemService.remove(new LambdaQueryWrapper<WkOrderItem>() |
| | | .eq(WkOrderItem::getMatnrId, orderItem.getMatnrId()) |
| | | .eq(WkOrderItem::getSplrBatch, orderItem.getBatch()) |
| | | .eq(WkOrderItem::getOrderCode, orderItem.getOrderCode()))) { |
| | | throw new CoolException("单据明细删除失败!!"); |
| | | } |
| | | List<WkOrderItem> orderItems = asnOrderItemService.list(new LambdaQueryWrapper<WkOrderItem>().eq(WkOrderItem::getOrderId, orderItem.getOrderId())); |
| | | if (orderItems.isEmpty()) { |
| | | if (!asnOrderService.removeById(orderItem.getOrderId())) { |
| | | throw new CoolException("单据删除失败!!"); |
| | | } |
| | | } |
| | | }); |
| | | }); |
| | | return R.ok(); |
| | | } |
| | | |
| | | /** |
| | | * @author Ryan |
| | | * @date 2025/8/21 |
| | | * @description: 调拔单明细查询 |
| | | * @version 1.0 |
| | | */ |
| | | @Override |
| | | public R queryTransfer(QueryOrderParam queryParams) { |
| | | Transfer transfer = transferService.getOne(new LambdaQueryWrapper<Transfer>() |
| | | .in(Transfer::getCode, queryParams.getOrderNo())); |
| | | if (Objects.isNull(transfer)) { |
| | | throw new CoolException("单据不存在!!"); |
| | | } |
| | | List<TransferItem> orderItems = transferItemService.list(new LambdaQueryWrapper<TransferItem>() |
| | | .eq(TransferItem::getTransferId, transfer.getId())); |
| | | TransferInfoDto wkorderDto = new TransferInfoDto(); |
| | | wkorderDto.setTransfer(transfer).setItems(orderItems); |
| | | return R.ok().add(wkorderDto); |
| | | } |
| | | } |