0
This commit is contained in:
@@ -1,61 +0,0 @@
|
||||
using Gatedge.K3Cloud.Utils.Model.K3Request;
|
||||
using Gatedge.K3Cloud.Utils.Model.K3Result;
|
||||
using Gatedge.K3Cloud.Utils.Model.K3Result.Model;
|
||||
using Gatedge.ScanCode.Models.Dto.PrdInStock;
|
||||
|
||||
namespace Gatedge.ScanCode.Services.IServices
|
||||
{
|
||||
/// <summary>
|
||||
/// 生产入库单接口
|
||||
/// </summary>
|
||||
public interface IPrdInStockService
|
||||
{
|
||||
/// <summary>
|
||||
/// 单据查看
|
||||
/// </summary>
|
||||
/// <param name="param"></param>
|
||||
/// <returns></returns>
|
||||
public object View(View param);
|
||||
|
||||
/// <summary>
|
||||
/// 列表接口
|
||||
/// </summary>
|
||||
/// <returns></returns>
|
||||
public ListResult List(Query queryParam);
|
||||
|
||||
/// <summary>
|
||||
/// 提交接口
|
||||
/// </summary>
|
||||
/// <param name="billCancelAssign"></param>
|
||||
/// <returns></returns>
|
||||
public K3CloudResponseStatus CancelAssign(CancelAssign billCancelAssign);
|
||||
|
||||
/// <summary>
|
||||
/// 提交接口
|
||||
/// </summary>
|
||||
/// <param name="billSubmit"></param>
|
||||
/// <returns></returns>
|
||||
public K3CloudResponseStatus Submit(Submit billSubmit);
|
||||
|
||||
/// <summary>
|
||||
/// 审核接口
|
||||
/// </summary>
|
||||
/// <param name="billAudit"></param>
|
||||
/// <returns></returns>
|
||||
public K3CloudResponseStatus Audit(Audit billAudit);
|
||||
|
||||
/// <summary>
|
||||
/// 提交并审核
|
||||
/// </summary>
|
||||
/// <param name="param"></param>
|
||||
/// <returns></returns>
|
||||
public K3CloudResponseStatus SubmitAndAudit(PrdInStockInspect param);
|
||||
|
||||
/// <summary>
|
||||
/// 删除
|
||||
/// </summary>
|
||||
/// <param name="deleteParam"></param>
|
||||
/// <returns></returns>
|
||||
public K3CloudResponseStatus Delete(Delete deleteParam);
|
||||
}
|
||||
}
|
||||
@@ -1,29 +0,0 @@
|
||||
using Gatedge.K3Cloud.Utils.Model.K3Request;
|
||||
using Gatedge.K3Cloud.Utils.Model.K3Result;
|
||||
using Gatedge.K3Cloud.Utils.Model.K3Result.Model;
|
||||
namespace Gatedge.ScanCode.Services.IServices
|
||||
{
|
||||
/// <summary>
|
||||
/// 生产订单接口
|
||||
/// </summary>
|
||||
public interface IProductionOrderService
|
||||
{
|
||||
/// <summary>
|
||||
/// 查看接口
|
||||
/// </summary>
|
||||
/// <param name="param"></param>
|
||||
/// <returns></returns>
|
||||
public object View(View param);
|
||||
|
||||
/// <summary>
|
||||
/// 列表接口
|
||||
/// </summary>
|
||||
/// <returns></returns>
|
||||
public ListResult List(Query queryParam);
|
||||
|
||||
/// <summary>
|
||||
/// 下推生产入库单
|
||||
/// </summary>
|
||||
public K3CloudResponseStatus PushPrdInStock(int barRecordId);
|
||||
}
|
||||
}
|
||||
17
Gatedge.ScanCode/Services/IServices/IPurchaseOrderService.cs
Normal file
17
Gatedge.ScanCode/Services/IServices/IPurchaseOrderService.cs
Normal file
@@ -0,0 +1,17 @@
|
||||
using Gatedge.K3Cloud.Utils.Model.K3Result.Model;
|
||||
|
||||
namespace Gatedge.ScanCode.Services.IServices
|
||||
{
|
||||
/// <summary>
|
||||
/// 采购订单服务接口
|
||||
/// </summary>
|
||||
public interface IPurchaseOrderService
|
||||
{
|
||||
/// <summary>
|
||||
/// 下推采购入库单
|
||||
/// </summary>
|
||||
/// <param name="barRecordId"></param>
|
||||
/// <returns></returns>
|
||||
public K3CloudResponseStatus PushPurInStock(int barRecordId);
|
||||
}
|
||||
}
|
||||
25
Gatedge.ScanCode/Services/IServices/IStkInStockService.cs
Normal file
25
Gatedge.ScanCode/Services/IServices/IStkInStockService.cs
Normal file
@@ -0,0 +1,25 @@
|
||||
using Gatedge.K3Cloud.Utils.Model.K3Request;
|
||||
using Gatedge.K3Cloud.Utils.Model.K3Result.Model;
|
||||
|
||||
namespace Gatedge.ScanCode.Services.IServices
|
||||
{
|
||||
/// <summary>
|
||||
/// 采购入库单服务接口
|
||||
/// </summary>
|
||||
public interface IStkInStockService
|
||||
{
|
||||
/// <summary>
|
||||
/// 撤销
|
||||
/// </summary>
|
||||
/// <param name="cancelAssign"></param>
|
||||
void CancelAssign(CancelAssign cancelAssign);
|
||||
void Delete(Delete stkInStockDeleteParam);
|
||||
|
||||
/// <summary>
|
||||
/// 提交
|
||||
/// </summary>
|
||||
/// <param name="stkInStockSubmitParam"></param>
|
||||
/// <returns></returns>
|
||||
K3CloudResponseStatus Submit(Submit stkInStockSubmitParam);
|
||||
}
|
||||
}
|
||||
@@ -1,28 +0,0 @@
|
||||
using Gatedge.K3Cloud.Utils.Model.K3Request;
|
||||
using Gatedge.K3Cloud.Utils.Model.K3Result;
|
||||
|
||||
namespace Gatedge.ScanCode.Services.IServices
|
||||
{
|
||||
/// <summary>
|
||||
/// 装配车间排产计划接口
|
||||
/// </summary>
|
||||
public interface IZP_ProductionSchedulingPlanService
|
||||
{
|
||||
/// <summary>
|
||||
/// 单据查询接口
|
||||
/// </summary>
|
||||
/// <param name="param"></param>
|
||||
/// <returns></returns>
|
||||
public dynamic View(View param);
|
||||
|
||||
/// <summary>
|
||||
/// 获取列表信息
|
||||
/// </summary>
|
||||
/// <param name="billQuery"></param>
|
||||
/// <returns></returns>
|
||||
public ListResult List(Query billQuery);
|
||||
|
||||
|
||||
|
||||
}
|
||||
}
|
||||
@@ -1,25 +0,0 @@
|
||||
using Gatedge.K3Cloud.Utils.Model.K3Request;
|
||||
using Gatedge.K3Cloud.Utils.Model.K3Result;
|
||||
|
||||
namespace Gatedge.ScanCode.Services.IServices
|
||||
{
|
||||
/// <summary>
|
||||
/// 注塑排产计划服务接口
|
||||
/// </summary>
|
||||
public interface IZS_ProductionSchedulingPlanService
|
||||
{
|
||||
/// <summary>
|
||||
/// 单据查询接口
|
||||
/// </summary>
|
||||
/// <param name="param"></param>
|
||||
/// <returns></returns>
|
||||
public dynamic View(View param);
|
||||
|
||||
/// <summary>
|
||||
/// 获取列表信息
|
||||
/// </summary>
|
||||
/// <param name="billQuery"></param>
|
||||
/// <returns></returns>
|
||||
public ListResult List(Query billQuery);
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user