|
|
|
|
using Estsh.Core.Model.ExcelModel;
|
|
|
|
|
using Estsh.Core.Model.Result;
|
|
|
|
|
using Estsh.Core.Models;
|
|
|
|
|
using Estsh.Core.Util;
|
|
|
|
|
using System.Collections;
|
|
|
|
|
|
|
|
|
|
namespace Estsh.Core.Services.IServices
|
|
|
|
|
{
|
|
|
|
|
public interface IStockDetailQueryService : IBaseService<SysStock>
|
|
|
|
|
{
|
|
|
|
|
public Hashtable getZoneList(string zoneName, string enabled, int factoryId, Pager pager, String direction, String sort);
|
|
|
|
|
public List<SysStock> getLocateListByPage(string zoneName, string locateName, string enabled, int factoryId);
|
|
|
|
|
|
|
|
|
|
public List<KeyValueResult> GetStockType();
|
|
|
|
|
|
|
|
|
|
public List<SysStock> getDPSListByPage(string zoneName, string locateName, string cartonNo, string partNo, string partSpec, string enabled, int factoryId,string stockType);
|
|
|
|
|
public List<KeyValueResult> GetPartNo();
|
|
|
|
|
public List<KeyValueResult> GetLocateName();
|
|
|
|
|
public List<KeyValueResult> GetSysEnum(string enumtype);
|
|
|
|
|
public List<KeyValueResult> GetWareHouseName();
|
|
|
|
|
public List<StockDetailQuery> getExportList(string zoneName, string locateName, string cartonNo, string partNo, string partSpec, string enabled, string factoryId,string stockType);
|
|
|
|
|
public int EnableData(string ids, string empId);
|
|
|
|
|
}
|
|
|
|
|
}
|