Files
YunTongJackYunTask/Reportapi/MyCode.Project.Services/IServices/IPrdOrderService.cs
2025-09-02 14:52:56 +08:00

51 lines
1.8 KiB
C#

using MyCode.Project.Domain.Message.Act.AdminReport.PrdReport;
using MyCode.Project.Domain.Message.Act.Common;
using MyCode.Project.Domain.Message.Response.LxmZHMDReport;
using MyCode.Project.Infrastructure.Common;
using MyCode.Project.Infrastructure.JackYun;
using System.Collections.Generic;
namespace MyCode.Project.Services
{
public interface IPrdOrderService
{
/// <summary>
/// 获取生产订单列表数据
/// </summary>
/// <param name="search"></param>
/// <returns></returns>
PageResult<PrdMoOrderResp> GetPrdMoPageList(PagedSearch search);
/// <summary>
/// 获取生产订单明细列表数据
/// </summary>
/// <param name="search"></param>
/// <returns></returns>
PageResult<PrdMoOrderEntryResp> GetPrdMoEntryPageList(PagedSearch<IdAct> search);
/// <summary>
/// 获取生产订单执行统计表数据
/// </summary>
/// <param name="search"></param>
/// <returns></returns>
PageResult<PrdMOExecuteDetailRpt> GetMoExecuteSumRespData(PagedSearch search);
/// <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();
}
}