using System;
|
using System.Collections.Generic;
|
using System.Linq;
|
using System.Text;
|
using System.Threading.Tasks;
|
using WIDESEA_Core;
|
using WIDESEA_Core.BaseRepository;
|
using WIDESEA_Core.BaseServices;
|
using WIDESEA_DTO.SquareCabin;
|
using WIDESEA_Model.Models;
|
|
namespace WIDESEA_ISquareCabinServices
|
{
|
public interface IDeliveryOrderServices : IService<Dt_DeliveryOrder>
|
{
|
IRepository<Dt_DeliveryOrder> Repository { get; }
|
/// <summary>
|
/// 盘点出库接口
|
/// </summary>
|
/// <returns></returns>
|
public WebResponseContent InventoryGood(string batchNo, string goodsNo);
|
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="materielInfo"></param>
|
/// <returns></returns>
|
WebResponseContent CreateAllocatInOut(Dt_MaterielInfo materielInfo);
|
|
|
/// <summary>
|
/// 盘点任务接口
|
/// </summary>
|
/// <param name="keys"></param>
|
/// <returns></returns>
|
WebResponseContent CreateCheckOrder(int[] keys);
|
|
/// <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);
|
WebResponseContent OutTaskFinish(Dt_SupplyTask supplyTask);
|
WebResponseContent CheckTaskFinish(Dt_SupplyTask supplyTask, string LocationCode = null);
|
WebResponseContent CreateOutboundOrder(OrderDto.UpstramOutOrderInfo upstramOutOrderInfo);
|
}
|
}
|