@ricado/api-client 2.1.1 → 2.3.1

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.
Files changed (118) hide show
  1. package/dist/ricado.api.client.js +1 -1
  2. package/lib/Controllers/Packhouse/Site/BinTipBinController.js +622 -0
  3. package/lib/Controllers/Packhouse/Site/CompacSizerController.js +3 -3
  4. package/lib/Controllers/Packhouse/Site/FreshQualityPackrunSummaryController.js +657 -0
  5. package/lib/Controllers/Packhouse/Site/PackingLineController.js +29 -1
  6. package/lib/Controllers/Packhouse/Site/PackrunController.js +42 -0
  7. package/lib/Controllers/Packhouse/Site/ShiftHourlyEntryController.js +15 -0
  8. package/lib/Controllers/Packhouse/Site/ShiftQualitySummaryController.js +661 -0
  9. package/lib/Controllers/Packhouse/Site/ShiftTaskController.js +628 -0
  10. package/lib/Controllers/Packhouse/Site/index.js +12 -0
  11. package/lib/DataItems/PointValueItem.js +3 -3
  12. package/lib/Models/AccountPolicyModel.js +7 -7
  13. package/lib/Models/ApiAccountModel.js +7 -7
  14. package/lib/Models/CompanyModel.js +5 -5
  15. package/lib/Models/FirebaseTokenModel.js +8 -8
  16. package/lib/Models/Packhouse/Site/BinTipBinModel.js +367 -0
  17. package/lib/Models/Packhouse/Site/BinTipWeightModel.js +9 -9
  18. package/lib/Models/Packhouse/Site/CompacSizerBatchModel.js +8 -8
  19. package/lib/Models/Packhouse/Site/CompacSizerModel.js +15 -15
  20. package/lib/Models/Packhouse/Site/CompacSizerOutletProductChangeModel.js +10 -10
  21. package/lib/Models/Packhouse/Site/CompacSizerOutletTypeChangeModel.js +8 -8
  22. package/lib/Models/Packhouse/Site/CompacSizerOutletTypeModel.js +6 -6
  23. package/lib/Models/Packhouse/Site/CompacSizerPackrunSummaryModel.js +12 -12
  24. package/lib/Models/Packhouse/Site/DowntimeEventModel.js +14 -14
  25. package/lib/Models/Packhouse/Site/FreshPackPackrunSummaryModel.js +8 -8
  26. package/lib/Models/Packhouse/Site/FreshQualityPackrunSummaryModel.js +481 -0
  27. package/lib/Models/Packhouse/Site/GrowingMethodModel.js +6 -6
  28. package/lib/Models/Packhouse/Site/PackTypeModel.js +8 -8
  29. package/lib/Models/Packhouse/Site/PackingLineModel.js +583 -16
  30. package/lib/Models/Packhouse/Site/PackrunModel.js +81 -15
  31. package/lib/Models/Packhouse/Site/RejectBinModel.js +9 -9
  32. package/lib/Models/Packhouse/Site/RejectBinScaleModel.js +23 -23
  33. package/lib/Models/Packhouse/Site/RejectBinWeightModel.js +10 -10
  34. package/lib/Models/Packhouse/Site/ShiftFocusMeetingModel.js +12 -12
  35. package/lib/Models/Packhouse/Site/ShiftHourlyEntryModel.js +204 -38
  36. package/lib/Models/Packhouse/Site/ShiftModel.js +26 -19
  37. package/lib/Models/Packhouse/Site/ShiftQualitySummaryModel.js +599 -0
  38. package/lib/Models/Packhouse/Site/ShiftTaskModel.js +373 -0
  39. package/lib/Models/Packhouse/Site/SoftSortBeltModel.js +7 -7
  40. package/lib/Models/Packhouse/Site/VarietyModel.js +8 -8
  41. package/lib/Models/Packhouse/Site/index.js +12 -0
  42. package/lib/Models/RTUModel.js +6 -6
  43. package/lib/Models/RTUPluginModel.js +5 -5
  44. package/lib/Models/Site/AlarmGroupModel.js +7 -7
  45. package/lib/Models/Site/AlarmModel.js +17 -17
  46. package/lib/Models/Site/DefinitionModel.js +6 -6
  47. package/lib/Models/Site/PermanentObjectDataModel.js +8 -8
  48. package/lib/Models/Site/PermanentObjectModel.js +7 -7
  49. package/lib/Models/Site/PointModel.js +11 -11
  50. package/lib/Models/Site/TemporaryObjectModel.js +6 -6
  51. package/lib/Models/SiteModel.js +6 -6
  52. package/lib/Models/TokenModel.js +10 -10
  53. package/lib/Models/UserAccountActionTokenModel.js +11 -11
  54. package/lib/Models/UserAccountModel.js +10 -10
  55. package/lib/PackageVersion.js +1 -1
  56. package/lib/Points.js +22 -12
  57. package/lib/WebSocketHelper.js +29 -13
  58. package/lib/index.d.ts +2473 -348
  59. package/lib/index.js +3 -3
  60. package/package.json +1 -1
  61. package/src/Controllers/Packhouse/Site/BinTipBinController.js +665 -0
  62. package/src/Controllers/Packhouse/Site/CompacSizerController.js +3 -3
  63. package/src/Controllers/Packhouse/Site/FreshQualityPackrunSummaryController.js +700 -0
  64. package/src/Controllers/Packhouse/Site/PackingLineController.js +29 -1
  65. package/src/Controllers/Packhouse/Site/PackrunController.js +52 -0
  66. package/src/Controllers/Packhouse/Site/ShiftHourlyEntryController.js +15 -0
  67. package/src/Controllers/Packhouse/Site/ShiftQualitySummaryController.js +704 -0
  68. package/src/Controllers/Packhouse/Site/ShiftTaskController.js +671 -0
  69. package/src/Controllers/Packhouse/Site/index.js +8 -0
  70. package/src/DataItems/PointValueItem.js +3 -3
  71. package/src/Models/AccountPolicyModel.js +7 -7
  72. package/src/Models/ApiAccountModel.js +7 -7
  73. package/src/Models/CompanyModel.js +5 -5
  74. package/src/Models/FirebaseTokenModel.js +8 -8
  75. package/src/Models/Packhouse/Site/BinTipBinModel.js +365 -0
  76. package/src/Models/Packhouse/Site/BinTipWeightModel.js +9 -9
  77. package/src/Models/Packhouse/Site/CompacSizerBatchModel.js +8 -8
  78. package/src/Models/Packhouse/Site/CompacSizerModel.js +15 -15
  79. package/src/Models/Packhouse/Site/CompacSizerOutletProductChangeModel.js +10 -10
  80. package/src/Models/Packhouse/Site/CompacSizerOutletTypeChangeModel.js +8 -8
  81. package/src/Models/Packhouse/Site/CompacSizerOutletTypeModel.js +6 -6
  82. package/src/Models/Packhouse/Site/CompacSizerPackrunSummaryModel.js +12 -12
  83. package/src/Models/Packhouse/Site/DowntimeEventModel.js +14 -14
  84. package/src/Models/Packhouse/Site/FreshPackPackrunSummaryModel.js +8 -8
  85. package/src/Models/Packhouse/Site/FreshQualityPackrunSummaryModel.js +523 -0
  86. package/src/Models/Packhouse/Site/GrowingMethodModel.js +6 -6
  87. package/src/Models/Packhouse/Site/PackTypeModel.js +8 -8
  88. package/src/Models/Packhouse/Site/PackingLineModel.js +770 -16
  89. package/src/Models/Packhouse/Site/PackrunModel.js +90 -15
  90. package/src/Models/Packhouse/Site/RejectBinModel.js +9 -9
  91. package/src/Models/Packhouse/Site/RejectBinScaleModel.js +23 -23
  92. package/src/Models/Packhouse/Site/RejectBinWeightModel.js +10 -10
  93. package/src/Models/Packhouse/Site/ShiftFocusMeetingModel.js +12 -12
  94. package/src/Models/Packhouse/Site/ShiftHourlyEntryModel.js +229 -38
  95. package/src/Models/Packhouse/Site/ShiftModel.js +29 -19
  96. package/src/Models/Packhouse/Site/ShiftQualitySummaryModel.js +664 -0
  97. package/src/Models/Packhouse/Site/ShiftTaskModel.js +369 -0
  98. package/src/Models/Packhouse/Site/SoftSortBeltModel.js +7 -7
  99. package/src/Models/Packhouse/Site/VarietyModel.js +8 -8
  100. package/src/Models/Packhouse/Site/index.js +8 -0
  101. package/src/Models/RTUModel.js +6 -6
  102. package/src/Models/RTUPluginModel.js +5 -5
  103. package/src/Models/Site/AlarmGroupModel.js +7 -7
  104. package/src/Models/Site/AlarmModel.js +17 -17
  105. package/src/Models/Site/DefinitionModel.js +6 -6
  106. package/src/Models/Site/PermanentObjectDataModel.js +8 -8
  107. package/src/Models/Site/PermanentObjectModel.js +7 -7
  108. package/src/Models/Site/PointModel.js +11 -11
  109. package/src/Models/Site/TemporaryObjectModel.js +6 -6
  110. package/src/Models/SiteModel.js +6 -6
  111. package/src/Models/TokenModel.js +10 -10
  112. package/src/Models/UserAccountActionTokenModel.js +11 -11
  113. package/src/Models/UserAccountModel.js +10 -10
  114. package/src/PackageVersion.js +1 -1
  115. package/src/Points.js +24 -12
  116. package/src/WebSocketHelper.js +34 -13
  117. package/src/index.js +3 -3
  118. package/types/tslint.json +2 -1
