initial commit

This commit is contained in:
2026-07-21 14:41:46 +07:00
commit 1bfa3dd1c2
1159 changed files with 88228 additions and 0 deletions
+30
View File
@@ -0,0 +1,30 @@
using Indotalent.Data.Abstracts;
using Indotalent.Data.Interfaces;
using Indotalent.Data.Enums;
namespace Indotalent.Data.Entities;
public class InventoryTransaction : BaseEntity, IHasAutoNumber
{
public string? ModuleId { get; set; }
public string? ModuleName { get; set; }
public string? ModuleCode { get; set; }
public string? ModuleNumber { get; set; }
public DateTime? MovementDate { get; set; }
public InventoryTransactionStatus Status { get; set; }
public string? AutoNumber { get; set; }
public string? WarehouseId { get; set; }
public Warehouse? Warehouse { get; set; }
public string? ProductId { get; set; }
public Product? Product { get; set; }
public double? Movement { get; set; }
public InventoryTransType? TransType { get; set; }
public double? Stock { get; set; }
public string? WarehouseFromId { get; set; }
public Warehouse? WarehouseFrom { get; set; }
public string? WarehouseToId { get; set; }
public Warehouse? WarehouseTo { get; set; }
public double? QtySCSys { get; set; }
public double? QtySCCount { get; set; }
public double? QtySCDelta { get; set; }
}