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.3 KiB
C#
29 lines
1.3 KiB
C#
using Dapper;
|
|
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 ISaleBatchRepository : IBaseRepository<BaseEntity>
|
|
{
|
|
public List<WmsOutstockDetail> CheckMoveDetail(string orderNo, int status);
|
|
public SysStock GetCartonInfo(string cartonNo);
|
|
public SysCustomerPart GetCustomerPart(string partNo);
|
|
public List<SysStock> GetPartByFIFO(string part_id);
|
|
public SetObjectDetail UpdteStatus(string orderNo, List<WmsOutstockDetail> detail, SysStock Stock, string groupNo, string loginId,string customBarcode);
|
|
public List<SysStock> CheckMaterialSplit(List<SysStock> oldStock, int splitNum, string loginId, int splitCount);
|
|
public string checkCartonNo(string carton, int splitCount);
|
|
public List<SysStock> GetMaterialInfo(string cartonNo);
|
|
public List<WmsOutstock> GetSaleBatchOrderList(string orderNo);
|
|
public List<WmsOutstockDetail> GetSaleBatchOrderListByOrderNo(string orderNo);
|
|
public int SQLTransaction(List<string> sqlStrings, List<DynamicParameters> parameterList);
|
|
}
|
|
}
|