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.
32 lines
1.0 KiB
C#
32 lines
1.0 KiB
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 IFinishDeliveryRepository : IBaseRepository<BaseEntity>
|
|
{
|
|
|
|
public List<SysCustomer> GetCustomer(string cartonNo);
|
|
|
|
public List<SysStock> ProductionCode(string cartonNo, string loginId,string customer,string isComplete);
|
|
|
|
public List<WmsOutstock> GetOutStock(string deliveryNo);
|
|
|
|
public List<SysEnum> GetEnums(int enum_value);
|
|
public SetObjectDetail ProductionDelivery(List<SysStock> updateStock, string loginId,string customer,string deliveryNo);
|
|
|
|
public List<WmsOutstock> GetFinishDeliveryOrderList(string orderNo);
|
|
|
|
public bool SetFinishDeliveryOrderNoSubmit(string orderNo, string loginId);
|
|
|
|
public List<WmsOutstockDetail> GetFinishDeliveryOrderListByOrderNo(string orderNo);
|
|
}
|
|
}
|