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.
46 lines
2.4 KiB
C#
46 lines
2.4 KiB
C#
using Dapper;
|
|
using Estsh.Core.Model.Result;
|
|
using Estsh.Core.Models;
|
|
using Estsh.Core.Repositories;
|
|
using System.Collections;
|
|
|
|
namespace Estsh.Core.Repository.IRepositories
|
|
{
|
|
public interface IMovementOutstockManageRepository : IBaseRepository<WmsOutstock>
|
|
{
|
|
public Hashtable getMoveHeaderListByPage(int PageSize, int PageIndex, string strWhere, string OrderBy);
|
|
public Hashtable getMoveDetailListByPage(string strWhere);
|
|
public Hashtable getMoveSnListByPage(string strWhere);
|
|
public List<WmsOutstockDetail> getMoveSnListByPrint(string strWhere);
|
|
public Hashtable onBarcodeGenerator(string orderNo);
|
|
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<SysWarehouse> getSelectWarehouseByName(string warehouseName);
|
|
public List<SysZone> getSelectZone(string zoneName);
|
|
public List<SysZone> getSelectZoneByName(string zoneName);
|
|
public List<KeyValueResult> getSelectZone();
|
|
public List<KeyValueResult> getSelectLocate();
|
|
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(int type);
|
|
public List<SysPart> GetPart(int type, string PartNo);
|
|
public bool saveMovementManage(WmsOutstock htParams, IList<WmsOutstockDetail> 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 string GetOrderNo(string stockOrder, string p);
|
|
public bool InsertData(List<string> sqlStrings, List<DynamicParameters> parameterList);
|
|
}
|
|
}
|