using System;
|
using System.Collections.Generic;
|
using System.Linq;
|
using System.Text;
|
using System.Threading.Tasks;
|
using WIDESEA_Core;
|
using WIDESEA_Core.BaseServices;
|
using WIDESEA_Model.Models;
|
|
namespace WIDESEA_IBusinessServices
|
{
|
public interface IDt_BillGroupStockService : IService<Dt_BillGroupStock>
|
{
|
/// <summary>
|
/// PDA组盘确认,绑定托盘码和物料码,记录组盘信息,保存到:主表 Dt_BillGroupStock,明细表 Dt_BillGroupStockDetail
|
/// </summary>
|
/// <param name="dt_BillGroupStock">组盘信息</param>
|
/// <returns></returns>
|
WebResponseContent PDAGroupPlateConfirm(Dt_BillGroupStock dt_BillGroupStock);
|
|
|
/// <summary>
|
/// PDA组盘撤销确认,解绑托盘码和物料码
|
/// </summary>
|
/// <param name="plateCode">托盘号</param>
|
/// <returns></returns>
|
WebResponseContent PDAGroupPlateRevoke(string plateCode);
|
}
|
}
|