using System;
|
using System.Collections.Generic;
|
using System.Linq;
|
using System.Text;
|
using System.Threading.Tasks;
|
using WIDESEA_Common.CommonEnum;
|
using WIDESEA_Common.LocationEnum;
|
using WIDESEA_Core;
|
using WIDESEA_Core.BaseRepository;
|
using WIDESEA_Core.BaseServices;
|
using WIDESEA_DTO.Basic;
|
using WIDESEA_DTO.Location;
|
using WIDESEA_Model.Models;
|
using WIDESEA_Model.Models.Stock;
|
|
namespace WIDESEA_IBasicService
|
{
|
public interface ILocationInfoService : IService<Dt_LocationInfo>
|
{
|
IRepository<Dt_LocationInfo> Repository { get; }
|
|
/// <summary>
|
/// 初始化货位
|
/// </summary>
|
/// <param name="initializationLocationDTO"></param>
|
/// <returns></returns>
|
WebResponseContent InitializationLocation(InitializationLocationDTO initializationLocationDTO);
|
|
//入库分配货位
|
Dt_LocationInfo AllotLocationInfo(int k);
|
|
//出库分配物料
|
Dt_LocationInfo AllotStock(int k);
|
|
//根据多条物料查询对应的货位并修改为锁定
|
List<Dt_LocationInfo> StockLockLocation(List<Dt_StockInfo> StockInfo);
|
|
//前端页面平面图显示
|
List<Dt_LocationInfo> getLocation();
|
|
//修改库位类型
|
WebResponseContent UpdateLocationType(int k);
|
|
//大屏货位数量
|
Location LocationNum();
|
}
|
}
|