using Rhea.Common;
|
using System;
|
using System.Collections.Generic;
|
using System.Linq;
|
using System.Text;
|
using System.Threading.Tasks;
|
using Tiger.Model;
|
|
namespace Tiger.IBusiness
|
{
|
/// <summary>
|
/// 备料任务下架事务
|
/// </summary>
|
public interface IOut_BIZ_WMS_PREP : IWmsTask
|
{
|
public IOut_BIZ_WMS_PREP Init(string id, string userCode, string apiHost, string orgCode);
|
|
/// <summary>
|
/// 扫描入口
|
/// </summary>
|
public Task<ApiAction<ScanOutput>> Scan(BaseInput input);
|
|
/// <summary>
|
/// 获取当前备料的备料任务信息
|
/// </summary>
|
/// <returns></returns>
|
public Task<ApiAction<BIZ_WMS_PREP>> GetPrepInfo();
|
|
/// <summary>
|
/// 获取当前备料的物料行信息
|
/// </summary>
|
/// <returns></returns>
|
public Task<ApiAction<BIZ_WMS_PREP_DTL>> GetCurPrepItem();
|
|
public bool Close(bool needSaveHistoryLog = false);
|
}
|
}
|