@ -162,23 +162,62 @@ public class WmsSellOutEmbryoServiceImpl implements IWmsSellOutEmbryoService {
return wmsSellOutEmbryoMapper . selectWmsSellOutEmbryoREList ( wmsSellOutEmbryo ) ;
}
/ * *
* 在 原 来 的 基 础 上 修 改 改 成 , 让 他 们 前 端 进 行 操 作 , 只 选 择 一 个 单 号 即 可 ,
* @param wmsSellOutEmbryoList
* @return
* /
@Override
@DS ( "#header.poolName" )
public String addRE ( List < WmsSellOutEmbryo > wmsSellOutEmbryoList ) {
String result = "完成" ;
String stockOrder = "BH" ;
SimpleDateFormat dateFormat = new SimpleDateFormat ( "yyyyMMdd" ) ;
//TH ods_procure_order_card
Date date = new Date ( ) ;
String formattedDate = dateFormat . format ( date ) ;
//销售出库界面同一笔交货单可以生成多笔备货单,无限制,进行限制,防止重复生成---即要对wms_sell_out_embryo页面进行修改
String result = "" ;
Integer ten = 0 ;
List < WmsSellOutEmbryo > wmsSellOutEmbryos = new ArrayList < > ( ) ;
for ( WmsSellOutEmbryo wmsSellOutEmbryo :
wmsSellOutEmbryoList ) {
WmsSellOutEmbryo wmsSellOutEmbryo1 = wmsSellOutEmbryoMapper . selectWmsSellOutEmbryoById ( wmsSellOutEmbryo . getId ( ) ) ;
String productCode = wmsSellOutEmbryo1 . getProductCode ( ) ;
BigDecimal planQuantity = wmsSellOutEmbryo1 . getPlanQuantity ( ) ;
wmsSellOutEmbryo1 . getDeliveryOrder ( ) ;
wmsSellOutEmbryos . add ( wmsSellOutEmbryo1 ) ;
}
//去重
// 创建一个 HashSet 用于存储已经遇到的交付订单号,以便进行去重
Set < String > deliveryOrderSet = new HashSet < > ( ) ;
List < WmsSellOutEmbryo > wmsSellOutEmbryoList1 = new ArrayList < > ( ) ;
for ( WmsSellOutEmbryo wmsSellOutEmbryo :
wmsSellOutEmbryos ) {
String wmsSellOutEmbryoDeliveryOrder = wmsSellOutEmbryo . getDeliveryOrder ( ) ;
// 检查交付订单号是否已经存在于 deliveryOrderSet 中
if ( ! deliveryOrderSet . contains ( wmsSellOutEmbryoDeliveryOrder ) ) {
// 如果交付订单号不存在,则将其添加到 deliveryOrderSet 中
deliveryOrderSet . add ( wmsSellOutEmbryoDeliveryOrder ) ;
// 将当前 WmsSellOutEmbryo 对象添加到 wmsSellOutEmbryoList1 中
wmsSellOutEmbryoList1 . add ( wmsSellOutEmbryo ) ;
}
}
for ( WmsSellOutEmbryo wmsSellOutEmbryo :
wmsSellOutEmbryoList1 ) {
//选一个单子,把单子的全部项都生成
WmsSellOutEmbryo wmsSellOutEmbryo1 = new WmsSellOutEmbryo ( ) ;
wmsSellOutEmbryo1 . setDeliveryOrder ( wmsSellOutEmbryo . getDeliveryOrder ( ) ) ;
List < WmsSellOutEmbryo > wmsSellOutEmbryoList2 = wmsSellOutEmbryoMapper . selectWmsSellOutEmbryoListZT ( wmsSellOutEmbryo1 ) ;
// String stockOrder="BH";
SimpleDateFormat dateFormat = new SimpleDateFormat ( "yyyyMMdd" ) ;
Date date = new Date ( ) ;
String formattedDate = dateFormat . format ( date ) ;
//wmsSellOutEmbryoList2是我根据入参去重后, 查询出来的所有数据
for ( WmsSellOutEmbryo wmsSellOutEmbryo2 :
wmsSellOutEmbryoList2 ) {
String productCode = wmsSellOutEmbryo2 . getProductCode ( ) ;
BigDecimal planQuantity = wmsSellOutEmbryo2 . getPlanQuantity ( ) ;
List < WmsFpStorageNewsSn > wmsFpStorageNewsSns = wmsFpStorageNewsSnMapper . selectwmsFpStorageNewsGroupWaCode ( productCode ) ;
if ( wmsFpStorageNewsSns . size ( ) < 1 ) {
return productCode + "无库存" ;
if ( wmsFpStorageNewsSns . size ( ) < 1 ) { //没有库存,就就跳过,但是要记录,对前端进行提示
ten = ten + 1 ;
result = result + "," + productCode ;
continue ;
}
String stock = wmsSellOutEmbryoMapper . selectwmsFpStorageNewsTS ( formattedDate ) ;
//区分大小planQuantity
@ -187,21 +226,48 @@ public class WmsSellOutEmbryoServiceImpl implements IWmsSellOutEmbryoService {
//planQuantity看成总数量
if ( planQuantity . compareTo ( tem ) < = 0 ) {
//生成一个
wmsSellOutEmbryo1 . setStockOrder ( "BH" + stock ) ;
wmsSellOutEmbryo1 . setWaCode ( wmsFpStorageNewsSn . getWaCode ( ) ) ;
wmsSellOutEmbryo1 . setPlanQuantity ( planQuantity ) ;
wmsSellOutEmbryo1 . setId ( IdUtils . fastSimpleUUID ( ) ) ;
wmsSellOutEmbryoMapper . insertWmsSellOutEmbryoOrder ( wmsSellOutEmbryo1 ) ;
wmsSellOutEmbryoMapper . updateWmsSellOutEmbryoAddOut ( wmsSellOutEmbryo2 , planQuantity ) ; //对订单进行修改--添加出库数量
wmsSellOutEmbryo2 . setStockOrder ( "BH" + stock ) ;
wmsSellOutEmbryo2 . setWaCode ( wmsFpStorageNewsSn . getWaCode ( ) ) ;
wmsSellOutEmbryo2 . setPlanQuantity ( planQuantity ) ;
wmsSellOutEmbryo2 . setId ( IdUtils . fastSimpleUUID ( ) ) ;
wmsSellOutEmbryoMapper . insertWmsSellOutEmbryoOrder ( wmsSellOutEmbryo2 ) ;
return result ;
} else {
wmsSellOutEmbryo1 . setStockOrder ( "BH" + stock ) ;
wmsSellOutEmbryoMapper . updateWmsSellOutEmbryoAddOut ( wmsSellOutEmbryo2 , tem ) ;
wmsSellOutEmbryo2 . setStockOrder ( "BH" + stock ) ;
planQuantity = planQuantity . subtract ( tem ) ; // 用总数量减去tem, 更新planQuantity的值
wmsSellOutEmbryo1 . setWaCode ( wmsFpStorageNewsSn . getWaCode ( ) ) ; // 设置wmsSellOutEmbryo1的waCode为当前wmsFpStorageNewsSn的waCode
wmsSellOutEmbryo1 . setPlanQuantity ( tem ) ; // 将tem的值赋给wmsSellOutEmbryo1的planQuantity
wmsSellOutEmbryo1 . setId ( IdUtils . fastSimpleUUID ( ) ) ; // 生成一个唯一ID并设置到wmsSellOutEmbryo1的ID字段
wmsSellOutEmbryoMapper . insertWmsSellOutEmbryoOrder ( wmsSellOutEmbryo1 ) ; // 将wmsSellOutEmbryo1插入到数据库
wmsSellOutEmbryo2 . setWaCode ( wmsFpStorageNewsSn . getWaCode ( ) ) ; // 设置wmsSellOutEmbryo2的waCode为当前wmsFpStorageNewsSn的waCode
wmsSellOutEmbryo2 . setPlanQuantity ( tem ) ; // 将tem的值赋给wmsSellOutEmbryo2的planQuantity
wmsSellOutEmbryo2 . setId ( IdUtils . fastSimpleUUID ( ) ) ; // 生成一个唯一ID并设置到wmsSellOutEmbryo2的ID字段
wmsSellOutEmbryoMapper . insertWmsSellOutEmbryoOrder ( wmsSellOutEmbryo2 ) ; // 将wmsSellOutEmbryo2插入到数据库
}
}
}
}
//
//
//
// //TH ods_procure_order_card
//
//
// for (WmsSellOutEmbryo wmsSellOutEmbryo:
// wmsSellOutEmbryoList) {
// WmsSellOutEmbryo wmsSellOutEmbryo1= wmsSellOutEmbryoMapper.selectWmsSellOutEmbryoById(wmsSellOutEmbryo.getId());
// String productCode =wmsSellOutEmbryo1.getProductCode();
// BigDecimal planQuantity = wmsSellOutEmbryo1.getPlanQuantity();
// List<WmsFpStorageNewsSn> wmsFpStorageNewsSns= wmsFpStorageNewsSnMapper.selectwmsFpStorageNewsGroupWaCode(productCode);
// if (wmsFpStorageNewsSns.size()<1){
// return productCode+"无库存";
// }
// String stock= wmsSellOutEmbryoMapper.selectwmsFpStorageNewsTS(formattedDate);
//
// }
if ( ten > 0 ) {
return result + "没有对应订单库存" ;
} else {
result = "完成" ;
}
return result ;
}