feat: remove Supplier/SupplierOffering/PurchaseItem entities and migrate schema
This commit is contained in:
@@ -7,14 +7,11 @@ public class StockTransaction
|
||||
public int Quantity { get; set; }
|
||||
public StockTransactionType Type { get; set; }
|
||||
public int? JobId { get; set; }
|
||||
public int? SupplierId { get; set; }
|
||||
public decimal? UnitPrice { get; set; }
|
||||
public string? Notes { get; set; }
|
||||
public DateTime CreatedAt { get; set; } = DateTime.UtcNow;
|
||||
|
||||
public StockItem StockItem { get; set; } = null!;
|
||||
public Job? Job { get; set; }
|
||||
public Supplier? Supplier { get; set; }
|
||||
}
|
||||
|
||||
public enum StockTransactionType
|
||||
|
||||
Reference in New Issue
Block a user