增加设备ID

This commit is contained in:
FanLian
2023-08-02 16:39:26 +08:00
parent 9b4e76192a
commit 0b32cbb540
4 changed files with 9 additions and 0 deletions

View File

@@ -28,6 +28,7 @@ namespace Tnb.WarehouseMgr.Entities.Dto
/// 取货/放货
/// </summary>
public string action { get; set; }
}

View File

@@ -12,6 +12,10 @@ namespace Tnb.WarehouseMgr.Entities.Dto
/// 状态
/// </summary>
public string status { get; set; }
/// <summary>
/// 设备编号
/// </summary>
public string deviceID { get; set; }
}

View File

@@ -12,6 +12,7 @@ using Microsoft.AspNetCore.Mvc;
using NPOI.OpenXmlFormats;
using Senparc.NeuChar.ApiHandlers;
using SqlSugar;
using Tnb.EquipMgr.Entities;
using Tnb.WarehouseMgr.Entities;
using Tnb.WarehouseMgr.Entities.Dto;
using Tnb.WarehouseMgr.Entities.Dto.Inputs;
@@ -106,9 +107,11 @@ namespace Tnb.WarehouseMgr
case "CREATED": break;
case "ALLOCATED":
var disTasks = await _db.Queryable<WmsDistaskH>().Where(it => it.bill_code.Contains(input.taskChainCode)).ToListAsync();
var eps = await _db.Queryable<EqpEquipment>().Where(it => it.code.Contains(input.deviceID)).ToListAsync();
TaskExecuteUpInput taskExecuteUpInput = new()
{
disTaskIds = disTasks.Select(x => x.id).ToList(),
EqpIds = eps.Select(x => x.id).ToList(),
};
await _wareHouseService.TaskExecute(taskExecuteUpInput); break;
case "PROGRESSING": break;

View File

@@ -11,6 +11,7 @@
<ItemGroup>
<ProjectReference Include="..\..\BasicData\Tnb.BasicData.Interfaces\Tnb.BasicData.Interfaces.csproj" />
<ProjectReference Include="..\..\EquipMgr\Tnb.EquipMgr.Entities\Tnb.EquipMgr.Entities.csproj" />
<ProjectReference Include="..\..\ProductionMgr\Tnb.ProductionMgr.Interfaces\Tnb.ProductionMgr.Interfaces.csproj" />
<ProjectReference Include="..\..\visualdev\Tnb.VisualDev.Engine\Tnb.VisualDev.Engine.csproj" />
<ProjectReference Include="..\Tnb.WarehouseMgr.Interfaces\Tnb.WarehouseMgr.Interfaces.csproj" />