From 64d7f20497c2ac4c4bed43f999f4d9cb958359dc Mon Sep 17 00:00:00 2001 From: FanLian Date: Mon, 19 Jun 2023 15:02:56 +0800 Subject: [PATCH] =?UTF-8?q?=E7=A9=BA=E8=BD=BD=E5=85=B7=E5=87=BA=E5=BA=93?= =?UTF-8?q?=E5=88=A0=E9=99=A4=E5=87=BA=E5=85=A5=E5=8F=A3=E6=93=8D=E4=BD=9C?= =?UTF-8?q?=E7=9A=84=E9=83=A8=E5=88=86?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- WarehouseMgr/Tnb.WarehouseMgr/WmsBindService.cs | 12 ++++++++++++ .../Tnb.WarehouseMgr/WmsEmptyOutstockService .cs | 13 ------------- 2 files changed, 12 insertions(+), 13 deletions(-) create mode 100644 WarehouseMgr/Tnb.WarehouseMgr/WmsBindService.cs diff --git a/WarehouseMgr/Tnb.WarehouseMgr/WmsBindService.cs b/WarehouseMgr/Tnb.WarehouseMgr/WmsBindService.cs new file mode 100644 index 00000000..b01e963b --- /dev/null +++ b/WarehouseMgr/Tnb.WarehouseMgr/WmsBindService.cs @@ -0,0 +1,12 @@ +using System; +using System.Collections.Generic; +using System.Linq; +using System.Text; +using System.Threading.Tasks; + +namespace Tnb.WarehouseMgr +{ + internal class WmsBindService + { + } +} diff --git a/WarehouseMgr/Tnb.WarehouseMgr/WmsEmptyOutstockService .cs b/WarehouseMgr/Tnb.WarehouseMgr/WmsEmptyOutstockService .cs index 00192980..8f9247ee 100644 --- a/WarehouseMgr/Tnb.WarehouseMgr/WmsEmptyOutstockService .cs +++ b/WarehouseMgr/Tnb.WarehouseMgr/WmsEmptyOutstockService .cs @@ -157,19 +157,6 @@ namespace Tnb.WarehouseMgr await _db.Insertable(wmsEmptyOutstockD) .ExecuteCommandAsync(); - WmsHandleH handleH = new(); - handleH.org_id = _userManager.User.OrganizeId; - handleH.startlocation_id = carrys?[i].location_id!; - handleH.endlocation_id = ePoint.location_id; - handleH.bill_code = input.data[nameof(WmsHandleH.bill_code)]?.ToString()!; - handleH.biz_type = input.data[nameof(WmsHandleH.biz_type)]?.ToString()!; - handleH.carry_id = input.data[nameof(WmsHandleH.carry_id)]?.ToString()!; - handleH.carry_code = input.data[nameof(WmsHandleH.carry_code)]?.ToString(); - handleH.require_id = input.data["ReturnIdentity"].ToString(); - handleH.require_code = input.data[nameof(WmsHandleH.bill_code)]?.ToString()!; - handleH.create_id = _userManager.UserId; - handleH.create_time = DateTime.Now; - preTaskUpInput.PreTaskRecord = handleH; //根据载具移出Id,回更单据状态 await _db.Updateable().SetColumns(it => new WmsEmptyOutstockH { status = WmsWareHouseConst.BILLSTATUS_ON_ID }).Where(it => it.id == preTaskUpInput.RquireId).ExecuteCommandAsync();