StockArea.cs 674 B

1234567891011121314151617181920212223
  1. using InABox.Core;
  2. namespace Comal.Classes
  3. {
  4. [UserTracking(typeof(StockMovement))]
  5. public class StockArea : Entity, IStockArea, IRemotable, IPersistent, ILicense<WarehouseLicense>, IExportable, IImportable
  6. {
  7. [EditorSequence(4)]
  8. [CheckBoxEditor]
  9. public bool Active { get; set; } = true;
  10. [EditorSequence(1)]
  11. [UniqueCodeEditor(Visible = Visible.Default, Editable = Editable.Enabled)]
  12. public string Code { get; set; }
  13. [EditorSequence(2)]
  14. [TextBoxEditor]
  15. public string Description { get; set; }
  16. [EditorSequence(3)]
  17. public StockWarehouseLink Warehouse { get; set; }
  18. }
  19. }