using Rhea.Common;
|
using System;
|
using System.Collections.Generic;
|
using System.Linq;
|
using System.Text;
|
using System.Threading.Tasks;
|
using Tiger.Model;
|
using Tiger.Model.DigitalTwin;
|
using Tiger.Model.Sharetronic.Shelf;
|
|
namespace Tiger.IBusiness
|
{
|
public interface IInMatStorage : IWMSTransaction
|
{
|
public IInMatStorage Init(string id, string userCode, string apiHost, string orgCode);
|
|
/// <summary>
|
/// 扫描物料并复核,如果物料已经完成移库则货架上亮灯提醒储位
|
/// </summary>
|
public Task<ApiAction> ScanItem(CustSupplyInInput input);
|
|
/// <summary>
|
/// 扫描货架或者储位
|
/// </summary>
|
public Task<ApiAction<IncomingMatStorage>> ScanShelf(string Code);
|
|
public bool Close(bool needSaveHistoryLog = false);
|
}
|
}
|