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.

30 lines
1.3 KiB
C#

using Estsh.Core.Model.Result;
using Estsh.Core.Models;
using Estsh.Core.Repositories;
using Estsh.Core.Util;
using System.Collections;
using System.Data;
namespace Estsh.Core.Repository.IRepositories
{
public interface IStockOrderReleaseRepository : IBaseRepository<GOrder>
{
public List<KeyValueResult> GetCustPDLine();
public List<KeyValueResult> GetMode_type(string CustPDLine);
public string ReleaseOrder(string cbCustPDLine, int cbShift, int Qty);
public List<GOrder> GetOrderSummary(string cust_pdline, ref Pager pager);
public List<GOrder> GetOrderDetail(string aWhere, ref Pager pager);
public List<GWorkorder> GetOrderErrorMessage(string aWhere, ref Pager pager);
public List<KeyValueResult> Getshift();
public string getNumber();
public string changeStatus(int order_id, int status);
public string getProductionTaskNumber();
public string updateProductionTaskNumber();
public string updateWorkOrderPrintNumber(string ruid, string ProductionTaskNumber);
public bool InitializeNumber();
public List<GWorkorder> getPrintData(string cbCustPDLine);
public List<GWorkorder> getPrintData(string cbCustPDLine, string printDate, string printNumber);
public string getPrintQty();
}
}