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.1 KiB
C#

using Estsh.Core.Model.Result;
using Estsh.Core.Models;
using Estsh.Core.Repositories;
using System.Collections;
namespace Estsh.Core.Repository.IRepositories
{
public interface IMovementManageRepository : IBaseRepository<WmsMoveHeader>
{
public Hashtable getMoveHeaderListByPage(int PageSize, int PageIndex, string strWhere, string OrderBy);
public Hashtable getMoveDetailListByPage(string strWhere);
public Hashtable getMoveSnListByPage(string strWhere);
public Hashtable onBarcodeGenerator(string orderNo);
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(int type);
public List<SysPart> GetPart(int type, string PartNo);
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 saveMovementManage(WmsMoveHeader htParams, IList<WmsMoveDetail> htDetailParams);
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);
}
}