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.

42 lines
2.2 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 IPullGroupMESService : IBaseService<WmsPullingGroupMes>
{
public Hashtable getPullGroupListByPage(string groupCode, string groupName, string enabled, int factoryId, Pager pager, String direction, String sort);
public Hashtable getPullGroupDetailListByPage(string groupCode, string enabled, int factoryId);
public List<WmsPullingGroupPart> getPullGroupDetailList(string groupCode);
public List<SysPart> GetPartInfo(string part_no);
public List<KeyValueResult> GetErpwarehouse();
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> getSelectVendor();
public List<SysVendor> getSelectVendor(string vendorid);
public List<KeyValueResult> GetPart();
public List<KeyValueResult> GetOrderType();
public List<SysPart> GetPart(string PartNo);
public List<SysPdline> GetPdlineByPdlineId(int pdlineId);
public SysPdline GetPdlineByPdlineCode(string pdlineCode);
public List<KeyValueResult> GetPdlineByKey();
public bool saveHandPullGroup(string groupCode, string handPullQty);
public int savePullGroup(WmsPullingGroupMes htParams);
public int updatePullGroup(WmsPullingGroupMes htParams);
public List<SysPart> GetPartNoInfo(string part_no);
public List<SysPart> GetPartSpecInfo(string partSpec);
public Hashtable getPullGroup(String ruid);
public int EnableData(String ids);
public int DisableData(String ids);
public List<PullGroup> getExportList(string groupCode, string groupName, string enabled, int factoryId);
public Hashtable ImportExcel(List<PullGroup> inputStream, int factoryId, string factoryCode, int empId);
}
}