fix:更新时间

This commit is contained in:
郭飞 2025-04-25 15:24:40 +08:00
parent 4f37e69855
commit 51a4cbf46c
2 changed files with 2 additions and 2 deletions

View File

@ -47,7 +47,7 @@ public class AllocateStockInServiceImpl implements AllocateStockInService {
//基于单据获取要操作的Box
List<MaterialPacking> boxList = toSapDao.getBoxListByShipRequestName(shipRequestName);
//保存物料凭证
toSapDao.updateStockState(boxList, "Stocked", undoId);
toSapDao.updateStockState(boxList, "Stocked", undoId, user);
//记录出入库流水
toSapDao.saveUnDoInfo(boxList, undoId, "");
//更新库存状态和仓库

View File

@ -100,7 +100,7 @@ public class PurchaseReturnServiceImpl implements PurchaseReturnService {
String undoId = toSAPServiceImpl.OrderStockBackOut(receiverequestname, siteName, user);
// String undoId = "111";
//更新库存状态
toSapDao.updateStockState(purchaseReturnBoxList, "StockOut", undoId);
toSapDao.updateStockState(purchaseReturnBoxList, "StockOut", undoId, user);
//更新出入库流水
toSapDao.saveUnDoInfo(purchaseReturnBoxList, undoId, "");
return "";