1
This commit is contained in:
@@ -65,8 +65,8 @@ namespace Tnb.WarehouseMgr
|
|||||||
if (input == null) throw new ArgumentNullException(nameof(input));
|
if (input == null) throw new ArgumentNullException(nameof(input));
|
||||||
var carryId = input.data.ContainsKey("carry_id") ? input.data["carry_id"]?.ToString() : "";
|
var carryId = input.data.ContainsKey("carry_id") ? input.data["carry_id"]?.ToString() : "";
|
||||||
var subCarryId = input.data.ContainsKey("newcarry_id") ? input.data["newcarry_id"]?.ToString() : "";
|
var subCarryId = input.data.ContainsKey("newcarry_id") ? input.data["newcarry_id"]?.ToString() : "";
|
||||||
var carry = await _db.Queryable<WmsCarryH>().FirstAsync(it => it.id == carryId);
|
var carry = await _db.Queryable<WmsCarryH>().SingleAsync(it => it.id == carryId);
|
||||||
var subCarry = await _db.Queryable<WmsCarryH>().FirstAsync(it => it.id == subCarryId);
|
var subCarry = await _db.Queryable<WmsCarryH>().SingleAsync(it => it.id == subCarryId);
|
||||||
WmsCarrybindH wmsCarrybindH = carry.Adapt<WmsCarrybindH>();
|
WmsCarrybindH wmsCarrybindH = carry.Adapt<WmsCarrybindH>();
|
||||||
if (carry != null && subCarry != null)
|
if (carry != null && subCarry != null)
|
||||||
{
|
{
|
||||||
@@ -83,9 +83,28 @@ namespace Tnb.WarehouseMgr
|
|||||||
row = await _db.Updateable(carry).ExecuteCommandAsync();
|
row = await _db.Updateable(carry).ExecuteCommandAsync();
|
||||||
subCarry.carry_status = "1";
|
subCarry.carry_status = "1";
|
||||||
row = await _db.Updateable(subCarry).ExecuteCommandAsync();
|
row = await _db.Updateable(subCarry).ExecuteCommandAsync();
|
||||||
|
var items = await _db.Queryable<WmsCarryCode>().Where(it => it.carry_id == subCarryId).ToListAsync();
|
||||||
|
for (int i = 0; i < items.Count; i++)
|
||||||
|
{
|
||||||
|
WmsCarrybindCode wmsCarrybindCode = new();
|
||||||
|
wmsCarrybindCode.id = SnowflakeIdHelper.NextId();
|
||||||
|
wmsCarrybindCode.org_id = subCarry.id;
|
||||||
|
wmsCarrybindCode.carrybind_id = wmsCarrybindH.id;
|
||||||
|
wmsCarrybindCode.material_id = items[i].material_id;
|
||||||
|
wmsCarrybindCode.material_code = items[i].material_code;
|
||||||
|
wmsCarrybindCode.barcode = items[i].barcode;
|
||||||
|
wmsCarrybindCode.code_batch = items[i].code_batch;
|
||||||
|
wmsCarrybindCode.codeqty = items[i].codeqty;
|
||||||
|
wmsCarrybindCode.membercarry_id = subCarry.id;
|
||||||
|
wmsCarrybindCode.membercarry_code = subCarry.carry_code;
|
||||||
|
wmsCarrybindCode.unit_id = items[i].unit_id;
|
||||||
|
wmsCarrybindCode.unit_code = items[i].unit_code;
|
||||||
|
wmsCarrybindCode.create_id = _userManager.UserId;
|
||||||
|
wmsCarrybindCode.create_time = DateTime.Now;
|
||||||
|
row = await _db.Insertable(wmsCarrybindCode).ExecuteCommandAsync();
|
||||||
|
}
|
||||||
isOk = (row > 0);
|
isOk = (row > 0);
|
||||||
if (!isOk) throw Oops.Oh(ErrorCode.COM1001);
|
if (!isOk) throw Oops.Oh(ErrorCode.COM1001);
|
||||||
|
|
||||||
}
|
}
|
||||||
else
|
else
|
||||||
{
|
{
|
||||||
|
|||||||
@@ -104,6 +104,7 @@ namespace Tnb.WarehouseMgr
|
|||||||
preTask.bill_code = _billRullService.GetBillNumber(WmsWareHouseConst.WMS_PRETASK_H_ENCODE).GetAwaiter().GetResult();
|
preTask.bill_code = _billRullService.GetBillNumber(WmsWareHouseConst.WMS_PRETASK_H_ENCODE).GetAwaiter().GetResult();
|
||||||
preTask.status = WmsWareHouseConst.PRETASK_BILL_STATUS_DXF_ID;
|
preTask.status = WmsWareHouseConst.PRETASK_BILL_STATUS_DXF_ID;
|
||||||
preTask.biz_type = WmsWareHouseConst.BIZTYPE_WMSEMPTYINSTOCK_ID;
|
preTask.biz_type = WmsWareHouseConst.BIZTYPE_WMSEMPTYINSTOCK_ID;
|
||||||
|
preTask.task_type = WmsWareHouseConst.WMS_PRETASK_INSTOCK_TYPE_ID;
|
||||||
preTask.carry_id = input.data[nameof(preTask.carry_id)]?.ToString()!;
|
preTask.carry_id = input.data[nameof(preTask.carry_id)]?.ToString()!;
|
||||||
preTask.carry_code = input.data[nameof(preTask.carry_code)]?.ToString()!;
|
preTask.carry_code = input.data[nameof(preTask.carry_code)]?.ToString()!;
|
||||||
preTask.area_id = sPoint?.area_id;
|
preTask.area_id = sPoint?.area_id;
|
||||||
|
|||||||
@@ -77,20 +77,7 @@ namespace Tnb.WarehouseMgr
|
|||||||
var setQty = await _db.Queryable<WmsEmptyOutstockH>().FirstAsync(it => it.bill_code == input.data[nameof(WmsEmptyOutstockH.bill_code)].ToString());
|
var setQty = await _db.Queryable<WmsEmptyOutstockH>().FirstAsync(it => it.bill_code == input.data[nameof(WmsEmptyOutstockH.bill_code)].ToString());
|
||||||
var carrys = await _db.Queryable<WmsCarryH>().LeftJoin<BasLocation>((a, b) => a.location_id == b.id)
|
var carrys = await _db.Queryable<WmsCarryH>().LeftJoin<BasLocation>((a, b) => a.location_id == b.id)
|
||||||
.Where((a, b) => a.carrystd_id == input.data[nameof(WmsEmptyOutstockH.carrystd_id)].ToString()
|
.Where((a, b) => a.carrystd_id == input.data[nameof(WmsEmptyOutstockH.carrystd_id)].ToString()
|
||||||
&& a.carry_status == "0" && a.is_lock == 0 && b.is_lock == 0 && b.is_type == "0")
|
&& a.carry_status == "0" && a.is_lock == 0 && b.is_lock == 0)
|
||||||
.Select((a, b) => new
|
|
||||||
{
|
|
||||||
carry_id = a.id,
|
|
||||||
carry_code= a.carry_code,
|
|
||||||
carrystd_id = a.id,
|
|
||||||
location_id = b.id,
|
|
||||||
carry_status = a.carry_status,
|
|
||||||
c_is_lock = a.is_lock,
|
|
||||||
l_is_lock = b.is_lock,
|
|
||||||
l_is_use = b.is_use,
|
|
||||||
l_is_type = b.is_type
|
|
||||||
})
|
|
||||||
|
|
||||||
.ToListAsync();
|
.ToListAsync();
|
||||||
|
|
||||||
WmsPointH sPoint = null;
|
WmsPointH sPoint = null;
|
||||||
@@ -99,12 +86,16 @@ namespace Tnb.WarehouseMgr
|
|||||||
{
|
{
|
||||||
ePoint = await _db.Queryable<WmsPointH>().FirstAsync(it => it.location_id == input.data[nameof(WmsPointH.location_id)].ToString());
|
ePoint = await _db.Queryable<WmsPointH>().FirstAsync(it => it.location_id == input.data[nameof(WmsPointH.location_id)].ToString());
|
||||||
}
|
}
|
||||||
|
int i = 0;
|
||||||
|
|
||||||
|
|
||||||
//根据每个载具的起始库位做路径运算
|
//根据每个载具的起始库位做路径运算
|
||||||
for (int i = 0; i < setQty.qty; i++)
|
for (i = 0; i < setQty.qty; i++)
|
||||||
{
|
{
|
||||||
|
|
||||||
if (carrys?.Count > 0)
|
if (carrys?.Count > 0)
|
||||||
sPoint = await _db.Queryable<WmsPointH>().FirstAsync(it => it.location_id == carrys[i].location_id);
|
sPoint = await _db.Queryable<WmsPointH>().FirstAsync(it => it.location_id == carrys[i].location_id);
|
||||||
|
var isOk = false;
|
||||||
if (sPoint != null && ePoint != null)
|
if (sPoint != null && ePoint != null)
|
||||||
{
|
{
|
||||||
var points = await _wareHouseService.PathAlgorithms(sPoint.id, ePoint.id);
|
var points = await _wareHouseService.PathAlgorithms(sPoint.id, ePoint.id);
|
||||||
@@ -129,7 +120,7 @@ namespace Tnb.WarehouseMgr
|
|||||||
preTask.status = WmsWareHouseConst.PRETASK_BILL_STATUS_DXF_ID;
|
preTask.status = WmsWareHouseConst.PRETASK_BILL_STATUS_DXF_ID;
|
||||||
preTask.biz_type = WmsWareHouseConst.BIZTYPE_WMSEPTYOUTSTK_ID;
|
preTask.biz_type = WmsWareHouseConst.BIZTYPE_WMSEPTYOUTSTK_ID;
|
||||||
preTask.task_type = WmsWareHouseConst.WMS_PRETASK_OUTSTOCK_TYPE_ID;
|
preTask.task_type = WmsWareHouseConst.WMS_PRETASK_OUTSTOCK_TYPE_ID;
|
||||||
preTask.carry_id = carrys![i].carry_id;
|
preTask.carry_id = carrys![i].id;
|
||||||
preTask.carry_code = carrys![i].carry_code;
|
preTask.carry_code = carrys![i].carry_code;
|
||||||
preTask.area_id = sPoint?.area_id!;
|
preTask.area_id = sPoint?.area_id!;
|
||||||
preTask.area_code = it.Key;
|
preTask.area_code = it.Key;
|
||||||
@@ -139,19 +130,55 @@ namespace Tnb.WarehouseMgr
|
|||||||
preTask.create_time = DateTime.Now;
|
preTask.create_time = DateTime.Now;
|
||||||
return preTask;
|
return preTask;
|
||||||
}).ToList();
|
}).ToList();
|
||||||
var isOk = await _wareHouseService.GenPreTask(preTasks, null);
|
//更新页面
|
||||||
if (isOk)
|
isOk = await _wareHouseService.GenPreTask(preTasks, null);
|
||||||
{
|
|
||||||
//所有载具加锁
|
|
||||||
var ids = carrys.Select(x => x.carry_id).ToList();
|
|
||||||
await _db.Updateable<BasLocation>().SetColumns(it => new BasLocation { is_lock = 1 }).Where(it => ids.Contains(it.id)).ExecuteCommandAsync();
|
|
||||||
//所有库位加锁
|
|
||||||
var loc = carrys.Select(x => x.location_id).ToList();
|
|
||||||
await _db.Updateable<BasLocation>().SetColumns(it => new BasLocation { is_lock = 1 }).Where(it => loc.Contains(it.id)).ExecuteCommandAsync();
|
|
||||||
|
|
||||||
}
|
}
|
||||||
|
if (isOk)
|
||||||
|
{
|
||||||
|
var preTaskUpInput = new GenPreTaskUpInput();
|
||||||
|
preTaskUpInput.RquireId = input.data["ReturnIdentity"].ToString();
|
||||||
|
preTaskUpInput.CarryId = carrys![i].id;
|
||||||
|
preTaskUpInput.CarryStartLocationId = points.FirstOrDefault().location_id;
|
||||||
|
preTaskUpInput.CarryStartLocationCode = points.FirstOrDefault().location_code;
|
||||||
|
preTaskUpInput.LocationIds = points.Select(x => x.location_id).ToList();
|
||||||
|
|
||||||
|
//更新明细表
|
||||||
|
WmsEmptyOutstockD wmsEmptyOutstockD = new ();
|
||||||
|
wmsEmptyOutstockD.id = SnowflakeIdHelper.NextId();
|
||||||
|
wmsEmptyOutstockD.bill_id = input.data[nameof(WmsEmptyOutstockH.bill_code)]?.ToString()!;
|
||||||
|
wmsEmptyOutstockD.biz_type = WmsWareHouseConst.BIZTYPE_WMSEPTYOUTSTK_ID;
|
||||||
|
wmsEmptyOutstockD.location_id = ePoint.location_id;
|
||||||
|
wmsEmptyOutstockD.status = WmsWareHouseConst.BILLSTATUS_COMPLETE_ID;
|
||||||
|
wmsEmptyOutstockD.carry_id = carrys[i].id;
|
||||||
|
wmsEmptyOutstockD.carry_code = carrys[i].carry_code;
|
||||||
|
wmsEmptyOutstockD.create_id = _userManager.UserId;
|
||||||
|
wmsEmptyOutstockD.create_time = DateTime.Now;
|
||||||
|
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<WmsEmptyOutstockH>().SetColumns(it => new WmsEmptyOutstockH { status = WmsWareHouseConst.BILLSTATUS_ON_ID }).Where(it => it.id == preTaskUpInput.RquireId).ExecuteCommandAsync();
|
||||||
|
|
||||||
|
await _wareHouseService.GenInStockTaskHandleAfter(preTaskUpInput,
|
||||||
|
it => new WmsCarryH { is_lock = 1, location_id = preTaskUpInput.CarryStartLocationId, location_code = preTaskUpInput.CarryStartLocationCode },
|
||||||
|
it => new BasLocation { is_lock = 1 });
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
await _db.Ado.CommitTranAsync();
|
await _db.Ado.CommitTranAsync();
|
||||||
|
|||||||
@@ -21,6 +21,7 @@ using Tnb.WarehouseMgr.Entities;
|
|||||||
using Tnb.WarehouseMgr.Entities.Attributes;
|
using Tnb.WarehouseMgr.Entities.Attributes;
|
||||||
using Tnb.WarehouseMgr.Entities.Consts;
|
using Tnb.WarehouseMgr.Entities.Consts;
|
||||||
using Tnb.WarehouseMgr.Entities.Dto;
|
using Tnb.WarehouseMgr.Entities.Dto;
|
||||||
|
using Tnb.WarehouseMgr.Entities.Enums;
|
||||||
using Tnb.WarehouseMgr.Interfaces;
|
using Tnb.WarehouseMgr.Interfaces;
|
||||||
|
|
||||||
namespace Tnb.WarehouseMgr
|
namespace Tnb.WarehouseMgr
|
||||||
@@ -29,8 +30,7 @@ namespace Tnb.WarehouseMgr
|
|||||||
/// <summary>
|
/// <summary>
|
||||||
/// 空载具出库
|
/// 空载具出库
|
||||||
/// </summary>
|
/// </summary>
|
||||||
[OverideVisualDev(ModuleConsts.MODULE_WMSEMPTYOUTSTKPDA_ID)]
|
[OverideVisualDev(ModuleConsts.MODULE_WMSEMPTYOUTSTK_ID)]
|
||||||
[ServiceModule(BizTypeId)]
|
|
||||||
|
|
||||||
public class WmsPDAEmptyOutstockService : BaseWareHouseService, IPdaStroage
|
public class WmsPDAEmptyOutstockService : BaseWareHouseService, IPdaStroage
|
||||||
{
|
{
|
||||||
@@ -65,11 +65,7 @@ namespace Tnb.WarehouseMgr
|
|||||||
{
|
{
|
||||||
await _db.Ado.BeginTranAsync();
|
await _db.Ado.BeginTranAsync();
|
||||||
|
|
||||||
|
VisualDevEntity? templateEntity = await _visualDevService.GetInfoById(ModuleConsts.MODULE_WMSEMPTYOUTSTK_ID, true);
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
VisualDevEntity? templateEntity = await _visualDevService.GetInfoById(ModuleConsts.MODULE_WMSEMPTYOUTSTKPDA_ID, true);
|
|
||||||
await _runService.Create(templateEntity, input);
|
await _runService.Create(templateEntity, input);
|
||||||
|
|
||||||
/*//入库取终点
|
/*//入库取终点
|
||||||
@@ -77,21 +73,10 @@ namespace Tnb.WarehouseMgr
|
|||||||
var endLocations = await _wareHouseService.InStockStrategy(inStockStrategyInput);*/
|
var endLocations = await _wareHouseService.InStockStrategy(inStockStrategyInput);*/
|
||||||
|
|
||||||
//出库取起点,获取所有符合输入的载具规格的载具
|
//出库取起点,获取所有符合输入的载具规格的载具
|
||||||
var setQty = await _db.Queryable<WmsEmptyOutstockH>().FirstAsync(it => it.bill_code == input.data[nameof(WmsEmptyOutstockH.bill_code)]);
|
var setQty = await _db.Queryable<WmsEmptyOutstockH>().FirstAsync(it => it.bill_code == input.data[nameof(WmsEmptyOutstockH.bill_code)].ToString());
|
||||||
var carrys = await _db.Queryable<WmsCarryH>().LeftJoin<BasLocation>((a, b) => a.location_id == b.id)
|
var carrys = await _db.Queryable<WmsCarryH>().LeftJoin<BasLocation>((a, b) => a.location_id == b.id)
|
||||||
.Select((a,b) => new
|
.Where((a, b) => a.carrystd_id == input.data[nameof(WmsEmptyOutstockH.carrystd_id)].ToString()
|
||||||
{
|
&& a.carry_status == "0" && a.is_lock == 0 && b.is_lock == 0)
|
||||||
carry_id = a.id,
|
|
||||||
carrystd_id = a.id,
|
|
||||||
location_id = b.id,
|
|
||||||
carry_status = a.carry_status,
|
|
||||||
c_is_lock = a.is_lock,
|
|
||||||
l_is_lock = b.is_lock,
|
|
||||||
l_is_use = b.is_use,
|
|
||||||
l_is_type = b.is_type
|
|
||||||
})
|
|
||||||
.Where(it => it.carrystd_id == input.data[nameof(WmsEmptyOutstockH.carrystd_id)].ToString()
|
|
||||||
&& it.carry_status == "0"&& it.c_is_lock == 0 && it.l_is_lock == 0 && it.l_is_use == "0" && it.l_is_type == "0")
|
|
||||||
.ToListAsync();
|
.ToListAsync();
|
||||||
|
|
||||||
WmsPointH sPoint = null;
|
WmsPointH sPoint = null;
|
||||||
@@ -100,10 +85,15 @@ namespace Tnb.WarehouseMgr
|
|||||||
{
|
{
|
||||||
ePoint = await _db.Queryable<WmsPointH>().FirstAsync(it => it.location_id == input.data[nameof(WmsPointH.location_id)].ToString());
|
ePoint = await _db.Queryable<WmsPointH>().FirstAsync(it => it.location_id == input.data[nameof(WmsPointH.location_id)].ToString());
|
||||||
}
|
}
|
||||||
|
int i = 0;
|
||||||
|
var isOk = false;
|
||||||
|
|
||||||
//根据每个载具的起始库位做路径运算
|
//根据每个载具的起始库位做路径运算
|
||||||
for(int i =0; i< setQty.qty ;i++)
|
for (i = 0; i < setQty.qty; i++)
|
||||||
{
|
{
|
||||||
sPoint = await _db.Queryable<WmsPointH>().FirstAsync(it => it.location_id == carrys[i].location_id);
|
|
||||||
|
if (carrys?.Count > 0)
|
||||||
|
sPoint = await _db.Queryable<WmsPointH>().FirstAsync(it => it.location_id == carrys[i].location_id);
|
||||||
|
|
||||||
if (sPoint != null && ePoint != null)
|
if (sPoint != null && ePoint != null)
|
||||||
{
|
{
|
||||||
@@ -119,18 +109,19 @@ namespace Tnb.WarehouseMgr
|
|||||||
|
|
||||||
WmsPretaskH preTask = new();
|
WmsPretaskH preTask = new();
|
||||||
preTask.org_id = _userManager.User.OrganizeId;
|
preTask.org_id = _userManager.User.OrganizeId;
|
||||||
preTask.startlocation_id = sPoint?.location_id;
|
preTask.startlocation_id = sPoint?.location_id!;
|
||||||
preTask.startlocation_code = sPoint?.location_code;
|
preTask.startlocation_code = sPoint?.location_code!;
|
||||||
preTask.endlocation_id = ePoint?.location_id;
|
preTask.endlocation_id = ePoint?.location_id!;
|
||||||
preTask.endlocation_code = ePoint?.location_code;
|
preTask.endlocation_code = ePoint?.location_code!;
|
||||||
preTask.start_floor = sPoint?.floor.ToString();
|
preTask.start_floor = sPoint?.floor.ToString();
|
||||||
preTask.end_floor = ePoint?.floor.ToString();
|
preTask.end_floor = ePoint?.floor.ToString();
|
||||||
preTask.bill_code = _billRullService.GetBillNumber(WmsWareHouseConst.WMS_PRETASK_H_ENCODE).GetAwaiter().GetResult();
|
preTask.bill_code = _billRullService.GetBillNumber(WmsWareHouseConst.WMS_PRETASK_H_ENCODE).GetAwaiter().GetResult();
|
||||||
preTask.status = WmsWareHouseConst.PRETASK_BILL_STATUS_DXF_ID;
|
preTask.status = WmsWareHouseConst.PRETASK_BILL_STATUS_DXF_ID;
|
||||||
preTask.biz_type = WmsWareHouseConst.BIZTYPE_WMSEMPTYINSTOCK_ID;
|
preTask.biz_type = WmsWareHouseConst.BIZTYPE_WMSEPTYOUTSTK_ID;
|
||||||
preTask.carry_id = input.data[nameof(preTask.carry_id)]?.ToString()!;
|
preTask.task_type = WmsWareHouseConst.WMS_PRETASK_OUTSTOCK_TYPE_ID;
|
||||||
preTask.carry_code = input.data[nameof(preTask.carry_code)]?.ToString()!;
|
preTask.carry_id = carrys![i].id;
|
||||||
preTask.area_id = sPoint?.area_id;
|
preTask.carry_code = carrys![i].carry_code;
|
||||||
|
preTask.area_id = sPoint?.area_id!;
|
||||||
preTask.area_code = it.Key;
|
preTask.area_code = it.Key;
|
||||||
preTask.require_id = input.data["ReturnIdentity"].ToString();
|
preTask.require_id = input.data["ReturnIdentity"].ToString();
|
||||||
preTask.require_code = input.data[nameof(preTask.bill_code)]?.ToString()!;
|
preTask.require_code = input.data[nameof(preTask.bill_code)]?.ToString()!;
|
||||||
@@ -138,20 +129,55 @@ namespace Tnb.WarehouseMgr
|
|||||||
preTask.create_time = DateTime.Now;
|
preTask.create_time = DateTime.Now;
|
||||||
return preTask;
|
return preTask;
|
||||||
}).ToList();
|
}).ToList();
|
||||||
var isOk = await _wareHouseService.GenPreTask(preTasks,null);
|
//更新页面
|
||||||
if (isOk)
|
isOk = await _wareHouseService.GenPreTask(preTasks, null);
|
||||||
{
|
|
||||||
//所有载具加锁
|
|
||||||
var ids = carrys.Select(x => x.carry_id).ToList();
|
|
||||||
await _db.Updateable<BasLocation>().SetColumns(it => new BasLocation { is_lock = 1 }).Where(it => ids.Contains(it.id)).ExecuteCommandAsync();
|
|
||||||
//所有库位加锁
|
|
||||||
var loc = carrys.Select(x => x.location_id).ToList();
|
|
||||||
await _db.Updateable<BasLocation>().SetColumns(it => new BasLocation { is_lock = 1 }).Where(it => loc.Contains(it.id)).ExecuteCommandAsync();
|
|
||||||
|
|
||||||
|
}
|
||||||
|
if (isOk)
|
||||||
|
{
|
||||||
|
var preTaskUpInput = new GenPreTaskUpInput();
|
||||||
|
preTaskUpInput.RquireId = input.data["ReturnIdentity"].ToString();
|
||||||
|
preTaskUpInput.CarryId = carrys![i].id;
|
||||||
|
preTaskUpInput.CarryStartLocationId = points.FirstOrDefault().location_id;
|
||||||
|
preTaskUpInput.CarryStartLocationCode = points.FirstOrDefault().location_code;
|
||||||
|
preTaskUpInput.LocationIds = points.Select(x => x.location_id).ToList();
|
||||||
|
|
||||||
}
|
//更新明细表
|
||||||
|
WmsEmptyOutstockD wmsEmptyOutstockD = new();
|
||||||
|
wmsEmptyOutstockD.id = SnowflakeIdHelper.NextId();
|
||||||
|
wmsEmptyOutstockD.bill_id = input.data[nameof(WmsEmptyOutstockH.bill_code)]?.ToString()!;
|
||||||
|
wmsEmptyOutstockD.biz_type = WmsWareHouseConst.BIZTYPE_WMSEPTYOUTSTK_ID;
|
||||||
|
wmsEmptyOutstockD.location_id = ePoint.location_id;
|
||||||
|
wmsEmptyOutstockD.status = WmsWareHouseConst.BILLSTATUS_COMPLETE_ID;
|
||||||
|
wmsEmptyOutstockD.carry_id = carrys[i].id;
|
||||||
|
wmsEmptyOutstockD.carry_code = carrys[i].carry_code;
|
||||||
|
wmsEmptyOutstockD.create_id = _userManager.UserId;
|
||||||
|
wmsEmptyOutstockD.create_time = DateTime.Now;
|
||||||
|
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<WmsEmptyOutstockH>().SetColumns(it => new WmsEmptyOutstockH { status = WmsWareHouseConst.BILLSTATUS_ON_ID }).Where(it => it.id == preTaskUpInput.RquireId).ExecuteCommandAsync();
|
||||||
|
|
||||||
|
//await _wareHouseService.GenInStockTaskHandleAfter(preTaskUpInput,
|
||||||
|
// it => new WmsCarryH { is_lock = 1, location_id = preTaskUpInput.CarryStartLocationId, location_code = preTaskUpInput.CarryStartLocationCode },
|
||||||
|
// it => new BasLocation { is_lock = 1 });
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
await _db.Ado.CommitTranAsync();
|
await _db.Ado.CommitTranAsync();
|
||||||
|
|||||||
Reference in New Issue
Block a user