1234567891011121314151617181920212223242526272829303132333435363738 |
- using System;
- using InABox.Configuration;
- namespace Comal.Classes
- {
- public enum ManufacturingViewType
- {
- Full,
- Compact,
- Job
- }
- public class ManufacturingSettings : IUserConfigurationSettings
- {
- [Obsolete("Repaced with FactoryID")]
- public string Factory { get; set; }
- public Guid FactoryID { get; set; }
- public bool SortByDueDate { get; set; }
- public ManufacturingViewType ViewType { get; set; }
- public bool IncludeHeld { get; set; }
- public enum FilterOrdersOptions
- {
- IncludeOrders,
- OrdersOnly,
- ExcludeOrders
- }
- public FilterOrdersOptions FilterOrders { get; set; } = FilterOrdersOptions.ExcludeOrders;
- public bool IncludeCompleted { get; set; }
- public string ExportColumns { get; set; }
- }
- }
|