@@ -162,10 +162,13 @@ export default PackingLineController;
162
162
  * @property {Object[]} [sizers] The Sizer Objects that belong to this Packing Line
163
163
  * @property {Object[]} [binTips] The Bin Tip Objects that belong to this this Packing Line
164
164
  * @property {Object[]} [rejectBinScales] The Reject Bin Scale Objects that belong to this Packing Line
165
+ * @property {?Object} [secondaryPackingLine] An Optional Secondary Packing Line Reference
165
166
  * @property {?Object} [automation] The Automation Object for this Packing Line
166
167
  * @property {string[]} [alarmGroups] The Alarm Groups that are used by this Packing Line
167
168
  * @property {Object[]} [classTypes] The Class Types that are defined for this Packing Line
168
169
  * @property {?PackingLineController.ShiftManagement} [shiftManagement] The Optional Shift Management Object for this Packing Line
170
+ * @property {?Object} [advancedPackrunManagement] The Advanced Packrun Management Configuration for this Packing Line
171
+ * @property {?Object} [mafIntegration] The MAF Integration Configuration for this Packing Line
169
172
  * @property {?Object} [freshPackIntegration] The FreshPack Integration Configuration for this Packing Line
170
173
  * @property {?Object} [freshQualityIntegration] The FreshQuality Integration Configuration for this Packing Line
