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.
31 lines
1.4 KiB
C#
31 lines
1.4 KiB
C#
using Estsh.Core.Model.Models;
|
|
using Estsh.Core.Model.Result;
|
|
using Estsh.Core.Models;
|
|
using Estsh.Core.Util;
|
|
using System.Collections;
|
|
using System.Data;
|
|
|
|
namespace Estsh.Core.Services.IServices
|
|
{
|
|
public interface IPurchaseSubtractiveService : IBaseService<SysStock>
|
|
{
|
|
public List<GPoCancelMaster> getQueryByPage(int PageSize, int PageIndex, string strWhere, string direction, string sort);
|
|
public string GetServerDateTime(string flag);
|
|
public string GetOrderNo(string item, string prefix);
|
|
public List<KeyValueResult> GetFactoryInfo();
|
|
public string GetFactoryId(int userID);
|
|
public List<KeyValueResult> GetModelType();
|
|
public List<KeyValueResult> GetVendorInfo();
|
|
public List<KeyValueResult> GetBuyNoInfo();
|
|
public List<SysPart> GetPartInfo(int type);
|
|
public List<KeyValueResult> GetPart();
|
|
public bool IsPoPartNo(string buyNo, string partNo);
|
|
public string DataSaveTransact(DataTable dtData, int userID);
|
|
public string GetCartonNo(string partNo, string lotNo, int seq);
|
|
public bool IsExistLineLocate(string partId);
|
|
public bool IsExistPartLotNo(string partId, string lotNo);
|
|
public bool IsExistShipAndBuyNo(string shipNo, string buyNo);
|
|
public List<dynamic> ValidateShipAndPart(string shipNo, string buyNo, string partNo, int qty, int userId);
|
|
}
|
|
}
|