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.Result;
using Estsh.Core.Models;
using Estsh.Core.Services;
using Estsh.Core.Util;
using System.Collections;
namespace Estsh.Core.Services.IServices
{
public interface IMovementManageService : IBaseService<WmsMoveHeader>
{
public Hashtable getMoveHeaderListByPage(string orderNo, string orderType, string orderStatus, string startTime, string endTime, string enabled, int factoryId, Pager pager, String direction, String sort, string fedbatchType);
public Hashtable getMoveDetailListByPage(string orderNo, string enabled, int factoryId);
public Hashtable getMoveSnListByPage(string orderNo, string partNo, string enabled, int factoryId);
public Hashtable onBarcodeGenerator(String ids);
public List<KeyValueResult> GetErpwarehouse();
public List<KeyValueResult> GetMoveOrderType();
public List<KeyValueResult> getSelectRefOrderNo();
public List<KeyValueResult> GetFedbatchType();
public List<KeyValueResult> GetFedbatchMethods();
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> getSelectVendor();
public List<SysVendor> getSelectVendor(string vendorid);
public List<KeyValueResult> GetPart();
public List<SysPart> GetPart(string PartNo);
public bool saveMovementManage(WmsMoveHeader htParams, IList<WmsMoveDetail> htDetailParams);
public List<SysPart> GetPartNoInfo(string part_no);
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 List<MesWorkOrder> GetWorkRefOrderNo(string refOrderNo, string orderType);
public List<MesWorkOrder> GetWorkOrderInfo(string refOrderNo);
}
}