171
174
  * @memberof Controllers.Packhouse.Site
@@ -180,20 +183,45 @@ export default PackingLineController;
180
183
  * @property {Object[]} [sizers] The Sizer Objects that belong to this Packing Line
181
184
  * @property {Object[]} [binTips] The Bin Tip Objects that belong to this this Packing Line
182
185
  * @property {Object[]} [rejectBinScales] The Reject Bin Scale Objects that belong to this Packing Line
186
+ * @property {?Object} [secondaryPackingLine] An Optional Secondary Packing Line Reference
183
187
  * @property {?Object} [automation] The Automation Object for this Packing Line
184
188
  * @property {string[]} [alarmGroups] The Alarm Groups that are used by this Packing Line
185
189
  * @property {Object[]} [classTypes] The Class Types that are defined for this Packing Line
186
190
  * @property {?PackingLineController.ShiftManagement} [shiftManagement] The Optional Shift Management Object for this Packing Line
191
+ * @property {?Object} [advancedPackrunManagement] The Advanced Packrun Management Configuration for this Packing Line
192
+ * @property {?Object} [mafIntegration] The MAF Integration Configuration for this Packing Line
187
193
  * @property {?Object} [freshPackIntegration] The FreshPack Integration Configuration for this Packing Line
188
194
  * @property {?Object} [freshQualityIntegration] The FreshQuality Integration Configuration for this Packing Line
