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.
34 lines
1018 B
C#
34 lines
1018 B
C#
using Estsh.Core.Base;
|
|
using Estsh.Core.Models;
|
|
using Estsh.Core.Repositories;
|
|
using Newtonsoft.Json.Linq;
|
|
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace Estsh.Core.Wms.IRepositories
|
|
{
|
|
public interface IOffLineProInStockRepository : IBaseRepository<BaseEntity>
|
|
{
|
|
|
|
public SysStock CheckCartonNoStatus(string cartonNo);
|
|
|
|
public List<SysLocate> CheckLocateStatus(string locateName);
|
|
|
|
public List<SysStock> CheckUseStockCapacity(string locateName);
|
|
|
|
public List<WmsInstockSn> CheckCartonSNStatus(string orderNo, string carton_no);
|
|
|
|
public List<WmsInstock> GetOffLineOrderList();
|
|
|
|
public string UpdateStockStatus(List<SysStock> oldStock, List<SysLocate> locate, int status, int TransType, string loginId, string groupNo);
|
|
|
|
|
|
public string CheckWmsInstockStatus(string loginId,string orderNo);
|
|
|
|
public List<SysStock> GetInstock(string orderNo,string carton_no);
|
|
}
|
|
}
|