0
This commit is contained in:
@@ -0,0 +1,14 @@
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.Linq;
|
||||
using System.Text;
|
||||
using System.Threading.Tasks;
|
||||
|
||||
namespace MyCode.Project.Domain.Message.Act.AdminReport.PrdReport
|
||||
{
|
||||
public class YearAndMonth
|
||||
{
|
||||
public int Year { get; set; }
|
||||
public int Month { get; set; }
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,17 @@
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.Linq;
|
||||
using System.Text;
|
||||
using System.Threading.Tasks;
|
||||
|
||||
namespace MyCode.Project.Domain.Message.Response.LxmZHMDReport
|
||||
{
|
||||
public class MaterialAndQty
|
||||
{
|
||||
public string MaterialMasterId { get; set; }
|
||||
|
||||
public string MaterialNumber { get; set; }
|
||||
public string MaterialName { get; set; }
|
||||
public decimal Qty { get; set; }
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,18 @@
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.Linq;
|
||||
using System.Text;
|
||||
using System.Threading.Tasks;
|
||||
|
||||
namespace MyCode.Project.Domain.Message.Response.LxmZHMDReport
|
||||
{
|
||||
public class PrdReportHead
|
||||
{
|
||||
public decimal YearPrdQty { get; set; }
|
||||
public decimal YearInStockQty { get; set; }
|
||||
public decimal MonthPrdQty { get; set; }
|
||||
public decimal MonthInStockQty { get; set; }
|
||||
public decimal StockQty { get; set; }
|
||||
public DateTime dateTime { get; set; }
|
||||
}
|
||||
}
|
||||
@@ -56,6 +56,7 @@
|
||||
<ItemGroup>
|
||||
<Compile Include="Config\K3CloudConfig.cs" />
|
||||
<Compile Include="Config\SystemConfig.cs" />
|
||||
<Compile Include="Message\Act\AdminReport\PrdReport\YearAndMonth.cs" />
|
||||
<Compile Include="Message\Act\Common\AnsyReportExportAct.cs" />
|
||||
<Compile Include="Message\Act\Common\ChangeStatusAct.cs" />
|
||||
<Compile Include="Message\Act\Common\IdAct.cs" />
|
||||
@@ -76,9 +77,11 @@
|
||||
<Compile Include="Message\Response\K3Cloud\Model\K3CloudResult.cs" />
|
||||
<Compile Include="Message\Response\K3Cloud\Model\K3CloudResultInfo.cs" />
|
||||
<Compile Include="Message\Response\K3Cloud\Model\K3CloudSuccessEntity.cs" />
|
||||
<Compile Include="Message\Response\LxmZHMDReport\MaterialAndQty.cs" />
|
||||
<Compile Include="Message\Response\LxmZHMDReport\PrdMOExecuteDetailRpt.cs" />
|
||||
<Compile Include="Message\Response\LxmZHMDReport\PrdMoOrderEntryResp.cs" />
|
||||
<Compile Include="Message\Response\LxmZHMDReport\PrdMoOrderResp.cs" />
|
||||
<Compile Include="Message\Response\LxmZHMDReport\PrdReportHead.cs" />
|
||||
<Compile Include="Message\Response\LxmZHMDReport\ReportCalRateResp.cs" />
|
||||
<Compile Include="Message\Response\LxmZHMDReport\SalOrderResp.cs" />
|
||||
<Compile Include="Message\Response\PurOrder\PurOrderMainResp.cs" />
|
||||
@@ -125,9 +128,7 @@
|
||||
<Name>MyCode.Project.Infrastructure</Name>
|
||||
</ProjectReference>
|
||||
</ItemGroup>
|
||||
<ItemGroup>
|
||||
<Folder Include="Message\Act\AdminReport\" />
|
||||
</ItemGroup>
|
||||
<ItemGroup />
|
||||
<Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" />
|
||||
<Import Project="$(SolutionDir)\.nuget\NuGet.targets" Condition="Exists('$(SolutionDir)\.nuget\NuGet.targets')" />
|
||||
<Target Name="EnsureNuGetPackageBuildImports" BeforeTargets="PrepareForBuild">
|
||||
|
||||
@@ -1,5 +1,6 @@
|
||||
using MyCode.Project.Domain;
|
||||
using MyCode.Project.Domain.Message;
|
||||
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.Domain.Model;
|
||||
@@ -31,5 +32,9 @@ namespace MyCode.Project.Domain.Repositories
|
||||
/// <param name="search"></param>
|
||||
/// <returns></returns>
|
||||
PageResult<PrdMoOrderEntryResp> GetPrdMoEntryPageList(PagedSearch<IdAct> search);
|
||||
PrdReportHead GetMoDataChartHeadByYearAndMonth(YearAndMonth yearAndMonth);
|
||||
List<MaterialAndQty> GetPrdInStockGroupByMaterial(YearAndMonth yearAndMonth);
|
||||
List<MaterialAndQty> GetPrdMoGroupByMaterial(YearAndMonth yearAndMonth);
|
||||
List<MaterialAndQty> GetInventoryGroupByMaterial();
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user