1234567891011121314151617181920212223242526272829303132333435363738 |
- using System;
- using InABox.Core;
- namespace Comal.Classes
- {
-
- public class SupplierStockLocationLink : EntityLink<StockLocation>
- {
-
- [CodePopupEditor(typeof(StockLocation))]
- public override Guid ID { get; set; }
-
- [CodeEditor(Visible = Visible.Default, Editable = Editable.Hidden)]
- public string Code { get; set; }
-
- [TextBoxEditor(Editable = Editable.Hidden)]
- public string Description { get; set; }
- }
-
- public class StockLocationLink : EntityLink<StockLocation>, IStockLocation
- {
- public StockAreaLink Area { get; set; }
- [CodePopupEditor(typeof(StockLocation))]
- public override Guid ID { get; set; }
- [CodeEditor(Visible = Visible.Default, Editable = Editable.Hidden)]
- public string Code { get; set; }
- [TextBoxEditor(Editable = Editable.Hidden)]
- public string Description { get; set; }
- public JobLink Job { get; set; }
- [NullEditor]
- public bool Active { get; set; }
- }
- }
|