@ricado/api-client 2.1.0 → 2.3.0
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.
- package/README.md +5 -7
- package/dist/ricado.api.client.js +1 -1
- package/lib/Controllers/Packhouse/Site/BinTipBinController.js +622 -0
- package/lib/Controllers/Packhouse/Site/CompacSizerController.js +3 -3
- package/lib/Controllers/Packhouse/Site/FreshQualityPackrunSummaryController.js +657 -0
- package/lib/Controllers/Packhouse/Site/PackingLineController.js +25 -1
- package/lib/Controllers/Packhouse/Site/PackrunController.js +42 -0
- package/lib/Controllers/Packhouse/Site/RejectBinScaleController.js +24 -2
- package/lib/Controllers/Packhouse/Site/ShiftHourlyEntryController.js +15 -0
- package/lib/Controllers/Packhouse/Site/ShiftQualitySummaryController.js +661 -0
- package/lib/Controllers/Packhouse/Site/ShiftTaskController.js +628 -0
- package/lib/Controllers/Packhouse/Site/SoftSortBeltController.js +453 -0
- package/lib/Controllers/Packhouse/Site/index.js +15 -0
- package/lib/DataItems/PointValueItem.js +3 -3
- package/lib/Models/AccountPolicyModel.js +7 -7
- package/lib/Models/ApiAccountModel.js +7 -7
- package/lib/Models/CompanyModel.js +5 -5
- package/lib/Models/FirebaseTokenModel.js +8 -8
- package/lib/Models/Packhouse/Site/BinTipBinModel.js +367 -0
- package/lib/Models/Packhouse/Site/BinTipWeightModel.js +9 -9
- package/lib/Models/Packhouse/Site/CompacSizerBatchModel.js +8 -8
- package/lib/Models/Packhouse/Site/CompacSizerModel.js +15 -15
- package/lib/Models/Packhouse/Site/CompacSizerOutletProductChangeModel.js +10 -10
- package/lib/Models/Packhouse/Site/CompacSizerOutletTypeChangeModel.js +8 -8
- package/lib/Models/Packhouse/Site/CompacSizerOutletTypeModel.js +6 -6
- package/lib/Models/Packhouse/Site/CompacSizerPackrunSummaryModel.js +12 -12
- package/lib/Models/Packhouse/Site/DowntimeEventModel.js +14 -14
- package/lib/Models/Packhouse/Site/FreshPackPackrunSummaryModel.js +8 -8
- package/lib/Models/Packhouse/Site/FreshQualityPackrunSummaryModel.js +481 -0
- package/lib/Models/Packhouse/Site/GrowingMethodModel.js +6 -6
- package/lib/Models/Packhouse/Site/PackTypeModel.js +8 -8
- package/lib/Models/Packhouse/Site/PackingLineModel.js +539 -16
- package/lib/Models/Packhouse/Site/PackrunModel.js +81 -15
- package/lib/Models/Packhouse/Site/RejectBinModel.js +9 -9
- package/lib/Models/Packhouse/Site/RejectBinScaleModel.js +271 -15
- package/lib/Models/Packhouse/Site/RejectBinWeightModel.js +10 -10
- package/lib/Models/Packhouse/Site/ShiftFocusMeetingModel.js +12 -12
- package/lib/Models/Packhouse/Site/ShiftHourlyEntryModel.js +204 -38
- package/lib/Models/Packhouse/Site/ShiftModel.js +26 -19
- package/lib/Models/Packhouse/Site/ShiftQualitySummaryModel.js +599 -0
- package/lib/Models/Packhouse/Site/ShiftTaskModel.js +373 -0
- package/lib/Models/Packhouse/Site/SoftSortBeltModel.js +235 -0
- package/lib/Models/Packhouse/Site/VarietyModel.js +8 -8
- package/lib/Models/Packhouse/Site/index.js +15 -0
- package/lib/Models/RTUModel.js +6 -6
- package/lib/Models/RTUPluginModel.js +5 -5
- package/lib/Models/Site/AlarmGroupModel.js +7 -7
- package/lib/Models/Site/AlarmModel.js +17 -17
- package/lib/Models/Site/DefinitionModel.js +6 -6
- package/lib/Models/Site/PermanentObjectDataModel.js +8 -8
- package/lib/Models/Site/PermanentObjectModel.js +7 -7
- package/lib/Models/Site/PointModel.js +11 -11
- package/lib/Models/Site/TemporaryObjectModel.js +6 -6
- package/lib/Models/SiteModel.js +6 -6
- package/lib/Models/TokenModel.js +10 -10
- package/lib/Models/UserAccountActionTokenModel.js +11 -11
- package/lib/Models/UserAccountModel.js +10 -10
- package/lib/PackageVersion.js +1 -1
- package/lib/Points.js +22 -12
- package/lib/WebSocketHelper.js +29 -13
- package/lib/index.d.ts +3853 -1290
- package/lib/index.js +3 -3
- package/package.json +1 -1
- package/src/Controllers/Packhouse/Site/BinTipBinController.js +665 -0
- package/src/Controllers/Packhouse/Site/CompacSizerController.js +3 -3
- package/src/Controllers/Packhouse/Site/FreshQualityPackrunSummaryController.js +700 -0
- package/src/Controllers/Packhouse/Site/PackingLineController.js +25 -1
- package/src/Controllers/Packhouse/Site/PackrunController.js +52 -0
- package/src/Controllers/Packhouse/Site/RejectBinScaleController.js +24 -2
- package/src/Controllers/Packhouse/Site/ShiftHourlyEntryController.js +15 -0
- package/src/Controllers/Packhouse/Site/ShiftQualitySummaryController.js +704 -0
- package/src/Controllers/Packhouse/Site/ShiftTaskController.js +671 -0
- package/src/Controllers/Packhouse/Site/SoftSortBeltController.js +474 -0
- package/src/Controllers/Packhouse/Site/index.js +10 -0
- package/src/DataItems/PointValueItem.js +3 -3
- package/src/Models/AccountPolicyModel.js +7 -7
- package/src/Models/ApiAccountModel.js +7 -7
- package/src/Models/CompanyModel.js +5 -5
- package/src/Models/FirebaseTokenModel.js +8 -8
- package/src/Models/Packhouse/Site/BinTipBinModel.js +365 -0
- package/src/Models/Packhouse/Site/BinTipWeightModel.js +9 -9
- package/src/Models/Packhouse/Site/CompacSizerBatchModel.js +8 -8
- package/src/Models/Packhouse/Site/CompacSizerModel.js +15 -15
- package/src/Models/Packhouse/Site/CompacSizerOutletProductChangeModel.js +10 -10
- package/src/Models/Packhouse/Site/CompacSizerOutletTypeChangeModel.js +8 -8
- package/src/Models/Packhouse/Site/CompacSizerOutletTypeModel.js +6 -6
- package/src/Models/Packhouse/Site/CompacSizerPackrunSummaryModel.js +12 -12
- package/src/Models/Packhouse/Site/DowntimeEventModel.js +14 -14
- package/src/Models/Packhouse/Site/FreshPackPackrunSummaryModel.js +8 -8
- package/src/Models/Packhouse/Site/FreshQualityPackrunSummaryModel.js +523 -0
- package/src/Models/Packhouse/Site/GrowingMethodModel.js +6 -6
- package/src/Models/Packhouse/Site/PackTypeModel.js +8 -8
- package/src/Models/Packhouse/Site/PackingLineModel.js +720 -16
- package/src/Models/Packhouse/Site/PackrunModel.js +90 -15
- package/src/Models/Packhouse/Site/RejectBinModel.js +9 -9
- package/src/Models/Packhouse/Site/RejectBinScaleModel.js +308 -15
- package/src/Models/Packhouse/Site/RejectBinWeightModel.js +10 -10
- package/src/Models/Packhouse/Site/ShiftFocusMeetingModel.js +12 -12
- package/src/Models/Packhouse/Site/ShiftHourlyEntryModel.js +229 -38
- package/src/Models/Packhouse/Site/ShiftModel.js +29 -19
- package/src/Models/Packhouse/Site/ShiftQualitySummaryModel.js +664 -0
- package/src/Models/Packhouse/Site/ShiftTaskModel.js +369 -0
- package/src/Models/Packhouse/Site/SoftSortBeltModel.js +215 -0
- package/src/Models/Packhouse/Site/VarietyModel.js +8 -8
- package/src/Models/Packhouse/Site/index.js +10 -0
- package/src/Models/RTUModel.js +6 -6
- package/src/Models/RTUPluginModel.js +5 -5
- package/src/Models/Site/AlarmGroupModel.js +7 -7
- package/src/Models/Site/AlarmModel.js +17 -17
- package/src/Models/Site/DefinitionModel.js +6 -6
- package/src/Models/Site/PermanentObjectDataModel.js +8 -8
- package/src/Models/Site/PermanentObjectModel.js +7 -7
- package/src/Models/Site/PointModel.js +11 -11
- package/src/Models/Site/TemporaryObjectModel.js +6 -6
- package/src/Models/SiteModel.js +6 -6
- package/src/Models/TokenModel.js +10 -10
- package/src/Models/UserAccountActionTokenModel.js +11 -11
- package/src/Models/UserAccountModel.js +10 -10
- package/src/PackageVersion.js +1 -1
- package/src/Points.js +24 -12
- package/src/WebSocketHelper.js +34 -13
- package/src/index.js +3 -3
- package/types/tslint.json +2 -1
|
@@ -162,6 +162,7 @@ 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
|
|
@@ -180,6 +181,7 @@ export default PackingLineController;
|
|
|
180
181
|
* @property {Object[]} [sizers] The Sizer Objects that belong to this Packing Line
|
|
181
182
|
* @property {Object[]} [binTips] The Bin Tip Objects that belong to this this Packing Line
|
|
182
183
|
* @property {Object[]} [rejectBinScales] The Reject Bin Scale Objects that belong to this Packing Line
|
|
184
|
+
* @property {?Object} [secondaryPackingLine] An Optional Secondary Packing Line Reference
|
|
183
185
|
* @property {?Object} [automation] The Automation Object for this Packing Line
|
|
184
186
|
* @property {string[]} [alarmGroups] The Alarm Groups that are used by this Packing Line
|
|
185
187
|
* @property {Object[]} [classTypes] The Class Types that are defined for this Packing Line
|
|
@@ -189,11 +191,33 @@ export default PackingLineController;
|
|
|
189
191
|
* @memberof Controllers.Packhouse.Site
|
|
190
192
|
*/
|
|
191
193
|
|
|
194
|
+
/**
|
|
195
|
+
* A **ShiftTaskTagDefinition** Type
|
|
196
|
+
*
|
|
197
|
+
* @typedef {Object} PackingLineController.ShiftTaskTagDefinition
|
|
198
|
+
* @property {string} id The Unique Tag ID
|
|
199
|
+
* @property {string} name The Tag Display Name
|
|
200
|
+
* @property {string} color The Tag Display Color
|
|
201
|
+
* @property {boolean} deleted Whether the Tag has been Deleted
|
|
202
|
+
* @memberof Controllers.Packhouse.Site
|
|
203
|
+
*/
|
|
204
|
+
|
|
205
|
+
/**
|
|
206
|
+
* A **ShiftTaskDefinition** Type
|
|
207
|
+
*
|
|
208
|
+
* @typedef {Object} PackingLineController.ShiftTaskDefinition
|
|
209
|
+
* @property {string} type The Task Type
|
|
210
|
+
* @property {Array<PackingLineController.ShiftTaskTagDefinition>} tags An Array of Tags defined for the Task Type
|
|
211
|
+
* @memberof Controllers.Packhouse.Site
|
|
212
|
+
*/
|
|
213
|
+
|
|
192
214
|
/**
|
|
193
215
|
* A **ShiftManagement** Type
|
|
194
216
|
*
|
|
195
217
|
* @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
|
|
218
|
+
* @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
|
|
219
|
+
* @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
220
|
* @property {boolean} enabled Whether Shift Management is Enabled on this Packing Line
|
|
221
|
+
* @property {Array<PackingLineController.ShiftTaskDefinition>} taskDefinitions An Array of Shift Task Types for this Packing Line
|
|
198
222
|
* @memberof Controllers.Packhouse.Site
|
|
199
223
|
*/
|
|
@@ -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
|
*/
|
|
@@ -166,7 +166,18 @@ export default RejectBinScaleController;
|
|
|
166
166
|
* @property {?string} [packrunSourceId] The Permanent Object that provides the Next Packrun for this Reject Bin Scale
|
|
167
167
|
* @property {?number} [packrunGroup] The Packrun Group this Reject Bin Scale is a part of
|
|
168
168
|
* @property {Object[]} [sources] An Array of Sources that deliver Fruit to this Reject Bin Scale
|
|
169
|
-
* @property {?number} [autoPackrunChange] The Auto Packrun Change Configuration for this Reject Bin Scale
|
|
169
|
+
* @property {?{delay: ?number}} [autoPackrunChange] The Auto Packrun Change Configuration for this Reject Bin Scale
|
|
170
|
+
* @property {?boolean} [supportsLiveWeighing] Whether this Reject Bin Scale supports Live Weighing
|
|
171
|
+
* @property {?number} [autoWeighingStartThreshold] The Minimum Weight Change Required to Automatically Start Live Weighing
|
|
172
|
+
* @property {?number} [autoWeighingStartDelay] The Delay in Milliseconds before Auto Live Weighing would Start
|
|
173
|
+
* @property {?number} [autoWeighingFinishThreshold] The Minimum Weight Change Required to Automatically Finish Live Weighing
|
|
174
|
+
* @property {?number} [autoWeighingFinishDelay] The Delay in Milliseconds before Auto Live Weighing would Finish
|
|
175
|
+
* @property {?number} [manualInterventionMaximumDuration] The Maximum Duration in Milliseconds before a Manual Intervention would end
|
|
176
|
+
* @property {?number} [liveWeighingIncreaseTolerance] The Maximum Weight Increase allowed within a single Live Weighing Update Interval
|
|
177
|
+
* @property {?number} [liveWeighingDecreaseTolerance] The Maximum Weight Decrease allowed within a single Live Weighing Update Interval
|
|
178
|
+
* @property {?number} [liveWeighingUpdateInterval] The Interval in Milliseconds between Live Weighing Updates
|
|
179
|
+
* @property {?boolean} [liveWeighingUsesStableStatus] Whether the Loadcell Stable Status is used to ignore Changes during Live Weighing
|
|
180
|
+
* @property {?number} [incorrectOperationTolerance] The Maximum Weight Change allowed while Live Weighing before an Incorrect Operation is Logged
|
|
170
181
|
* @property {?Object} [freshPackIntegration] The FreshPack Integration Configuration for this Reject Bin Scale
|
|
171
182
|
* @memberof Controllers.Packhouse.Site
|
|
172
183
|
*/
|
|
@@ -181,7 +192,18 @@ export default RejectBinScaleController;
|
|
|
181
192
|
* @property {?string} [packrunSourceId] The Permanent Object that provides the Next Packrun for this Reject Bin Scale
|
|
182
193
|
* @property {?number} [packrunGroup] The Packrun Group this Reject Bin Scale is a part of
|
|
183
194
|
* @property {Object[]} [sources] An Array of Sources that deliver Fruit to this Reject Bin Scale
|
|
184
|
-
* @property {?number} [autoPackrunChange] The Auto Packrun Change Configuration for this Reject Bin Scale
|
|
195
|
+
* @property {?{delay: ?number}} [autoPackrunChange] The Auto Packrun Change Configuration for this Reject Bin Scale
|
|
196
|
+
* @property {?boolean} [supportsLiveWeighing] Whether this Reject Bin Scale supports Live Weighing
|
|
197
|
+
* @property {?number} [autoWeighingStartThreshold] The Minimum Weight Change Required to Automatically Start Live Weighing
|
|
198
|
+
* @property {?number} [autoWeighingStartDelay] The Delay in Milliseconds before Auto Live Weighing would Start
|
|
199
|
+
* @property {?number} [autoWeighingFinishThreshold] The Minimum Weight Change Required to Automatically Finish Live Weighing
|
|
200
|
+
* @property {?number} [autoWeighingFinishDelay] The Delay in Milliseconds before Auto Live Weighing would Finish
|
|
201
|
+
* @property {?number} [manualInterventionMaximumDuration] The Maximum Duration in Milliseconds before a Manual Intervention would end
|
|
202
|
+
* @property {?number} [liveWeighingIncreaseTolerance] The Maximum Weight Increase allowed within a single Live Weighing Update Interval
|
|
203
|
+
* @property {?number} [liveWeighingDecreaseTolerance] The Maximum Weight Decrease allowed within a single Live Weighing Update Interval
|
|
204
|
+
* @property {?number} [liveWeighingUpdateInterval] The Interval in Milliseconds between Live Weighing Updates
|
|
205
|
+
* @property {?boolean} [liveWeighingUsesStableStatus] Whether the Loadcell Stable Status is used to ignore Changes during Live Weighing
|
|
206
|
+
* @property {?number} [incorrectOperationTolerance] The Maximum Weight Change allowed while Live Weighing before an Incorrect Operation is Logged
|
|
185
207
|
* @property {?Object} [freshPackIntegration] The FreshPack Integration Configuration for this Reject Bin Scale
|
|
186
208
|
* @memberof Controllers.Packhouse.Site
|
|
187
209
|
*/
|
|
@@ -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
|
*/
|