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.

50 lines
2.8 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 IMovementInstockManageRepository : IBaseRepository<WmsInstock>
{
public Hashtable getMoveHeaderListByPage(int PageSize, int PageIndex, string strWhere, string OrderBy);
public Hashtable getMoveDetailListByPage(string strWhere);
public Hashtable getMoveSnListByPage(string strWhere);
public List<WmsInstock> getInstockListByPrintCount(string strWhere);
public List<WmsInstockSn> getInstockListByPrintRange(string strWhere, string endrowCount, string rowCount);
public List<WmsInstockSn> getMoveSnListByPrint(string strWhere);
public Hashtable onBarcodeGenerator(string orderNo, string userId, string factoryId, string factoryCode);
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 zoneid);
public List<SysZone> getSelectZoneByName(string zoneName);
public List<KeyValueResult> getSelectZone();
public List<KeyValueResult> getSelectLocateDown(string locateId);
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 List<SysVendor> GetfileVendor(string vendorName, int factoryId);
public SysVendor GetVendorInfoByName(string vendorName, int factoryId);
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(WmsInstock htParams, IList<WmsInstockDetail> htDetailParams);
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);
}
}