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_ISquareCabinServices
|
{
|
public interface IDeliveryOrderServices : IService<Dt_DeliveryOrder>
|
{
|
/// <summary>
|
/// 获取上游出库单数据
|
/// </summary>
|
/// <param name="searchDate"></param>
|
/// <returns></returns>
|
WebResponseContent GetUpstreamOutOrder();
|
|
WebResponseContent GetUpstreamOutOrder2();
|
/// <summary>
|
/// 给下游wcs出库单
|
/// </summary>
|
/// <returns></returns>
|
WebResponseContent EdiOut();
|
|
/// <summary>
|
/// 盘点出库接口
|
/// </summary>
|
/// <returns></returns>
|
public WebResponseContent InventoryGood(string batchNo, string goodsNo);
|
|
///// <summary>
|
///// 出库报完成接口
|
///// </summary>
|
///// <param name="out_no">出库单号</param>
|
///// <returns></returns>
|
//WebResponseContent CompleteOutOrder(string out_no);
|
|
/// <summary>
|
/// 出库报完成接口
|
/// </summary>
|
/// <returns></returns>
|
WebResponseContent CompleteAllOutOrders();
|
WebResponseContent GetDeliveryOrders(SaveModel saveModel);
|
WebResponseContent GetDeliveryOrderDetail(int pageNo, string orderNo, bool isPick);
|
/// <summary>
|
/// 完成出库任务
|
/// </summary>
|
/// <param name="saveModel"></param>
|
/// <returns></returns>
|
WebResponseContent OutFinish(SaveModel saveModel);
|
/// <summary>
|
/// 查询盘点单信息
|
/// </summary>
|
/// <param name="saveModel"></param>
|
/// <returns></returns>
|
WebResponseContent GetCheckOrders(SaveModel saveModel);
|
/// <summary>
|
/// 完成盘点任务
|
/// </summary>
|
/// <param name="saveModel"></param>
|
/// <returns></returns>
|
WebResponseContent CheckFinish(SaveModel saveModel);
|
WebResponseContent GetCheckOutTasks(SaveModel saveModel);
|
}
|
}
|