281 lines
15 KiB
C#
281 lines
15 KiB
C#
using JNPF.Common.Core.Manager;
|
||
using JNPF.Common.Dtos.VisualDev;
|
||
using JNPF.Common.Enums;
|
||
using JNPF.Common.Extension;
|
||
using JNPF.Common.Security;
|
||
using JNPF.EventBus;
|
||
using JNPF.FriendlyException;
|
||
using JNPF.Systems.Interfaces.System;
|
||
using JNPF.VisualDev;
|
||
using JNPF.VisualDev.Entitys;
|
||
using JNPF.VisualDev.Interfaces;
|
||
using Mapster;
|
||
using Microsoft.AspNetCore.Mvc;
|
||
using SqlSugar;
|
||
using Tnb.BasicData.Entities;
|
||
using Tnb.WarehouseMgr.Entities;
|
||
using Tnb.WarehouseMgr.Entities.Attributes;
|
||
using Tnb.WarehouseMgr.Entities.Consts;
|
||
using Tnb.WarehouseMgr.Entities.Dto;
|
||
using Tnb.WarehouseMgr.Entities.Enums;
|
||
using Tnb.WarehouseMgr.Interfaces;
|
||
|
||
namespace Tnb.WarehouseMgr
|
||
{
|
||
/// <summary>
|
||
/// 齐套入库
|
||
/// </summary>
|
||
[OverideVisualDev(ModuleConsts.MODULE_WMSKITTINGINSTK_ID)]
|
||
[ServiceModule(BizTypeId)]
|
||
public class WmsKittingInStkService : BaseWareHouseService, IWmsKittingInStkService
|
||
{
|
||
private const string BizTypeId = "26165655816741";
|
||
private readonly ISqlSugarClient _db;
|
||
private readonly IRunService _runService;
|
||
private readonly IVisualDevService _visualDevService;
|
||
private readonly IWareHouseService _wareHouseService;
|
||
private readonly IBillRullService _billRullService;
|
||
private readonly IUserManager _userManager;
|
||
|
||
|
||
public WmsKittingInStkService(
|
||
ISqlSugarRepository<WmsCarryH> repository,
|
||
IRunService runService,
|
||
IVisualDevService visualDevService,
|
||
IWareHouseService wareHouseService,
|
||
IUserManager userManager,
|
||
IBillRullService billRullService,
|
||
IEventPublisher eventPublisher
|
||
)
|
||
{
|
||
_db = repository.AsSugarClient();
|
||
_runService = runService;
|
||
_visualDevService = visualDevService;
|
||
_wareHouseService = wareHouseService;
|
||
_userManager = userManager;
|
||
_billRullService = billRullService;
|
||
|
||
OverideFuncs.CreateAsync = KittingInStk;
|
||
}
|
||
|
||
[NonAction]
|
||
public async Task<dynamic> KittingInStk(VisualDevModelDataCrInput input)
|
||
{
|
||
|
||
try
|
||
{
|
||
await _db.Ado.BeginTranAsync();
|
||
var Location = await _db.Queryable<BasLocation>().FirstAsync(it => it.location_code == input.data["location_code"].ToString());
|
||
input.data.Add("warehouse_id", Location.wh_id);
|
||
input.data.Add("location_id", Location.id);
|
||
input.data.Add("status", "25065138925589");
|
||
//入库取终点 //出库起点
|
||
InStockStrategyQuery inStockStrategyInput = new() { warehouse_id = input.data[nameof(InStockStrategyQuery.warehouse_id)].ToString()!, Size = 1 };
|
||
List<BasLocation> endLocations = await _wareHouseService.InStockStrategy(inStockStrategyInput);
|
||
WmsPointH? sPoint = null;
|
||
WmsPointH? ePoint = null;
|
||
if (input.data.ContainsKey("location_code"))
|
||
{
|
||
sPoint = await _db.Queryable<WmsPointH>().FirstAsync(it => it.location_code == input.data["location_code"].ToString());
|
||
}
|
||
if (endLocations?.Count > 0)
|
||
{
|
||
WmsCarryH carry = await _db.Queryable<WmsCarryH>().SingleAsync(it => it.carry_code == input.data["carry_code"].ToString());
|
||
input.data.Add("carry_id", carry.id);
|
||
BasLocation loc = await _db.Queryable<BasLocation>().SingleAsync(it => it.id == endLocations[0].id);
|
||
bool isMatch = await IsCarryAndLocationMatchByCarryStd(carry, loc);
|
||
if (!isMatch)
|
||
{
|
||
throw new AppFriendlyException("库位与载具规格不匹配", 500);
|
||
}
|
||
|
||
ePoint = await _db.Queryable<WmsPointH>().FirstAsync(it => it.location_id == endLocations[0].id);
|
||
}
|
||
|
||
VisualDevEntity? templateEntity = await _visualDevService.GetInfoById(ModuleConsts.MODULE_WMSKITTINGINSTK_ID, true);
|
||
await _runService.Create(templateEntity, input);
|
||
|
||
if (sPoint != null && ePoint != null)
|
||
{
|
||
List<WmsPointH> points = new List<WmsPointH>();
|
||
if (sPoint.area_code != ePoint.area_code)
|
||
{
|
||
points = await _wareHouseService.PathAlgorithms(sPoint.id, ePoint.id);
|
||
if (points.Count <= 2)
|
||
{
|
||
throw new AppFriendlyException($"sPoint {sPoint.point_code} ePoint{ePoint.point_code}该路径不存在", 500);
|
||
}
|
||
}
|
||
else
|
||
{
|
||
points.Add(sPoint);
|
||
points.Add(ePoint);
|
||
}
|
||
//根据获取的路径点生成预任务,生成顺序必须预路径算法返回的起终点的顺序一致(预任务顺序)
|
||
if (points?.Count > 0)
|
||
{
|
||
List<WmsPretaskH> preTasks = points.Where(it => !it.location_id.IsNullOrEmpty()).GroupBy(g => g.area_code).Select(it =>
|
||
{
|
||
WmsPointH? sPoint = it.FirstOrDefault();
|
||
WmsPointH? ePoint = it.LastOrDefault();
|
||
|
||
WmsPretaskH preTask = new()
|
||
{
|
||
org_id = _userManager.User.OrganizeId,
|
||
startlocation_id = sPoint?.location_id!,
|
||
startlocation_code = sPoint?.location_code!,
|
||
endlocation_id = ePoint?.location_id!,
|
||
endlocation_code = ePoint?.location_code!,
|
||
start_floor = sPoint?.floor.ToString(),
|
||
end_floor = ePoint?.floor.ToString(),
|
||
startpoint_id = sPoint?.id!,
|
||
startpoint_code = sPoint?.point_code!,
|
||
endpoint_id = ePoint?.id!,
|
||
endpoint_code = ePoint?.point_code!,
|
||
bill_code = _billRullService.GetBillNumber(WmsWareHouseConst.WMS_PRETASK_H_ENCODE).GetAwaiter().GetResult(),
|
||
status = WmsWareHouseConst.PRETASK_BILL_STATUS_DXF_ID,
|
||
biz_type = WmsWareHouseConst.BIZTYPE_WMSKITTINGINSTK_ID,
|
||
task_type = WmsWareHouseConst.WMS_PRETASK_INSTOCK_TYPE_ID
|
||
};
|
||
preTask.carry_id = input.data[nameof(preTask.carry_id)]?.ToString()!;
|
||
preTask.carry_code = input.data[nameof(preTask.carry_code)]?.ToString()!;
|
||
preTask.area_id = sPoint?.area_id!;
|
||
preTask.area_code = it.Key;
|
||
preTask.require_id = input.data["ReturnIdentity"].ToString();
|
||
preTask.require_code = input.data[nameof(preTask.bill_code)]?.ToString()!;
|
||
preTask.create_id = _userManager.UserId;
|
||
preTask.create_time = DateTime.Now;
|
||
preTask.source_id = "";
|
||
preTask.source_code = "";
|
||
return preTask;
|
||
}).ToList();
|
||
List<WmsCarryCode> carryCodes = new();
|
||
if (input.data.ContainsKey("tablefield130"))
|
||
{
|
||
if (input.data["tablefield130"] != null && input.data["tablefield130"].IsNotEmptyOrNull())
|
||
{
|
||
carryCodes = input.data["tablefield130"].ToObject<List<WmsCarryCode>>();
|
||
}
|
||
}
|
||
|
||
List<WmsPretaskCode> pretaskCodes = new();
|
||
foreach (WmsPretaskH? pt in preTasks)
|
||
{
|
||
List<WmsCarryCode> partCodes = carryCodes.FindAll(x => x.carry_id == pt.carry_id).Distinct().ToList();
|
||
List<WmsPretaskCode> curPreTaskCodes = partCodes.Adapt<List<WmsPretaskCode>>();
|
||
curPreTaskCodes.ForEach(x =>
|
||
{
|
||
x.id = SnowflakeIdHelper.NextId();
|
||
x.bill_id = pt.id;
|
||
x.create_time = DateTime.Now;
|
||
});
|
||
pretaskCodes.AddRange(curPreTaskCodes);
|
||
}
|
||
bool isOk = await _wareHouseService.GenPreTask(preTasks, pretaskCodes);
|
||
if (isOk)
|
||
{
|
||
GenPreTaskUpInput preTaskUpInput = new()
|
||
{
|
||
RquireId = input.data["ReturnIdentity"].ToString()!,
|
||
CarryId = input.data[nameof(WmsCarryD.carry_id)]?.ToString()!,
|
||
CarryStartLocationId = points.FirstOrDefault()!.location_id!,
|
||
CarryStartLocationCode = points.FirstOrDefault()!.location_code!,
|
||
LocationIds = points.Select(x => x.location_id).ToList()!
|
||
};
|
||
|
||
WmsHandleH handleH = new()
|
||
{
|
||
org_id = _userManager.User.OrganizeId,
|
||
startlocation_id = input.data[nameof(WmsPointH.location_id)]?.ToString()!,
|
||
endlocation_id = endLocations![0].id,
|
||
bill_code = input.data[nameof(WmsHandleH.bill_code)]?.ToString()!,
|
||
biz_type = input.data[nameof(WmsHandleH.biz_type)]?.ToString()!,
|
||
carry_id = input.data[nameof(WmsHandleH.carry_id)]?.ToString()!,
|
||
carry_code = input.data[nameof(WmsHandleH.carry_code)]?.ToString()!,
|
||
require_id = input.data["ReturnIdentity"].ToString(),
|
||
require_code = input.data[nameof(WmsHandleH.bill_code)]?.ToString()!,
|
||
create_id = _userManager.UserId,
|
||
create_time = DateTime.Now
|
||
};
|
||
preTaskUpInput.PreTaskRecord = handleH;
|
||
//根据齐套入库Id,回更单据状态
|
||
_ = await _db.Updateable<WmsKittingInstock>().SetColumns(it => new WmsKittingInstock { status = WmsWareHouseConst.BILLSTATUS_ON_ID }).Where(it => it.id == preTaskUpInput.RquireId).ExecuteCommandAsync();
|
||
string status = ((int)EnumCarryStatus.齐套).ToString();
|
||
WmsCarryH carry = await _db.Queryable<WmsCarryH>().SingleAsync(it => it.id == input.data[nameof(WmsHandleH.carry_id)].ToString());
|
||
if (carry?.out_status != status)
|
||
{
|
||
if (carryCodes?.Count > 0)
|
||
{
|
||
carryCodes.ForEach(x =>
|
||
{
|
||
x.id = SnowflakeIdHelper.NextId();
|
||
x.carry_id = input.data[nameof(WmsHandleH.carry_id)].ToString()!;
|
||
x.create_id = _userManager.UserId;
|
||
x.create_time = DateTime.Now;
|
||
x.warehouse_id = input.data[nameof(InStockStrategyQuery.warehouse_id)].ToString()!;
|
||
});
|
||
_ = await _db.Insertable(carryCodes).ExecuteCommandAsync();
|
||
}
|
||
}
|
||
await _wareHouseService.GenInStockTaskHandleAfter(preTaskUpInput,
|
||
it => new WmsCarryH
|
||
{
|
||
is_lock = 1,
|
||
location_id = preTaskUpInput.CarryStartLocationId,
|
||
location_code = preTaskUpInput.CarryStartLocationCode,
|
||
carry_status = ((int)EnumCarryStatus.齐套).ToString(),
|
||
// collocation_scheme_id = input.data[nameof(WmsKittingInstock.collocation_scheme_id)].ToString(),
|
||
// collocation_scheme_code = input.data[nameof(WmsKittingInstock.collocation_scheme_code)].ToString()
|
||
},
|
||
it => new BasLocation { is_lock = 1 });
|
||
}
|
||
}
|
||
}
|
||
|
||
await _db.Ado.CommitTranAsync();
|
||
}
|
||
catch (Exception)
|
||
{
|
||
await _db.Ado.RollbackTranAsync();
|
||
throw;
|
||
}
|
||
finally
|
||
{
|
||
await InvokeGenPretaskExcute();
|
||
}
|
||
return Task.FromResult(true);
|
||
}
|
||
|
||
public override async Task ModifyAsync(WareHouseUpInput input)
|
||
{
|
||
if (input == null)
|
||
{
|
||
throw new ArgumentNullException(nameof(input));
|
||
}
|
||
|
||
int row = await _db.Updateable<WmsKittingInstock>().SetColumns(it => new WmsKittingInstock { status = WmsWareHouseConst.BILLSTATUS_COMPLETE_ID }).Where(it => it.id == input.requireId).ExecuteCommandAsync();
|
||
WmsKittingInstock kittingIn = await _db.Queryable<WmsKittingInstock>().SingleAsync(it => it.id == input.requireId);
|
||
if (kittingIn != null)
|
||
{
|
||
WmsKittingoutH kittingOut = await _db.Queryable<WmsKittingoutH>().SingleAsync(it => it.id == kittingIn.source_id);
|
||
if (kittingOut != null)
|
||
{
|
||
BasLocation locaion = await _db.Queryable<BasLocation>().SingleAsync(it => it.id == kittingOut.location_id);
|
||
kittingOut.status = locaion != null && locaion.is_type.ToEnum<EnumLocationType>() != EnumLocationType.存储库位
|
||
? WmsWareHouseConst.BILLSTATUS_TOBESHIPPED_ID
|
||
: WmsWareHouseConst.BILLSTATUS_COMPLETE_ID;
|
||
kittingOut.carry_id = kittingIn.carry_id;
|
||
kittingOut.carry_code = kittingIn.carry_code;
|
||
_ = await _db.Updateable(kittingOut).UpdateColumns(it => new { it.status, it.carry_id, it.carry_code }).ExecuteCommandAsync();
|
||
|
||
await Publish(nameof(IWmskittingOutService.KittingOutByIsToBeShipped));
|
||
}
|
||
}
|
||
if (row < 1)
|
||
{
|
||
throw Oops.Oh(ErrorCode.COM1001);
|
||
}
|
||
}
|
||
}
|
||
}
|