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.

23 lines
821 B
C#

using Estsh.Core.Model.ExcelModel;
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 IStockAdjustDefineService : IBaseService<SysStock>
{
public List<SysStock> GetAllData(string _where);
public bool MoveStock(string LotNo);
public bool IsExist(string carton_no);
public bool Exist(string locateID);
public void UpdateLocateEmpty(string locateID);
public string AdjustStock(List<StockAdjustDefine> dt, int userID);
public bool TransType(string lotNo, ref DataTable dt);
public bool update(string qty, string lotNo);
public Hashtable ReadExcelFile(List<StockAdjustDefine> inputStream, int userId);
}
}