@ -262,48 +262,48 @@ public class OpenOrderServiceImpl implements IOpenOrderService {
basicdataFreightApiVO . setDestination ( openOrderVO . getDestinationCode ( ) ) ;
basicdataFreightApiVO . setArrivalWarehouse ( openOrderVO . getDestinationWarehouseId ( ) + "" ) ;
if ( goodsList . isEmpty ( ) ) {
List < AdvanceDetailGoodsVO > ls = new ArrayList < > ( ) ;
//把list中的元素通过packName分组如果pickName为空则换为"其他"
Map < String , List < TrunklineAdvanceEntity > > groupedEntities = list . stream ( )
. collect ( Collectors . groupingBy ( entity - > {
String packName = entity . getPackName ( ) ;
return packName ! = null ? packName : "其他" ;
} ) ) ;
groupedEntities . keySet ( ) . forEach ( packName - > {
int total ;
List < TrunklineAdvanceEntity > advanceEntityList = groupedEntities . get ( packName ) ;
total = advanceEntityList . stream ( ) . mapToInt ( TrunklineAdvanceEntity : : getTotalNum ) . sum ( ) ;
AdvanceDetailGoodsVO advanceDetailGoodsVO = new AdvanceDetailGoodsVO ( ) ;
advanceDetailGoodsVO . setChargeType ( 1 ) ;
advanceDetailGoodsVO . setGoodsName ( packName ) ;
advanceDetailGoodsVO . setNum ( total ) ;
advanceDetailGoodsVO . setVolume ( BigDecimal . ZERO ) ;
advanceDetailGoodsVO . setWeight ( BigDecimal . ZERO ) ;
ls . add ( advanceDetailGoodsVO ) ;
} ) ;
goodsList = new ArrayList < > ( ls ) ;
} else {
for ( AdvanceDetailGoodsVO advanceDetailGoodsVO : goodsList ) {
String goodsName = advanceDetailGoodsVO . getGoodsName ( ) ;
BasicdataCategoryEntity basicdataCategoryEntity = basicdataCategoryClient . findByName ( goodsName ) ;
Long goodsId = null ;
if ( Objects . isNull ( basicdataCategoryEntity ) ) {
basicdataCategoryEntity = new BasicdataCategoryEntity ( ) ;
basicdataCategoryEntity . setType ( 1 ) ;
basicdataCategoryEntity . setName ( goodsName ) ;
goodsId = basicdataCategoryClient . addReturnId ( basicdataCategoryEntity ) ;
} else {
goodsId = basicdataCategoryEntity . getId ( ) ;
}
advanceDetailGoodsVO . setGoodsId ( goodsId ) ;
basicdataFreightApiVO . setCategory ( goodsId + "" ) ;
List < BasicdataFreightDetailEntity > pirceList = basicdataFreightClient . pirce ( basicdataFreightApiVO ) ;
JSONArray price = JSONArray . parseArray ( JSON . toJSONString ( pirceList ) ) ;
advanceDetailGoodsVO . setArrPirce ( price ) ;
}
}
// if (goodsList.isEmpty()) {
// List<AdvanceDetailGoodsVO> ls = new ArrayList<>();
// //把list中的元素通过packName分组如果pickName为空则换为"其他"
// Map<String, List<TrunklineAdvanceEntity>> groupedEntities = list.stream()
// .collect(Collectors.groupingBy(entity -> {
// String packName = entity.getPackName();
// return packName != null ? packName : "其他";
// }));
//
// groupedEntities.keySet().forEach(packName -> {
// int total;
// List<TrunklineAdvanceEntity> advanceEntityList = groupedEntities.get(packName);
// total = advanceEntityList.stream().mapToInt(TrunklineAdvanceEntity::getTotalNum).sum();
// AdvanceDetailGoodsVO advanceDetailGoodsVO = new AdvanceDetailGoodsVO();
// advanceDetailGoodsVO.setChargeType(1);
// advanceDetailGoodsVO.setGoodsName(packName);
// advanceDetailGoodsVO.setNum(total);
// advanceDetailGoodsVO.setVolume(BigDecimal.ZERO);
// advanceDetailGoodsVO.setWeight(BigDecimal.ZERO);
// ls.add(advanceDetailGoodsVO);
// });
// goodsList = new ArrayList<>(ls);
// } else {
// for (AdvanceDetailGoodsVO advanceDetailGoodsVO : goodsList) {
// String goodsName = advanceDetailGoodsVO.getGoodsName();
// BasicdataCategoryEntity basicdataCategoryEntity = basicdataCategoryClient.findByName(goodsName);
// Long goodsId = null;
// if (Objects.isNull(basicdataCategoryEntity)) {
// basicdataCategoryEntity = new BasicdataCategoryEntity();
// basicdataCategoryEntity.setType(1);
// basicdataCategoryEntity.setName(goodsName);
// goodsId = basicdataCategoryClient.addReturnId(basicdataCategoryEntity);
// } else {
// goodsId = basicdataCategoryEntity.getId();
// }
// advanceDetailGoodsVO.setGoodsId(goodsId);
// basicdataFreightApiVO.setCategory(goodsId + "");
// List<BasicdataFreightDetailEntity> pirceList = basicdataFreightClient.pirce(basicdataFreightApiVO);
// JSONArray price = JSONArray.parseArray(JSON.toJSONString(pirceList));
// advanceDetailGoodsVO.setArrPirce(price);
// }
// }
@ -508,18 +508,18 @@ public class OpenOrderServiceImpl implements IOpenOrderService {
warehouseWayBillDetail . setWaybillNo ( waybillEntity . getWaybillNo ( ) ) ;
Long goodsId = waybillDetailDTO . getGoodsId ( ) ;
String goodsName = waybillDetailDTO . getGoodsName ( ) ;
if ( Objects . isNull ( goodsId ) ) {
//如果品名id没有就先通过goodsName查寻,没有就新增
BasicdataCategoryEntity basicdataCategoryEntity = basicdataCategoryClient . findByName ( goodsName ) ;
if ( Objects . isNull ( basicdataCategoryEntity ) ) {
basicdataCategoryEntity = new BasicdataCategoryEntity ( ) ;
basicdataCategoryEntity . setName ( goodsName ) ;
basicdataCategoryEntity . setType ( 1 ) ;
goodsId = basicdataCategoryClient . addReturnId ( basicdataCategoryEntity ) ;
} else {
goodsId = basicdataCategoryEntity . getId ( ) ;
}
}
// if (Objects.isNull(goodsId)) {
// //如果品名id没有就先通过goodsName查寻,没有就新增
// BasicdataCategoryEntity basicdataCategoryEntity = basicdataCategoryClient.findByName(goodsName);
// if (Objects.isNull(basicdataCategoryEntity)) {
// basicdataCategoryEntity = new BasicdataCategoryEntity();
// basicdataCategoryEntity.setName(goodsName);
// basicdataCategoryEntity.setType(1);
// goodsId = basicdataCategoryClient.addReturnId(basicdataCategoryEntity);
// } else {
// goodsId = basicdataCategoryEntity.getId();
// }
// }
warehouseWayBillDetail . setCreateUser ( AuthUtil . getUserId ( ) ) ;
warehouseWayBillDetail . setUpdateUser ( AuthUtil . getUserId ( ) ) ;
Date date = new Date ( ) ;
@ -582,6 +582,11 @@ public class OpenOrderServiceImpl implements IOpenOrderService {
//修改暂存单的状态为已开单
advanceService . updateBatchById ( advanceEntityList ) ;
//修改暂存单明细的结算品类
List < TrunklineAdvanceDetailEntity > updateAdvanceDetailList = openOrderDTO . getUpdateAdvanceDetailList ( ) ;
advanceDetailService . updateBatchById ( updateAdvanceDetailList ) ;
//计算扫码入库的包件是否需要把运单和提货单挂上
openOrderAsyncService . dealwithBillladingInfo ( advanceIds , warehouseId , warehouseName , waybillId , waybillNo ) ;
@ -2165,6 +2170,7 @@ public class OpenOrderServiceImpl implements IOpenOrderService {
String warehouseName = openOrderDTO . getWarehouseName ( ) ;
String editReson = openOrderDTO . getEditReson ( ) ;
String refer = openOrderDTO . getRefer ( ) ;
List < TrunklineAdvanceDetailEntity > updateAdvanceDetailList = openOrderDTO . getUpdateAdvanceDetailList ( ) ;
WarehouseWaybillEntity waybillEntity = warehouseWaybillClient . findByWaybillId ( waybillId ) ;
if ( Objects . isNull ( waybillEntity ) ) {
@ -2184,6 +2190,8 @@ public class OpenOrderServiceImpl implements IOpenOrderService {
warehouseWaybillClient . updateEntity ( waybillEntity ) ;
advanceDetailService . updateBatchById ( updateAdvanceDetailList ) ;
// String operationRemark = "修改运单"+waybillNo+",时间:"+ CommonUtil.dateToString(waybillEntity.getCreateTime())+","+updateMsg;
//异步存入日志
openOrderAsyncService . saveUpdateLog ( waybillId , waybillNo , "888" , editReson , "备注:" + refer + " 修改内容:" + updateMsg , AuthUtil . getNickName ( ) , AuthUtil . getUserId ( ) , warehouseId , warehouseName , waybillEntity ) ;
@ -3441,6 +3449,23 @@ public class OpenOrderServiceImpl implements IOpenOrderService {
return R . success ( "添加成功" ) ;
}
@Override
public R findAdvanceDetailListByAdvanceIds ( AdvanceDTO advanceDTO ) {
List < Long > advanceIds = advanceDTO . getAdvanceIds ( ) ;
List < AdvanceDetailVO > advanceDetailVOList = advanceDetailService . findAdvanceDetailListByAdvanceIds ( advanceDTO ) ;
return R . data ( advanceDetailVOList ) ;
}
@Override
public R findAdvanceDetailListByWaybillId ( AdvanceDTO advanceDTO ) {
List < AdvanceDetailVO > advanceDetailVOList = advanceDetailService . findAdvanceDetailListByWaybillId ( advanceDTO ) ;
return R . data ( advanceDetailVOList ) ;
}
private List < EditOrderMsgVO > verifyData ( OpenOrderDTO openOrderDTO , WarehouseWaybillEntity waybillEntity ) {
log . info ( "###################verifyData: 验证改单数据" ) ;
// StringBuilder stringBuilder = new StringBuilder();