| 1234567891011121314151617181920212223242526 |
- using Comal.Classes;
- using InABox.Configuration;
- using InABox.Core;
- namespace PRSDesktop;
- public class ReservationManagementGlobalSettings : BaseObject, IGlobalConfigurationSettings
- {
- [EditorSequence(1)]
- [Caption("Default Product Style", IncludePath = false)]
- public ProductStyleLink ProductStyle => InitializeField(ref _productStyle, nameof(ProductStyle));
- private ProductStyleLink? _productStyle;
- [EditorSequence(2)]
- [Caption("Due Date Alert (Days)")]
- public int DueDateAlert { get; set; } = 7;
-
- [EditorSequence(3)]
- [Caption("Due Date Warning (Days)")]
- public int DueDateWarning { get; set; } = 2;
- [EditorSequence(4)]
- [Comment("Automatically issue purchase orders raised for treatment")]
- [CheckBoxEditor]
- public bool AutoIssueTreatmentPOs { get; set; } = false;
- }
|