2025-03-16 03:17:36 +08:00
|
|
|
using Seyounth.Hyosung.Data.Models;
|
|
|
|
using Seyounth.Hyosung.Data.Services.Hyosung.Entities;
|
|
|
|
|
|
|
|
namespace Seyounth.Hyosung.Data.Services.Hyosung;
|
|
|
|
|
|
|
|
public interface IHyosungWmsService
|
|
|
|
{
|
|
|
|
Task<int> GetControlNo(Variety variety, string grade);
|
|
|
|
|
|
|
|
Task<MST_ITEM_2240_V> GetItemInfoByItemCode(string itemCode);
|
|
|
|
|
|
|
|
Task UpdateControlNo(Variety variety, int controlNo);
|
2025-03-20 20:45:38 +08:00
|
|
|
|
|
|
|
Task<LabelResult> GetLabelResult(string itemCode, string lot, int controlNo);
|
|
|
|
|
|
|
|
Task AddLabelResult(LabelResult result);
|
2025-04-10 16:20:00 +08:00
|
|
|
|
|
|
|
Task AddPdaPutawayRecord(string barcode);
|
2025-03-16 03:17:36 +08:00
|
|
|
}
|