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.

41 lines
2.1 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 IPurchaseManageService : IBaseService<WmsPurchase>
{
public Hashtable getPurchaseListByPage(string orderNo, string orderType,string orderStatus, string startTime, string endTime, string enabled, int factoryId, Pager pager, String direction, String sort);
public Hashtable getPurchaseDetailListByPage(string orderNo, string enabled, int factoryId);
public Hashtable getStockListByPage(string orderNo, string partNo, string enabled, int factoryId);
public List<SysStock> getStockListByPrint(string orderNo, string enabled, int factoryId);
public List<SysPart> GetPartInfo(string part_no);
public List<KeyValueResult> GetErpwarehouse();
public List<KeyValueResult> GetOrderStatus();
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 vendorName);
public List<KeyValueResult> GetPart();
public List<KeyValueResult> GetOrderType();
public List<SysPart> GetPart(string PartNo);
public int savePurchaseManage(WmsPurchase htParams, IList<WmsPurchaseDetail> htDetailParams);
public Hashtable getWarehouseDetail(String warehouseId);
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 Hashtable onBarcodeGenerator(string orderNo, string userID, string factoryID, string factoryCode);
public int onClose(String ids);
public int EnableData(String ids);
public int DisableData(String ids);
}
}