189
195
  * @memberof Controllers.Packhouse.Site
190
196
  */
191
197
 
198
+ /**
199
+ * A **ShiftTaskTagDefinition** Type
200
+ *
201
+ * @typedef {Object} PackingLineController.ShiftTaskTagDefinition
202
+ * @property {string} id The Unique Tag ID
203
+ * @property {string} name The Tag Display Name
204
+ * @property {string} color The Tag Display Color
205
+ * @property {boolean} deleted Whether the Tag has been Deleted
206
+ * @memberof Controllers.Packhouse.Site
207
+ */
208
+
209
+ /**
210
+ * A **ShiftTaskDefinition** Type
211
+ *
212
+ * @typedef {Object} PackingLineController.ShiftTaskDefinition
213
+ * @property {string} type The Task Type
214
+ * @property {Array<PackingLineController.ShiftTaskTagDefinition>} tags An Array of Tags defined for the Task Type
215
+ * @memberof Controllers.Packhouse.Site
216
+ */
217
+
192
218
  /**
193
219
  * A **ShiftManagement** Type
194
220
  *
195
221
  * @typedef {Object} PackingLineController.ShiftManagement
196
- * @property {{currentShiftId: number, createNewDayShiftRequest: number, createNewNightShiftRequest: number, startCurrentShiftRequest: number, finishCurrentShiftRequest: number, currentFocusMeetingId: number, startFocusMeetingRequest: number, finishFocusMeetingRequest: number, shiftSchedules: number}} points The Points used for Shift Management
222
+ * @property {{currentShiftId: number, createNewDayShiftRequest: number, createNewNightShiftRequest: number, startCurrentShiftRequest: number, finishCurrentShiftRequest: number, currentFocusMeetingId: number, startFocusMeetingRequest: number, finishFocusMeetingRequest: number, currentShiftStatus: number, currentShiftModifyHourlyEntryRequest: number, shiftSchedules: number, currentShiftClass1TraysPerHourTarget: number, currentShiftClass1TraysPerHourAdjustedTarget: number, currentShiftClass1TraysPerHour: number, currentShiftCostPerTrayTarget: number, currentShiftCostPerTrayAdjustedTarget: number, currentShiftCostPerTray: number, currentShiftManningTarget: number, currentShiftClass1Manning: number, currentShiftClass2Manning: number, currentShiftQualityR600IdealTarget: number, currentShiftQualityR600Ideal: number, currentShiftScorePercentage: number, class1TraysPerHourTargets: number, costPerTrayTargets: number, manningTargets: number, qualityR600IdealTargets: number, costPerManningUnitHour: number, class1TraysPerHourScoreWeighting: number, costPerTrayScoreWeighting: number, qualityR600IdealScoreWeighting: number}} points The Points used for Shift Management
223
+ * @property {Array<{id: string, name: string, type: string, points: {currentShiftCustomQualityTarget: number, currentShiftCustomQualityValue: number, customQualityTargets: number, customQualityScoreWeighting: number}}>} customQualityConfiguration An Optional Array of Configuration Data for Custom Qualities in Shift Management
197
224
  * @property {boolean} enabled Whether Shift Management is Enabled on this Packing Line
225
+ * @property {Array<PackingLineController.ShiftTaskDefinition>} taskDefinitions An Array of Shift Task Types for this Packing Line
198
226
  * @memberof Controllers.Packhouse.Site
199
227
  */
@@ -1915,6 +1915,48 @@ class PackrunController
1915
1915
  {
1916
1916
  resultObject.totalSoftSortEventsDuration = 0;
1917
1917
  }
