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.
35 lines
1.5 KiB
C#
35 lines
1.5 KiB
C#
|
|
using Dapper;
|
|
using Estsh.Core.Models;
|
|
using Estsh.Core.Repositories;
|
|
using System.Collections;
|
|
|
|
namespace Estsh.Core.Repository.IRepositories
|
|
{
|
|
public interface IOrderManageRepository : IBaseRepository<SapDspo>
|
|
{
|
|
public List<SapDspo> getDataList(string weekNo);
|
|
public List<SysPart> getPartByNo(string partNo);
|
|
public string GetOrderNo(string stockOrder, string p);
|
|
public List<SysVendor> getVendorByNo(string vendor_code);
|
|
public string GetOrderNo();
|
|
public Hashtable getQueryMainListByPage(int PageSize, int PageIndex, string strWhere, string OrderBy, int empId);
|
|
public List<SapDspo> getQueryDetailList(string weekNo);
|
|
public bool IsBuildCode(string weekNo);
|
|
public string getUpdateSapDspo();
|
|
public string getInsertBuildCodeSql();
|
|
public bool ExecuteSqlTransaction(List<string> sqlStrings, List<DynamicParameters> parameters);
|
|
public List<WmsDspod> GetCartonNo(string weekNo);
|
|
public bool GetDspoYN(string weekNo);
|
|
public bool UpdateData(string weekNo);
|
|
public string GetFactoryName();
|
|
public int GetWmsCodeCount(string orderNo, string partNo, string evrtp);
|
|
public List<List<SapDspo>> GetExpInfo(string orderNo);
|
|
public List<SapDspo> GetStartDate(string orderNo);
|
|
public List<SapDspo> GetCodeDetail(string orderNo);
|
|
public int deleteOrder(String ids);
|
|
public int EnableData(String ids);
|
|
public int DisableData(String ids);
|
|
|
|
}
|
|
} |