1
This commit is contained in:
@@ -0,0 +1,46 @@
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.Linq;
|
||||
using System.Text;
|
||||
using System.Threading.Tasks;
|
||||
|
||||
namespace MyCode.Project.Domain.Message.Response.PurOrder
|
||||
{
|
||||
public class PurOrderDetilResp
|
||||
{
|
||||
|
||||
|
||||
public int Fid { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// 物料名称
|
||||
/// </summary>
|
||||
public string MaterialName { get; set; }
|
||||
|
||||
///// <summary>
|
||||
///// 订单编号
|
||||
///// </summary>
|
||||
//public string FBILLNO { get; set; }
|
||||
|
||||
|
||||
/// <summary>
|
||||
/// 采购数量
|
||||
/// </summary>
|
||||
public decimal Qty { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// 总入库数量
|
||||
/// </summary>
|
||||
public decimal StockInQty { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// 总未入库数量
|
||||
/// </summary>
|
||||
public decimal RemainStockInQty { get;set; }
|
||||
|
||||
/// <summary>
|
||||
/// 入库比例
|
||||
/// </summary>
|
||||
public decimal StockInRate { get; set; }
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,49 @@
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.Linq;
|
||||
using System.Text;
|
||||
using System.Threading.Tasks;
|
||||
|
||||
namespace MyCode.Project.Domain.Message.Response.PurOrder
|
||||
{
|
||||
public class PurOrderMainResp
|
||||
{
|
||||
|
||||
public int Fid { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// 供应商名称
|
||||
/// </summary>
|
||||
public string SupplierName { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// 订单编号
|
||||
/// </summary>
|
||||
public string FBILLNO { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// 采购日期
|
||||
/// </summary>
|
||||
public string FDate { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// 总数量
|
||||
/// </summary>
|
||||
public decimal Qty { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// 总入库数量
|
||||
/// </summary>
|
||||
public decimal StockInQty { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// 总未入库数量
|
||||
/// </summary>
|
||||
public decimal RemainStockInQty { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// 入库比例
|
||||
/// </summary>
|
||||
public decimal StockInRate { get; set; }
|
||||
}
|
||||
}
|
||||
@@ -70,6 +70,8 @@
|
||||
<Compile Include="Message\Response\Common\ListHeadFieldData.cs" />
|
||||
<Compile Include="Message\Response\LxmZHMDReport\ReportCalRateResp.cs" />
|
||||
<Compile Include="Message\Response\LxmZHMDReport\SalOrderResp.cs" />
|
||||
<Compile Include="Message\Response\PurOrder\PurOrderMainResp.cs" />
|
||||
<Compile Include="Message\Response\PurOrder\PurOrderDetilResp.cs" />
|
||||
<Compile Include="Message\Response\Queue\QueueProcess.cs" />
|
||||
<Compile Include="Message\Response\User\AdminLoginInfo.cs" />
|
||||
<Compile Include="Message\Response\User\LoginInfo.cs" />
|
||||
@@ -85,7 +87,7 @@
|
||||
<Compile Include="Properties\AssemblyInfo.cs" />
|
||||
<Compile Include="Repositories\IApiLogRepository.cs" />
|
||||
<Compile Include="Repositories\IJackOrdersRepository.cs" />
|
||||
<Compile Include="Repositories\IPushKingDeeOrderRepository.cs" />
|
||||
<Compile Include="Repositories\IPurOrderRepository.cs" />
|
||||
<Compile Include="Repositories\IRepository.cs" />
|
||||
<Compile Include="Repositories\IRepository`.cs" />
|
||||
<Compile Include="Repositories\ISysWorkprocessHistoryRepository.cs" />
|
||||
@@ -113,7 +115,6 @@
|
||||
</ItemGroup>
|
||||
<ItemGroup>
|
||||
<Folder Include="Message\Act\AdminReport\" />
|
||||
<Folder Include="Message\Response\PurOrder\" />
|
||||
</ItemGroup>
|
||||
<Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" />
|
||||
<Import Project="$(SolutionDir)\.nuget\NuGet.targets" Condition="Exists('$(SolutionDir)\.nuget\NuGet.targets')" />
|
||||
|
||||
@@ -0,0 +1,33 @@
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.Linq;
|
||||
using System.Text;
|
||||
using System.Threading.Tasks;
|
||||
using MyCode.Project.Infrastructure;
|
||||
using MyCode.Project.Domain;
|
||||
using MyCode.Project.Domain.Model;
|
||||
using MyCode.Project.Infrastructure.Common;
|
||||
using MyCode.Project.Domain.Message;
|
||||
using MyCode.Project.Domain.Message.Response.PurOrder;
|
||||
using MyCode.Project.Domain.Message.Act.Common;
|
||||
|
||||
namespace MyCode.Project.Domain.Repositories
|
||||
{
|
||||
public interface IPurOrderRepository : IRepository<PushKingDeeOrder>
|
||||
{
|
||||
/// <summary>
|
||||
/// 根据查询参数查询采购订单列表
|
||||
/// </summary>
|
||||
/// <param name="search"></param>
|
||||
/// <returns></returns>
|
||||
PageResult<PurOrderMainResp> GetPurOrderMain(PagedSearch search);
|
||||
|
||||
/// <summary>
|
||||
/// 根据内码查采购订单明细
|
||||
/// </summary>
|
||||
/// <param name="FID"></param>
|
||||
/// <param name="search"></param>
|
||||
/// <returns></returns>
|
||||
PageResult<PurOrderDetilResp> GetPurOrderDetil(PagedSearch<IdAct> search);
|
||||
}
|
||||
}
|
||||
@@ -1,30 +0,0 @@
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.Linq;
|
||||
using System.Text;
|
||||
using System.Threading.Tasks;
|
||||
using MyCode.Project.Infrastructure;
|
||||
using MyCode.Project.Domain;
|
||||
using MyCode.Project.Domain.Model;
|
||||
using MyCode.Project.Infrastructure.Common;
|
||||
using MyCode.Project.Domain.Message;
|
||||
|
||||
namespace MyCode.Project.Domain.Repositories
|
||||
{
|
||||
public interface IPushKingDeeOrderRepository : IRepository<PushKingDeeOrder>
|
||||
{
|
||||
///// <summary>
|
||||
///// 根据行数查询采购订单列表
|
||||
///// </summary>
|
||||
///// <param name="PageSize"></param>
|
||||
///// <returns></returns>
|
||||
//PageResult<PurOrderMainResp> PurOrderMainQuery(int PageSize);
|
||||
|
||||
///// <summary>
|
||||
///// 根据内码查采购订单明细
|
||||
///// </summary>
|
||||
///// <param name="FID"></param>
|
||||
///// <returns></returns>
|
||||
//PageResult<PurOrderDetilResp> PurOrderDetilQuery(int FID);
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user