1918
+
1919
+ if(typeof result === 'object' && 'softSortEventsIsAccurate' in result)
1920
+ {
1921
+ resultObject.softSortEventsIsAccurate = (function(){
1922
+ if(result.softSortEventsIsAccurate === null)
1923
+ {
1924
+ return null;
1925
+ }
1926
+
1927
+ if(typeof result.softSortEventsIsAccurate !== 'boolean')
1928
+ {
1929
+ return Boolean(result.softSortEventsIsAccurate);
1930
+ }
1931
+
1932
+ return result.softSortEventsIsAccurate;
1933
+ }());
1934
+ }
1935
+ else
1936
+ {
1937
+ resultObject.softSortEventsIsAccurate = null;
1938
+ }
1939
+
1940
+ if(typeof result === 'object' && 'softSortEventsNotAccurateReason' in result)
1941
+ {
1942
+ resultObject.softSortEventsNotAccurateReason = (function(){
1943
+ if(result.softSortEventsNotAccurateReason === null)
1944
+ {
1945
+ return null;
1946
+ }
1947
+
1948
+ if(typeof result.softSortEventsNotAccurateReason !== 'string')
1949
+ {
1950
+ return String(result.softSortEventsNotAccurateReason);
1951
+ }
1952
+
1953
+ return result.softSortEventsNotAccurateReason;
1954
+ }());
1955
+ }
1956
+ else
1957
+ {
1958
+ resultObject.softSortEventsNotAccurateReason = null;
1959
+ }
1918
1960
 
1919
1961
  return resultObject;
1920
1962
  }());
@@ -1996,6 +2038,8 @@ export default PackrunController;
1996
2038
  * @property {string} [maturityArea] The Maturity Area for this Packrun
1997
2039
  * @property {string} [varietyId] The Variety for this Packrun
1998
2040
  * @property {?string} [growingMethodId] The Growing Method for this Packrun
2041
+ * @property {?number} [freshPackGraderId] The FreshPack Grader ID associated with this Packrun
2042
+ * @property {?string} [freshPackBinLotCode] The FreshPack Bin Lot Code associated with this Packrun
1999
2043
  * @property {Date} [createdTimestampBegin] Filter by the Timestamp when this Packrun was Created. Results Greater than or Equal to Timestamp
2000
2044
  * @property {Date} [createdTimestampEnd] Filter by the Timestamp when this Packrun was Created. Results Less than or Equal to Timestamp
2001
2045
  * @property {Date} [startTimestampBegin] Filter by the Timestamp when this Packrun was Started. Results Greater than or Equal to Timestamp
@@ -2021,6 +2065,9 @@ export default PackrunController;
2021
2065
  * @property {?string} [growingMethodId] The Growing Method for this Packrun
2022
2066
  * @property {number} [allocatedBins] The Number of Allocated Bins for this Packrun
2023
2067
  * @property {Object[]} [timeBatches] The Time Batches for this Packrun
2068
+ * @property {?number} [freshPackGraderId] The FreshPack Grader ID associated with this Packrun
2069
+ * @property {?string} [freshPackBinLotCode] The FreshPack Bin Lot Code associated with this Packrun
2070
+ * @property {?string} [freshPackProduceCode] The FreshPack Produce Code associated with this Packrun
2024
2071
  * @memberof Controllers.Packhouse.Site
2025
2072
  */
2026
2073
 
@@ -2039,6 +2086,9 @@ export default PackrunController;
2039
2086
  * @property {?string} [growingMethodId] The Growing Method for this Packrun
2040
2087
  * @property {number} [allocatedBins] The Number of Allocated Bins for this Packrun
2041
2088
  * @property {Object[]} [timeBatches] The Time Batches for this Packrun
2089
+ * @property {?number} [freshPackGraderId] The FreshPack Grader ID associated with this Packrun
2090
+ * @property {?string} [freshPackBinLotCode] The FreshPack Bin Lot Code associated with this Packrun
2091
+ * @property {?string} [freshPackProduceCode] The FreshPack Produce Code associated with this Packrun
2042
2092
  * @memberof Controllers.Packhouse.Site
2043
2093
  */
2044
2094
 
