gunsmith-common 2.1.12 → 2.1.16

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -83,6 +83,7 @@
83
83
 
84
84
  var Dealer = /** @class */ (function () {
85
85
  function Dealer() {
86
+ this.couponDiscount = 20;
86
87
  this.active = true;
87
88
  this.contacts = [];
88
89
  }
@@ -243,6 +244,9 @@
243
244
  WorkOrderStatus[WorkOrderStatus["OutOfShop"] = 2] = "OutOfShop";
244
245
  WorkOrderStatus[WorkOrderStatus["WaitingOnCustomer"] = 3] = "WaitingOnCustomer";
245
246
  WorkOrderStatus[WorkOrderStatus["CustomerNotified"] = 4] = "CustomerNotified";
247
+ WorkOrderStatus[WorkOrderStatus["ShippingPostponed"] = 10] = "ShippingPostponed";
248
+ WorkOrderStatus[WorkOrderStatus["FflNeeded"] = 11] = "FflNeeded";
249
+ WorkOrderStatus[WorkOrderStatus["InspectionNeeded"] = 12] = "InspectionNeeded";
246
250
  WorkOrderStatus[WorkOrderStatus["ReadyToShip"] = 5] = "ReadyToShip";
247
251
  WorkOrderStatus[WorkOrderStatus["Completed"] = 6] = "Completed";
248
252
  WorkOrderStatus[WorkOrderStatus["Cancelled"] = 7] = "Cancelled";