You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

49 lines
2.9 KiB
C#

using Estsh.Core.Model.ExcelModel;
using Estsh.Core.Model.Result;
using Estsh.Core.Models;
using Estsh.Core.Services;
using Estsh.Core.Util;
using System.Collections;
namespace Estsh.Core.Services.IServices
{
public interface IMovementInstockManageService : IBaseService<WmsInstock>
{
public Hashtable getMoveHeaderListByPage(string orderNo, string orderType, string orderStatus, string startTime, string endTime, string enabled, int factoryId, Pager pager, String direction, String sort);
public Hashtable getMoveDetailListByPage(string orderNo, string enabled, int factoryId);
public Hashtable getMoveSnListByPage(string orderNo, string partNo, string enabled, int factoryId);
public List<WmsInstock> getInstockListByPrintCount(string orderNo, string enabled, int factoryId);
public List<WmsInstockSn> getInstockListByPrintRange(string orderNo, string rowRange, string enabled, string factoryId);
public List<WmsInstockSn> getMoveSnListByPrint(string orderNo, string enabled, int factoryId);
public Hashtable onBarcodeGenerator(String ids, string userId, string factoryId, string factoryCode);
public List<KeyValueResult> GetErpwarehouse();
public List<KeyValueResult> GetMoveOrderType();
public List<KeyValueResult> GetMoveOrderStatus();
public List<KeyValueResult> getSelectFactory();
public List<KeyValueResult> getSelectWarehouse();
public List<SysWarehouse> getSelectWarehouse(string warehouseid);
public List<SysZone> getSelectZone(string zoneid);
public List<KeyValueResult> getSelectZone();
public List<KeyValueResult> getSelectLocateDown(string zoneId);
public List<SysLocate> getSelectLocate(string locateid);
public List<KeyValueResult> getSelectVendor();
public List<SysVendor> getSelectVendor(string vendorid);
public List<KeyValueResult> getSelectCustomer();
public List<SysCustomer> getSelectCustomer(string customerId);
public List<KeyValueResult> GetPart();
public List<SysPart> GetPart(string PartNo);
public bool saveMovementManage(WmsInstock htParams, IList<WmsInstockDetail> htDetailParams);
public List<SysPart> GetPartNoInfo(string part_no);
public List<SysVendor> GetfileVendor(string vendorName, int factoryId);
public SysVendor GetVendorInfoByName(string vendorName, int factoryId);
public List<SysPart> GetPartNoInfoByPartNo(string part_no);
public List<SysPart> GetPartSpecInfo(string partSpec);
public List<SysPart> GetPartSpecInfoByPartSpec(string partSpec);
public bool onClose(String ids, String empId);
public bool EnableData(String ids);
public bool DisableData(String ids);
public Hashtable ImportExcel(List<MovementInstockManage> inputStream, int factoryId, string factoryCode, int empId);
}
}