@@ -2180,5 +2230,7 @@ export default PackrunController;
2180
2230
  * @property {number} totalSoftSortEventsCount The Number of Soft-Sort Events that occurred for the Packrun
2181
2231
  * @property {number} averageSoftSortEventsDuration The Average Duration of Soft-Sort Events for the Packrun expressed in Seconds
2182
2232
  * @property {number} totalSoftSortEventsDuration The Total Duration of all Soft-Sort Events for the Packrun expressed in Seconds
2233
+ * @property {?boolean} softSortEventsIsAccurate Whether the Soft-Sort Events Data is considered accurate or not
2234
+ * @property {?string} softSortEventsNotAccurateReason A Reason for why the Soft-Sort Events Data is not accurate. Applies when `softSortEventsIsAccurate` is false
2183
2235
  * @memberof Controllers.Packhouse.Site
2184
2236
  */
@@ -641,9 +641,11 @@ export default ShiftHourlyEntryController;
641
641
  * @property {?number} [class1Manning] The Number of People working in all Areas except Class 2 for this Hour
642
642
  * @property {?number} [class2Manning] The Number of People working in the Class 2 Area for this Hour
643
643
  * @property {?number} [averageManningTarget] The Average Target Number of People that should be working for this Hour
644
+ * @property {?number} [averageCostPerManningUnit] The Average Cost per Person working in all Areas for this Hour
644
645
  * @property {?number} [layeredTrayPercentage] The Percentage of Total Tray Equivalents that are Layered for this Hour
645
646
  * @property {?number} [averageClass1Percentage] The Average Class 1 Percentage for this Hour
646
647
  * @property {?number} [qualityR600IdealSamplesPercentage] The Number of Quality R600 Samples that were Ideal for this Hour
648
+ * @property {?number} [averageQualityR600IdealSamplesTarget] The Average Target Number of Quality R600 Samples that should be Ideal for this Hour
647
649
  * @property {Array<ShiftHourlyEntryController.CustomQualityDataItem>} [customQualityData] An Array of Custom Quality Data Items for this Hour
648
650
  * @property {number} [totalBinsTipped] The Total Number of Bins Tipped for this Hour
649
651
  * @property {number} [binsTippedTarget] The Target Number of Bins to Tip for this Hour
@@ -652,10 +654,15 @@ export default ShiftHourlyEntryController;
652
654
  * @property {number} [totalClass1Trays] The Total Number of Class 1 Tray Equivalents Packed for this Hour
653
655
  * @property {number} [totalClass2Trays] The Total Number of Class 2 Tray Equivalents Packed for this Hour
654
656
  * @property {number} [class1TraysPerHourExcludingDowntimeTarget] The Target Number of Class 1 Tray Equivalents that should be Packed excluding all Downtime for this Hour
657
+ * @property {?number} [averageClass1TraysPerHourAdjustedTarget] The Target Number of Class 1 Tray Equivalents that should be Packed after Adjustment (Manning %, Class 1 %, Soft-Sort %) for this Hour
658
+ * @property {?number} [averageCostPerTray] The Average Cost per Tray Equivalent for this Hour
659
+ * @property {?number} [averageCostPerTrayTarget] The Average Cost per Tray Equivalent Target for this Hour
655
660
  * @property {?string} [primaryIssueCategory] The Primary Issue Category for this Hourly Entry
656
661
  * @property {?string} [primaryIssueTag] The Primary Issue Tag for this Hourly Entry
662
+ * @property {?number} [primaryIssuePercentage] A Percentage between 0% and 100% indicating how much the Primary Issue impacted Throughput for this Hourly Entry
657
663
  * @property {?string} [secondaryIssueCategory] The Secondary Issue Category for this Hourly Entry
658
664
  * @property {?string} [secondaryIssueTag] The Secondary Issue Tag for this Hourly Entry
665
+ * @property {?number} [secondaryIssuePercentage] A Percentage between 0% and 100% indicating how much the Secondary Issue impacted Throughput for this Hourly Entry
659
666
  * @property {?string} [nextHourFocus] An Optional Focus for the Next Hour
