2025-09-02 14:52:56 +08:00
|
|
|
|
using MyCode.Project.Domain.Message.Act.AdminReport.PrdReport;
|
|
|
|
|
|
using MyCode.Project.Domain.Message.Act.Common;
|
2025-08-23 18:22:55 +08:00
|
|
|
|
using MyCode.Project.Domain.Message.Response.LxmZHMDReport;
|
2025-08-23 17:38:02 +08:00
|
|
|
|
using MyCode.Project.Infrastructure.Common;
|
|
|
|
|
|
using MyCode.Project.Infrastructure.JackYun;
|
2025-09-02 14:52:56 +08:00
|
|
|
|
using System.Collections.Generic;
|
2025-08-23 16:27:17 +08:00
|
|
|
|
|
|
|
|
|
|
namespace MyCode.Project.Services
|
|
|
|
|
|
{
|
2025-08-23 17:15:28 +08:00
|
|
|
|
public interface IPrdOrderService
|
2025-08-23 16:27:17 +08:00
|
|
|
|
{
|
2025-08-23 17:38:02 +08:00
|
|
|
|
/// <summary>
|
|
|
|
|
|
/// 获取生产订单列表数据
|
|
|
|
|
|
/// </summary>
|
|
|
|
|
|
/// <param name="search"></param>
|
|
|
|
|
|
/// <returns></returns>
|
|
|
|
|
|
PageResult<PrdMoOrderResp> GetPrdMoPageList(PagedSearch search);
|
2025-08-23 16:27:17 +08:00
|
|
|
|
|
2025-08-23 18:22:55 +08:00
|
|
|
|
/// <summary>
|
|
|
|
|
|
/// 获取生产订单明细列表数据
|
|
|
|
|
|
/// </summary>
|
|
|
|
|
|
/// <param name="search"></param>
|
|
|
|
|
|
/// <returns></returns>
|
|
|
|
|
|
PageResult<PrdMoOrderEntryResp> GetPrdMoEntryPageList(PagedSearch<IdAct> search);
|
|
|
|
|
|
|
2025-09-01 17:21:34 +08:00
|
|
|
|
/// <summary>
|
|
|
|
|
|
/// 获取生产订单执行统计表数据
|
|
|
|
|
|
/// </summary>
|
|
|
|
|
|
/// <param name="search"></param>
|
|
|
|
|
|
/// <returns></returns>
|
|
|
|
|
|
PageResult<PrdMOExecuteDetailRpt> GetMoExecuteSumRespData(PagedSearch search);
|
2025-09-02 14:52:56 +08:00
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
|
/// 获取报表头
|
|
|
|
|
|
/// </summary>
|
|
|
|
|
|
/// <param name="yearAndMonth"></param>
|
|
|
|
|
|
/// <returns></returns>
|
|
|
|
|
|
PrdReportHead GetMoDataChartHeadByYearAndMonth(YearAndMonth yearAndMonth);
|
|
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
|
/// 获取看板折现图
|
|
|
|
|
|
/// </summary>
|
|
|
|
|
|
/// <param name="yearAndMonth"></param>
|
|
|
|
|
|
/// <returns></returns>
|
|
|
|
|
|
List<PrdReportHead> GetMoDataChartByYearAndMonth(YearAndMonth yearAndMonth);
|
|
|
|
|
|
List<MaterialAndQty> GetPrdInStockGroupByMaterial(YearAndMonth yearAndMonth);
|
|
|
|
|
|
List<MaterialAndQty> GetPrdMoGroupByMaterial(YearAndMonth yearAndMonth);
|
|
|
|
|
|
List<MaterialAndQty> GetInventoryGroupByMaterial();
|
2025-08-23 16:27:17 +08:00
|
|
|
|
}
|
|
|
|
|
|
}
|