|
|
|
@ -453,14 +453,48 @@ public class OdsProcureOutOrderServiceImpl implements IOdsProcureOutOrderService
|
|
|
|
|
|
|
|
|
|
public void OutboundPostingzcSAPGYTS(List<OdsProcureOutOrder> orderList) {
|
|
|
|
|
//先根据出库单获取
|
|
|
|
|
// * 退料的移动类型为 262
|
|
|
|
|
// * 领料的移动类型为 261-- and wms_ods_procure_out_order.Order_Status='3'
|
|
|
|
|
//
|
|
|
|
|
// -- and wms_ods_procure_out_order.Order_Status='3'
|
|
|
|
|
//我把过账状态-- and wms_ods_procure_out_order.User_Defined10!='2'去掉了
|
|
|
|
|
List<OdsProcureOutOrder> orderList1 = odsProcureOutOrderMapper.selectWmsOdsProcureOutOrderSpecialByIDs(orderList);
|
|
|
|
|
for (OdsProcureOutOrder order:
|
|
|
|
|
orderList1 ) {
|
|
|
|
|
if ("成本中心".equals(orderList1.get(0).getUserDefined6())){//区分出来内部订单
|
|
|
|
|
Map paramMap=new HashMap<>();
|
|
|
|
|
List<Map> mapList = new ArrayList<>();
|
|
|
|
|
paramMap.put("COSTCENTER", order.getUserDefined3());//成本中心
|
|
|
|
|
paramMap.put("PLANT", order.getSiteCode());//工厂
|
|
|
|
|
paramMap.put("LGORT", order.getLocCode());//库存地点
|
|
|
|
|
paramMap.put("MATNR", order.getMaterialCode());//物料号
|
|
|
|
|
paramMap.put("QUANTITY", order.getPlanNumber());//数量
|
|
|
|
|
paramMap.put("MEINS", order.getUnit());//条目单位
|
|
|
|
|
paramMap.put("BATCH", order.getUserDefined1());//批号
|
|
|
|
|
paramMap.put("PROD_DATE", order.getPlanDate());//生产日期
|
|
|
|
|
paramMap.put("EXPIRYDATE", order.getUserDefined5());//货架寿命到期日
|
|
|
|
|
mapList.add(paramMap);
|
|
|
|
|
R result2 = remoteSapService.sapProductOutboundCostCenter(mapList);
|
|
|
|
|
|
|
|
|
|
int code = result2.getCode();
|
|
|
|
|
OdsProcureOutOrder order1 = new OdsProcureOutOrder();
|
|
|
|
|
String msg = result2.getMsg();
|
|
|
|
|
order.setUserDefined11(msg);
|
|
|
|
|
if (code== 200){
|
|
|
|
|
//过账成功
|
|
|
|
|
Map map = new HashMap();
|
|
|
|
|
map = (Map) result2.getData();
|
|
|
|
|
String userDefined9 = (String) map.get("MATERIALDOCUMENT");
|
|
|
|
|
order.setUserDefined9(userDefined9);
|
|
|
|
|
order.setUserDefined10("2");//成功
|
|
|
|
|
// for (OdsProcureOutOrder order2:
|
|
|
|
|
// orderList2 ) {
|
|
|
|
|
// BigDecimal sapNumber= order1.getSapNumber();
|
|
|
|
|
// order1.setSapNumber(sapNumber.add(order1.getOutNumber()));//成功..这个是否的outNumber是用已出库减去已经过账的数量
|
|
|
|
|
// odsProcureOutOrderMapper.updateWMSOdsProcureOutOrdersapById(order1);
|
|
|
|
|
// }
|
|
|
|
|
}
|
|
|
|
|
//这个地方需要对
|
|
|
|
|
}else {
|
|
|
|
|
//内部订单
|
|
|
|
|
Map paramMap=new HashMap<>();
|
|
|
|
|
List<Map> mapList = new ArrayList<>();
|
|
|
|
|
paramMap.put("COSTCENTER", order.getUserDefined3());//
|
|
|
|
@ -473,10 +507,7 @@ public class OdsProcureOutOrderServiceImpl implements IOdsProcureOutOrderService
|
|
|
|
|
paramMap.put("PROD_DATE", order.getPlanDate());//生产日期
|
|
|
|
|
paramMap.put("EXPIRYDATE", order.getUserDefined5());//货架寿命到期日
|
|
|
|
|
mapList.add(paramMap);
|
|
|
|
|
R result2 = remoteSapService.sapProductOutboundCostCenter(mapList);
|
|
|
|
|
}else {
|
|
|
|
|
//内部订单
|
|
|
|
|
|
|
|
|
|
// R result2 = remoteSapService.sapProductOutboundCostTWO(mapList);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|