660
667
  * @property {?number} [satisfactionRating] An Optional Rating between 1 and 10 on how Satisfied the Line Manager was with this Hour
661
668
  * @property {string} [status] The Status of this Hourly Entry
@@ -673,9 +680,11 @@ export default ShiftHourlyEntryController;
673
680
  * @property {?number} [class1Manning] The Number of People working in all Areas except Class 2 for this Hour
674
681
  * @property {?number} [class2Manning] The Number of People working in the Class 2 Area for this Hour
675
682
  * @property {?number} [averageManningTarget] The Average Target Number of People that should be working for this Hour
683
+ * @property {?number} [averageCostPerManningUnit] The Average Cost per Person working in all Areas for this Hour
676
684
  * @property {?number} [layeredTrayPercentage] The Percentage of Total Tray Equivalents that are Layered for this Hour
677
685
  * @property {?number} [averageClass1Percentage] The Average Class 1 Percentage for this Hour
678
686
  * @property {?number} [qualityR600IdealSamplesPercentage] The Number of Quality R600 Samples that were Ideal for this Hour
687
+ * @property {?number} [averageQualityR600IdealSamplesTarget] The Average Target Number of Quality R600 Samples that should be Ideal for this Hour
679
688
  * @property {Array<ShiftHourlyEntryController.CustomQualityDataItem>} [customQualityData] An Array of Custom Quality Data Items for this Hour
680
689
  * @property {number} [totalBinsTipped] The Total Number of Bins Tipped for this Hour
681
690
  * @property {number} [binsTippedTarget] The Target Number of Bins to Tip for this Hour
@@ -684,10 +693,15 @@ export default ShiftHourlyEntryController;
684
693
  * @property {number} [totalClass1Trays] The Total Number of Class 1 Tray Equivalents Packed for this Hour
685
694
  * @property {number} [totalClass2Trays] The Total Number of Class 2 Tray Equivalents Packed for this Hour
686
695
  * @property {number} [class1TraysPerHourExcludingDowntimeTarget] The Target Number of Class 1 Tray Equivalents that should be Packed excluding all Downtime for this Hour
696
+ * @property {?number} [averageClass1TraysPerHourAdjustedTarget] The Target Number of Class 1 Tray Equivalents that should be Packed after Adjustment (Manning %, Class 1 %, Soft-Sort %) for this Hour
697
+ * @property {?number} [averageCostPerTray] The Average Cost per Tray Equivalent for this Hour
698
+ * @property {?number} [averageCostPerTrayTarget] The Average Cost per Tray Equivalent Target for this Hour
687
699
  * @property {?string} [primaryIssueCategory] The Primary Issue Category for this Hourly Entry
688
700
  * @property {?string} [primaryIssueTag] The Primary Issue Tag for this Hourly Entry
701
+ * @property {?number} [primaryIssuePercentage] A Percentage between 0% and 100% indicating how much the Primary Issue impacted Throughput for this Hourly Entry
689
702
  * @property {?string} [secondaryIssueCategory] The Secondary Issue Category for this Hourly Entry
690
703
  * @property {?string} [secondaryIssueTag] The Secondary Issue Tag for this Hourly Entry
704
+ * @property {?number} [secondaryIssuePercentage] A Percentage between 0% and 100% indicating how much the Secondary Issue impacted Throughput for this Hourly Entry
691
705
  * @property {?string} [nextHourFocus] An Optional Focus for the Next Hour
692
706
  * @property {?number} [satisfactionRating] An Optional Rating between 1 and 10 on how Satisfied the Line Manager was with this Hour
693
707
  * @property {string} [status] The Status of this Hourly Entry
@@ -713,5 +727,6 @@ export default ShiftHourlyEntryController;
713
727
  * @property {string} name The Name of this Custom Quality Data Item
714
728
  * @property {string} type The Display Type for this Custom Quality Data Item
715
729
  * @property {number} value The Number Value for this Custom Quality Data Item
730
+ * @property {number} averageTarget The Average Target for this Custom Quality Data Item
716
731
  * @memberof Controllers.Packhouse.Site
717
732
  */