diff --git a/antis-ncc-admin/src/views/lqInventory/export-usage-dialog.vue b/antis-ncc-admin/src/views/lqInventory/export-usage-dialog.vue new file mode 100644 index 0000000..362ebb6 --- /dev/null +++ b/antis-ncc-admin/src/views/lqInventory/export-usage-dialog.vue @@ -0,0 +1,171 @@ + + + + + + diff --git a/netcore/src/Modularity/Extend/NCC.Extend.Entitys/Dto/LqInventoryUsage/LqInventoryUsageExportInput.cs b/netcore/src/Modularity/Extend/NCC.Extend.Entitys/Dto/LqInventoryUsage/LqInventoryUsageExportInput.cs new file mode 100644 index 0000000..5b8f82d --- /dev/null +++ b/netcore/src/Modularity/Extend/NCC.Extend.Entitys/Dto/LqInventoryUsage/LqInventoryUsageExportInput.cs @@ -0,0 +1,51 @@ +using System; + +namespace NCC.Extend.Entitys.Dto.LqInventoryUsage +{ + /// + /// 仓库使用记录导出Excel查询参数 + /// + public class LqInventoryUsageExportInput + { + /// + /// 门店ID(可选) + /// + public string StoreId { get; set; } + + /// + /// 产品ID(可选) + /// + public string ProductId { get; set; } + + /// + /// 批次号(可选) + /// + public string UsageBatchId { get; set; } + + /// + /// 使用开始时间(可选) + /// + public DateTime? UsageStartTime { get; set; } + + /// + /// 使用结束时间(可选) + /// + public DateTime? UsageEndTime { get; set; } + + /// + /// 是否审核通过(可选,true-已通过,false-未通过,null-全部) + /// + public bool? IsApproved { get; set; } + + /// + /// 是否已领取(可选,true-已领取,false-未领取,null-全部) + /// + public bool? IsReceived { get; set; } + + /// + /// 是否有效(可选,true-有效,false-无效,null-全部) + /// + public bool? IsEffective { get; set; } + } +} + diff --git a/netcore/src/Modularity/Extend/NCC.Extend.Entitys/Dto/LqInventoryUsage/LqInventoryUsageExportOutput.cs b/netcore/src/Modularity/Extend/NCC.Extend.Entitys/Dto/LqInventoryUsage/LqInventoryUsageExportOutput.cs new file mode 100644 index 0000000..ffcc675 --- /dev/null +++ b/netcore/src/Modularity/Extend/NCC.Extend.Entitys/Dto/LqInventoryUsage/LqInventoryUsageExportOutput.cs @@ -0,0 +1,66 @@ +using System; + +namespace NCC.Extend.Entitys.Dto.LqInventoryUsage +{ + /// + /// 仓库使用记录导出Excel输出 + /// + public class LqInventoryUsageExportOutput + { + /// + /// 批次号 + /// + public string BatchId { get; set; } + + /// + /// 产品名称 + /// + public string ProductName { get; set; } + + /// + /// 门店名称 + /// + public string StoreName { get; set; } + + /// + /// 使用数量 + /// + public int UsageQuantity { get; set; } + + /// + /// 单价 + /// + public decimal UnitPrice { get; set; } + + /// + /// 总金额 + /// + public decimal TotalAmount { get; set; } + + /// + /// 使用时间 + /// + public DateTime UsageTime { get; set; } + + /// + /// 归属仓库 + /// + public string Warehouse { get; set; } + + /// + /// 审批状态 + /// + public string ApprovalStatus { get; set; } + + /// + /// 是否已领取 + /// + public string IsReceived { get; set; } + + /// + /// 是否有效 + /// + public string IsEffective { get; set; } + } +} +