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.

29 lines
1.2 KiB
C#

using Estsh.Core.Model.Result;
using Estsh.Core.Models;
using Estsh.Core.Util;
using System.Collections;
namespace Estsh.Core.Services.IServices
{
public interface IStockOrderReleaseService : IBaseService<GOrder>
{
public List<KeyValueResult> GetCustPDLine();
public List<KeyValueResult> GetMode_type(string CustPDLine);
public string ReleaseOrder(string cbCustPDLine, int cbShift, int Qty);
public string getPrintQty();
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 bool InitializeNumber();
public string changeStatus(int order_id, int status);
public string getProductionTaskNumber();
public string updateProductionTaskNumber();
public string updateWorkOrderPrintNumber(string ruid, string ProductionTaskNumber);
public List<GWorkorder> getPrintData(string cbCustPDLine);
public List<GWorkorder> getPrintData(string cbCustPDLine, string printDate, string printNumber);
}
}