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.

36 lines
1.7 KiB
C#

using Estsh.Core.Model.Result;
using Estsh.Core.Models;
using System.Collections;
namespace Estsh.Core.Services.IServices
{
public interface IProductionOrderReleaseService : IBaseService<GStockOrder>
{
public List<KeyValueResult> GetCustPDLine();
public List<KeyValueResult> GetPdline();
public List<KeyValueResult> GetMode_type(string CustPDLine);
public List<KeyValueResult> GetModelList(int ModelType);
public List<KeyValueResult> Getshift();
public List<KeyValueResult> GetProdType();
public List<SysBom> GetBomDetail(int modelID);
public List<SysBom> GetBomDetailTable(int modelID);
public bool isExist(string order_no);
public string GetOrderNo(string stockOrder, string p);
public bool Insert_g_stock_order(GStockOrder order);
public bool Insert_g_stock_order_detail(GStockOrderDetail modelparams);
public string ReleaseStockOrder(string order_no);
public string AssignStockOrder(string custPDLine);
public List<GHtWorkorderSn> GetSN(string orderNo);
public List<GWorkorderSn> GetBackSN(string orderNo);
public string TrayPagePrintCount(string param);
public List<GWorkorderSn> GetReprintDataBySN(string type, string serialNumber, int count, bool isOrderByInLineTime);
public bool UpdateSNReprintStatus(string serialNumber);
public List<GWorkorderSn> PrintSerialNumber(string serialNumber);
public int GetModelBarcodeCount(string serialNumber);
public bool UpdateSNPrintStatus(string serialNumber, string userId);
public int GetModelQACount(string serialNumber);
public int getPartId(string partNo);
public List<GWorkorderSn> GetBackSNs(string serialNumber);
}
}