Rename Monthly Inventory to Movement
This commit is contained in:
@@ -2,14 +2,5 @@ using InventoryTraker.Web.Core;
|
||||
|
||||
namespace InventoryTraker.Web.Models
|
||||
{
|
||||
public class InventoryReportItem
|
||||
{
|
||||
public Inventory Inventory { get; set; }
|
||||
public int BeginningQuantity { get; set; }
|
||||
public int AddedQuantity { get; set; }
|
||||
public int TotalAvailableQuantity { get; set; }
|
||||
public int DistributedQuantity { get; set; }
|
||||
public int AdjustmentQuantity { get; set; }
|
||||
public int EndingQuantity { get; set; }
|
||||
}
|
||||
|
||||
}
|
||||
+2
-2
@@ -3,9 +3,9 @@ using System.Collections.Generic;
|
||||
|
||||
namespace InventoryTraker.Web.Models
|
||||
{
|
||||
public class InventoryTypeReport
|
||||
public class MovementReport
|
||||
{
|
||||
public DateTime Month { get; set; }
|
||||
public IEnumerable<InventoryTypeReportItem> Items { get; set; }
|
||||
public IEnumerable<MovementReportItem> Items { get; set; }
|
||||
}
|
||||
}
|
||||
+1
-1
@@ -1,6 +1,6 @@
|
||||
namespace InventoryTraker.Web.Models
|
||||
{
|
||||
public class InventoryTypeReportItem
|
||||
public class MovementReportItem
|
||||
{
|
||||
public InventoryTypeViewModel InventoryType { get; set; }
|
||||
public int BeginningQuantity { get; set; }
|
||||
Reference in New Issue
Block a user