@ricado/api-client 2.3.17 → 2.3.18
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/dist/ricado.api.client.js +1 -1
- package/lib/Controllers/Packhouse/Site/BinTipBarcodeScannerController.js +198 -0
- package/lib/Controllers/Packhouse/Site/BinTipBinController.js +14 -2
- package/lib/Controllers/Packhouse/Site/CompacSizerBatchController.js +186 -2
- package/lib/Controllers/Packhouse/Site/CompacSizerBinWeightController.js +959 -0
- package/lib/Controllers/Packhouse/Site/CompacSizerController.js +89 -15
- package/lib/Controllers/Packhouse/Site/CompacSizerPackrunSummaryController.js +1 -1
- package/lib/Controllers/Packhouse/Site/FreshPackPackrunSummaryController.js +35 -4
- package/lib/Controllers/Packhouse/Site/MAFSizerController.js +101 -19
- package/lib/Controllers/Packhouse/Site/PackingLineController.js +435 -23
- package/lib/Controllers/Packhouse/Site/PackrunController.js +11 -2
- package/lib/Controllers/Packhouse/Site/RejectBinController.js +38 -2
- package/lib/Controllers/Packhouse/Site/RejectBinScaleController.js +52 -6
- package/lib/Controllers/Packhouse/Site/RejectBinWeightController.js +70 -4
- package/lib/Controllers/Packhouse/Site/ShiftController.js +1 -1
- package/lib/Controllers/Packhouse/Site/ShiftHourlyEntryController.js +15 -0
- package/lib/Controllers/Packhouse/Site/SoftSortBeltController.js +2 -2
- package/lib/Controllers/Packhouse/Site/SoftSortPackrunSummaryController.js +14 -2
- package/lib/Controllers/Packhouse/Site/index.js +6 -0
- package/lib/Models/Packhouse/Site/BinTipBarcodeScannerModel.js +263 -0
- package/lib/Models/Packhouse/Site/BinTipBinModel.js +75 -5
- package/lib/Models/Packhouse/Site/CompacSizerBatchModel.js +1276 -5
- package/lib/Models/Packhouse/Site/CompacSizerBinWeightModel.js +627 -0
- package/lib/Models/Packhouse/Site/CompacSizerModel.js +966 -72
- package/lib/Models/Packhouse/Site/FreshPackPackrunSummaryModel.js +260 -8
- package/lib/Models/Packhouse/Site/MAFSizerModel.js +660 -85
- package/lib/Models/Packhouse/Site/PackingLineModel.js +3860 -551
- package/lib/Models/Packhouse/Site/PackrunModel.js +26 -4
- package/lib/Models/Packhouse/Site/RejectBinModel.js +214 -4
- package/lib/Models/Packhouse/Site/RejectBinScaleModel.js +576 -14
- package/lib/Models/Packhouse/Site/RejectBinWeightModel.js +113 -9
- package/lib/Models/Packhouse/Site/ShiftHourlyEntryModel.js +98 -0
- package/lib/Models/Packhouse/Site/SoftSortBeltModel.js +50 -5
- package/lib/Models/Packhouse/Site/SoftSortPackrunSummaryModel.js +75 -5
- package/lib/Models/Packhouse/Site/index.js +6 -0
- package/lib/PackageVersion.js +1 -1
- package/lib/index.d.ts +6132 -2165
- package/package.json +1 -1
- package/src/Controllers/Packhouse/Site/BinTipBarcodeScannerController.js +175 -0
- package/src/Controllers/Packhouse/Site/BinTipBinController.js +14 -2
- package/src/Controllers/Packhouse/Site/CompacSizerBatchController.js +186 -2
- package/src/Controllers/Packhouse/Site/CompacSizerBinWeightController.js +1090 -0
- package/src/Controllers/Packhouse/Site/CompacSizerController.js +89 -15
- package/src/Controllers/Packhouse/Site/CompacSizerPackrunSummaryController.js +1 -1
- package/src/Controllers/Packhouse/Site/FreshPackPackrunSummaryController.js +35 -4
- package/src/Controllers/Packhouse/Site/MAFSizerController.js +101 -19
- package/src/Controllers/Packhouse/Site/PackingLineController.js +435 -23
- package/src/Controllers/Packhouse/Site/PackrunController.js +11 -2
- package/src/Controllers/Packhouse/Site/RejectBinController.js +38 -2
- package/src/Controllers/Packhouse/Site/RejectBinScaleController.js +52 -6
- package/src/Controllers/Packhouse/Site/RejectBinWeightController.js +70 -4
- package/src/Controllers/Packhouse/Site/ShiftController.js +1 -1
- package/src/Controllers/Packhouse/Site/ShiftHourlyEntryController.js +15 -0
- package/src/Controllers/Packhouse/Site/SoftSortBeltController.js +2 -2
- package/src/Controllers/Packhouse/Site/SoftSortPackrunSummaryController.js +14 -2
- package/src/Controllers/Packhouse/Site/index.js +4 -0
- package/src/Models/Packhouse/Site/BinTipBarcodeScannerModel.js +252 -0
- package/src/Models/Packhouse/Site/BinTipBinModel.js +97 -5
- package/src/Models/Packhouse/Site/CompacSizerBatchModel.js +1682 -5
- package/src/Models/Packhouse/Site/CompacSizerBinWeightModel.js +715 -0
- package/src/Models/Packhouse/Site/CompacSizerModel.js +1319 -109
- package/src/Models/Packhouse/Site/FreshPackPackrunSummaryModel.js +339 -8
- package/src/Models/Packhouse/Site/MAFSizerModel.js +869 -92
- package/src/Models/Packhouse/Site/PackingLineModel.js +5086 -671
- package/src/Models/Packhouse/Site/PackrunModel.js +33 -4
- package/src/Models/Packhouse/Site/RejectBinModel.js +280 -4
- package/src/Models/Packhouse/Site/RejectBinScaleModel.js +775 -15
- package/src/Models/Packhouse/Site/RejectBinWeightModel.js +147 -10
- package/src/Models/Packhouse/Site/ShiftHourlyEntryModel.js +120 -0
- package/src/Models/Packhouse/Site/SoftSortBeltModel.js +65 -5
- package/src/Models/Packhouse/Site/SoftSortPackrunSummaryModel.js +97 -5
- package/src/Models/Packhouse/Site/index.js +4 -0
- package/src/PackageVersion.js +1 -1
|
@@ -158,19 +158,20 @@ export default PackingLineController;
|
|
|
158
158
|
* @typedef {Object} PackingLineController.CreateData
|
|
159
159
|
* @property {?number} [rtuId] The RTU this Packing Line belongs to
|
|
160
160
|
* @property {string} name The Packing Line Name
|
|
161
|
-
* @property {
|
|
162
|
-
* @property {
|
|
163
|
-
* @property {
|
|
164
|
-
* @property {
|
|
165
|
-
* @property {
|
|
166
|
-
* @property {?
|
|
161
|
+
* @property {string} [shortName] A Short Name for the Packing Line Name. Typically used in Reports and Tables showing multiple Packing Lines
|
|
162
|
+
* @property {{currentPackrunId: number, nextPackrunId: number, currentPackrunName: number, nextPackrunName: number, currentPackrunVarietyCode: number, startNextPackrunRequest: number, finishCurrentPackrunRequest: number, availablePackrunList: number, createFromAvailablePackrun: number, currentTimeBatch: number, createNewTimeBatchRequest: number, currentPackrunExportPercentage: number, currentPackrunRejectPercentage: number, currentPackrunFruitSizeSummary: number, currentPackrunTotalExportTrays: number, currentPackrunExportTraysPerBin: number, currentPackrunAverageExportFruitSize: number, currentPackrunTotalClass1LayeredTrays: number, currentPackrunTotalClass1BulkTrays: number, currentPackrunTotalClass2Trays: number, currentPackrunSoftSortEventsPerBin: number, serviceModeActive: number, serviceModeBeginRequest: number, serviceModeFinishRequest: number, serviceModeStartTimestamp: number, serviceModeMaximumDuration: number, disabled: ?number, currentPackrunRecentPackrunSummaries: number, currentPackrunHistoricalPackrunSummaries: number, nextPackrunRecentPackrunSummaries: number, nextPackrunHistoricalPackrunSummaries: number}} points The Points used by this Packing Line
|
|
163
|
+
* @property {Array<PackingLineController.SizerReference>} [sizers] The Sizer Objects that belong to this Packing Line
|
|
164
|
+
* @property {Array<PackingLineController.BinTipReference>} [binTips] The Bin Tip Objects that belong to this this Packing Line
|
|
165
|
+
* @property {Array<PackingLineController.RejectBinScaleReference>} [rejectBinScales] The Reject Bin Scale Objects that belong to this Packing Line
|
|
166
|
+
* @property {?PackingLineController.SecondaryPackingLineReference} [secondaryPackingLine] An Optional Secondary Packing Line Reference
|
|
167
|
+
* @property {?PackingLineController.Automation} [automation] The Automation Object for this Packing Line
|
|
167
168
|
* @property {string[]} [alarmGroups] The Alarm Groups that are used by this Packing Line
|
|
168
|
-
* @property {
|
|
169
|
+
* @property {Array<PackingLineController.ClassType>} [classTypes] The Class Types that are defined for this Packing Line
|
|
169
170
|
* @property {?PackingLineController.ShiftManagement} [shiftManagement] The Optional Shift Management Object for this Packing Line
|
|
170
|
-
* @property {?
|
|
171
|
-
* @property {?
|
|
172
|
-
* @property {?
|
|
173
|
-
* @property {?
|
|
171
|
+
* @property {?PackingLineController.AdvancedPackrunManagement} [advancedPackrunManagement] The Advanced Packrun Management Configuration for this Packing Line
|
|
172
|
+
* @property {?PackingLineController.MafIntegration} [mafIntegration] The MAF Integration Configuration for this Packing Line
|
|
173
|
+
* @property {?PackingLineController.FreshPackIntegration} [freshPackIntegration] The FreshPack Integration Configuration for this Packing Line
|
|
174
|
+
* @property {?PackingLineController.FreshPackIntegration} [freshQualityIntegration] The FreshQuality Integration Configuration for this Packing Line
|
|
174
175
|
* @memberof Controllers.Packhouse.Site
|
|
175
176
|
*/
|
|
176
177
|
|
|
@@ -179,19 +180,293 @@ export default PackingLineController;
|
|
|
179
180
|
*
|
|
180
181
|
* @typedef {Object} PackingLineController.UpdateData
|
|
181
182
|
* @property {string} [name] The Packing Line Name
|
|
182
|
-
* @property {
|
|
183
|
-
* @property {
|
|
184
|
-
* @property {
|
|
185
|
-
* @property {
|
|
186
|
-
* @property {
|
|
187
|
-
* @property {?
|
|
183
|
+
* @property {string} [shortName] A Short Name for the Packing Line Name. Typically used in Reports and Tables showing multiple Packing Lines
|
|
184
|
+
* @property {{currentPackrunId: number, nextPackrunId: number, currentPackrunName: number, nextPackrunName: number, currentPackrunVarietyCode: number, startNextPackrunRequest: number, finishCurrentPackrunRequest: number, availablePackrunList: number, createFromAvailablePackrun: number, currentTimeBatch: number, createNewTimeBatchRequest: number, currentPackrunExportPercentage: number, currentPackrunRejectPercentage: number, currentPackrunFruitSizeSummary: number, currentPackrunTotalExportTrays: number, currentPackrunExportTraysPerBin: number, currentPackrunAverageExportFruitSize: number, currentPackrunTotalClass1LayeredTrays: number, currentPackrunTotalClass1BulkTrays: number, currentPackrunTotalClass2Trays: number, currentPackrunSoftSortEventsPerBin: number, serviceModeActive: number, serviceModeBeginRequest: number, serviceModeFinishRequest: number, serviceModeStartTimestamp: number, serviceModeMaximumDuration: number, disabled: ?number, currentPackrunRecentPackrunSummaries: number, currentPackrunHistoricalPackrunSummaries: number, nextPackrunRecentPackrunSummaries: number, nextPackrunHistoricalPackrunSummaries: number}} [points] The Points used by this Packing Line
|
|
185
|
+
* @property {Array<PackingLineController.SizerReference>} [sizers] The Sizer Objects that belong to this Packing Line
|
|
186
|
+
* @property {Array<PackingLineController.BinTipReference>} [binTips] The Bin Tip Objects that belong to this this Packing Line
|
|
187
|
+
* @property {Array<PackingLineController.RejectBinScaleReference>} [rejectBinScales] The Reject Bin Scale Objects that belong to this Packing Line
|
|
188
|
+
* @property {?PackingLineController.SecondaryPackingLineReference} [secondaryPackingLine] An Optional Secondary Packing Line Reference
|
|
189
|
+
* @property {?PackingLineController.Automation} [automation] The Automation Object for this Packing Line
|
|
188
190
|
* @property {string[]} [alarmGroups] The Alarm Groups that are used by this Packing Line
|
|
189
|
-
* @property {
|
|
191
|
+
* @property {Array<PackingLineController.ClassType>} [classTypes] The Class Types that are defined for this Packing Line
|
|
190
192
|
* @property {?PackingLineController.ShiftManagement} [shiftManagement] The Optional Shift Management Object for this Packing Line
|
|
191
|
-
* @property {?
|
|
192
|
-
* @property {?
|
|
193
|
-
* @property {?
|
|
194
|
-
* @property {?
|
|
193
|
+
* @property {?PackingLineController.AdvancedPackrunManagement} [advancedPackrunManagement] The Advanced Packrun Management Configuration for this Packing Line
|
|
194
|
+
* @property {?PackingLineController.MafIntegration} [mafIntegration] The MAF Integration Configuration for this Packing Line
|
|
195
|
+
* @property {?PackingLineController.FreshPackIntegration} [freshPackIntegration] The FreshPack Integration Configuration for this Packing Line
|
|
196
|
+
* @property {?PackingLineController.FreshPackIntegration} [freshQualityIntegration] The FreshQuality Integration Configuration for this Packing Line
|
|
197
|
+
* @memberof Controllers.Packhouse.Site
|
|
198
|
+
*/
|
|
199
|
+
|
|
200
|
+
/**
|
|
201
|
+
* A **SizerReference** Type
|
|
202
|
+
*
|
|
203
|
+
* @typedef {Object} PackingLineController.SizerReference
|
|
204
|
+
* @property {string} id ID of a Sizer Object
|
|
205
|
+
* @property {number} displayOrder Display Order of the Sizer
|
|
206
|
+
* @property {boolean} [ownedBySecondaryPackingLine] Whether this Sizer is Owned and Managed by a Secondary Packing Line
|
|
207
|
+
* @memberof Controllers.Packhouse.Site
|
|
208
|
+
*/
|
|
209
|
+
|
|
210
|
+
/**
|
|
211
|
+
* A **BinTipReference** Type
|
|
212
|
+
*
|
|
213
|
+
* @typedef {Object} PackingLineController.BinTipReference
|
|
214
|
+
* @property {string} id ID of a Bin Tip Object
|
|
215
|
+
* @property {number} displayOrder Display Order of the Bin Tip
|
|
216
|
+
* @memberof Controllers.Packhouse.Site
|
|
217
|
+
*/
|
|
218
|
+
|
|
219
|
+
/**
|
|
220
|
+
* A **RejectBinScaleReference** Type
|
|
221
|
+
*
|
|
222
|
+
* @typedef {Object} PackingLineController.RejectBinScaleReference
|
|
223
|
+
* @property {string} id ID of a Reject Bin Scale Object
|
|
224
|
+
* @property {number} displayOrder Display Order of the Reject Bin Scale
|
|
225
|
+
* @memberof Controllers.Packhouse.Site
|
|
226
|
+
*/
|
|
227
|
+
|
|
228
|
+
/**
|
|
229
|
+
* A **SecondaryPackingLineReference** Type
|
|
230
|
+
*
|
|
231
|
+
* @typedef {Object} PackingLineController.SecondaryPackingLineReference
|
|
232
|
+
* @property {string} id ID of the Secondary Packing Line
|
|
233
|
+
* @memberof Controllers.Packhouse.Site
|
|
234
|
+
*/
|
|
235
|
+
|
|
236
|
+
/**
|
|
237
|
+
* A **AutoControlGroupBasicControl** Type
|
|
238
|
+
*
|
|
239
|
+
* @typedef {Object} PackingLineController.AutoControlGroupBasicControl
|
|
240
|
+
* @property {{status: number, control: number}} points The Points used for this Basic Control
|
|
241
|
+
* @property {string} name Name of this Basic Control
|
|
242
|
+
* @memberof Controllers.Packhouse.Site
|
|
243
|
+
*/
|
|
244
|
+
|
|
245
|
+
/**
|
|
246
|
+
* A **StartSequence** Type
|
|
247
|
+
*
|
|
248
|
+
* @typedef {Object} PackingLineController.StartSequence
|
|
249
|
+
* @property {number} startDelay The Start Delay for this Start Sequence Step specified in Milliseconds
|
|
250
|
+
* @property {number} startOrder The Start Order for this Start Sequence Step
|
|
251
|
+
* @property {string[]} vsds An Array of VSD Objects that are Automated by this Auto Control Group
|
|
252
|
+
* @property {string[]} contactors An Array of Contactor Objects that are Automated by this Auto Control Group
|
|
253
|
+
* @property {Array<PackingLineController.AutoControlGroupBasicControl>} basicControls An Array of Basic Controls that are Automated by this Auto Control Group
|
|
254
|
+
* @memberof Controllers.Packhouse.Site
|
|
255
|
+
*/
|
|
256
|
+
|
|
257
|
+
/**
|
|
258
|
+
* A **AutoControlGroup** Type
|
|
259
|
+
*
|
|
260
|
+
* @typedef {Object} PackingLineController.AutoControlGroup
|
|
261
|
+
* @property {string} id A Unique ID for this Auto Control Group
|
|
262
|
+
* @property {string} name Name for this Auto Control Group
|
|
263
|
+
* @property {{runControl: number, startRequest: number, stopRequest: number, status: number, disabled: number}} points The Points used for this Auto Control Group
|
|
264
|
+
* @property {?number} [startDelay] An Optional Start Delay for this Auto Control Group specified in Milliseconds
|
|
265
|
+
* @property {boolean} [userStartWithoutDependencies] Whether the User can Start this Auto Control Group individually without relying on Downstream and Neighbour Dependencies
|
|
266
|
+
* @property {Array<PackingLineController.StartSequence>} startSequences An Array of Start Sequence Steps for this Auto Control Group
|
|
267
|
+
* @property {string[]} downstreamDependencyGroups An Array of other Auto Control Groups that are directly Downstream of this Auto Control Group
|
|
268
|
+
* @property {string[]} neighbourDependencyGroups An Array of other Auto Control Groups that are direct Neighbours of this Auto Control Group
|
|
269
|
+
* @property {string[]} shutdownAlarms An Array of Alarms that will Shutdown this Auto Control Group
|
|
270
|
+
* @memberof Controllers.Packhouse.Site
|
|
271
|
+
*/
|
|
272
|
+
|
|
273
|
+
/**
|
|
274
|
+
* A **AutoSpeedGroup** Type
|
|
275
|
+
*
|
|
276
|
+
* @typedef {Object} PackingLineController.AutoSpeedGroup
|
|
277
|
+
* @property {string} id A Unique ID for this Auto Speed Group
|
|
278
|
+
* @property {string} name Name for this Auto Speed Group
|
|
279
|
+
* @property {string[]} vsds An Array of VSD Objects that have their Speed Automated by this Auto Speed Group
|
|
280
|
+
* @property {{autoSetpoint: number, overrideSetpoint: number, overrideMode: number}} points The Points used for this Auto Speed Group
|
|
281
|
+
* @property {string} sectionId ID of the Auto Speed Section this Auto Speed Group should be displayed under
|
|
282
|
+
* @property {number} displayOrder Display Order of this Auto Speed Group
|
|
283
|
+
* @property {boolean} [supportsAutoMode] Whether this Auto Speed Group can be Managed by an Auto Target when Override Mode is not Active
|
|
284
|
+
* @memberof Controllers.Packhouse.Site
|
|
285
|
+
*/
|
|
286
|
+
|
|
287
|
+
/**
|
|
288
|
+
* A **AutoTarget** Type
|
|
289
|
+
*
|
|
290
|
+
* @typedef {Object} PackingLineController.AutoTarget
|
|
291
|
+
* @property {string} id A Unique ID for this Auto Target
|
|
292
|
+
* @property {string} name Name for this Auto Target
|
|
293
|
+
* @property {string} description Description for this Auto Target
|
|
294
|
+
* @property {string} type The Type of Auto Target
|
|
295
|
+
* @property {?string} units Optional Units for this Auto Target
|
|
296
|
+
* @property {number} minValue The Minimum Value for this Auto Target
|
|
297
|
+
* @property {number} maxValue The Maximum Value for this Auto Target
|
|
298
|
+
* @property {{setpoint: number, actual: number}} points The Points used for this Auto Target
|
|
299
|
+
* @memberof Controllers.Packhouse.Site
|
|
300
|
+
*/
|
|
301
|
+
|
|
302
|
+
/**
|
|
303
|
+
* A **VsdReference** Type
|
|
304
|
+
*
|
|
305
|
+
* @typedef {Object} PackingLineController.VsdReference
|
|
306
|
+
* @property {string} id ID of a VSD Object
|
|
307
|
+
* @property {number} displayOrder Display Order of the VSD
|
|
308
|
+
* @memberof Controllers.Packhouse.Site
|
|
309
|
+
*/
|
|
310
|
+
|
|
311
|
+
/**
|
|
312
|
+
* A **ContactorReference** Type
|
|
313
|
+
*
|
|
314
|
+
* @typedef {Object} PackingLineController.ContactorReference
|
|
315
|
+
* @property {string} id ID of a Contactor Object
|
|
316
|
+
* @property {number} displayOrder Display Order of the Contactor
|
|
317
|
+
* @memberof Controllers.Packhouse.Site
|
|
318
|
+
*/
|
|
319
|
+
|
|
320
|
+
/**
|
|
321
|
+
* A **BasicControl** Type
|
|
322
|
+
*
|
|
323
|
+
* @typedef {Object} PackingLineController.BasicControl
|
|
324
|
+
* @property {{status: number, control: number}} points The Points used for this Basic Control
|
|
325
|
+
* @property {string} name Name of this Basic Control
|
|
326
|
+
* @property {number} displayOrder Display Order of this Basic Control
|
|
327
|
+
* @memberof Controllers.Packhouse.Site
|
|
328
|
+
*/
|
|
329
|
+
|
|
330
|
+
/**
|
|
331
|
+
* A **LightControl** Type
|
|
332
|
+
*
|
|
333
|
+
* @typedef {Object} PackingLineController.LightControl
|
|
334
|
+
* @property {string} name Name of this Light Control
|
|
335
|
+
* @property {{status: number, control: number}} points The Points used for this Light Control
|
|
336
|
+
* @memberof Controllers.Packhouse.Site
|
|
337
|
+
*/
|
|
338
|
+
|
|
339
|
+
/**
|
|
340
|
+
* A **InfeedManagementItem** Type
|
|
341
|
+
*
|
|
342
|
+
* @typedef {Object} PackingLineController.InfeedManagementItem
|
|
343
|
+
* @property {string} id A Unique ID for this Infeed Management Item
|
|
344
|
+
* @property {string} name Name for this Infeed Management Item
|
|
345
|
+
* @property {{infeedFruitPerMinuteTarget: number, infeedFruitPerMinuteActual: number, sizerFruitPerMinuteActual: number, sizerRecycleFruitPerMinute: number, riser1FruitPerMinuteActual: ?number, riser1LightsControlMode: ?number, riser1LightsManualControl: ?number, riser1LightsStatus: ?number, riser2FruitPerMinuteActual: ?number, riser2LightsControlMode: ?number, riser2LightsManualControl: ?number, riser2LightsStatus: ?number}} points The Points used for this Infeed Management Item
|
|
346
|
+
* @property {number} riserCount Number of Risers that are part of this Infeed Management Item
|
|
347
|
+
* @property {number} displayOrder Display Order of this Infeed Management Item
|
|
348
|
+
* @property {?string} [riser1AutoControlGroupId] ID of the Auto Control Group for the first Riser. Only applies if `riserCount` >= 1
|
|
349
|
+
* @property {?string} [riser2AutoControlGroupId] ID of the Auto Control Group for the second Riser. Only applies if `riserCount` >= 2
|
|
350
|
+
* @memberof Controllers.Packhouse.Site
|
|
351
|
+
*/
|
|
352
|
+
|
|
353
|
+
/**
|
|
354
|
+
* A **ButtonControl** Type
|
|
355
|
+
*
|
|
356
|
+
* @typedef {Object} PackingLineController.ButtonControl
|
|
357
|
+
* @property {string} icon The Icon to be displayed within this Button
|
|
358
|
+
* @property {string} name Name of this Button Control
|
|
359
|
+
* @property {string} type Type of this Button Control
|
|
360
|
+
* @property {{control: number, disable: number}} points The Points used for this Button Control
|
|
361
|
+
* @property {number} resetDelay Delay in milliseconds between setting the Control Point to `true` and then `false`
|
|
362
|
+
* @property {number} displayOrder Display Order of this Button Control
|
|
363
|
+
* @memberof Controllers.Packhouse.Site
|
|
364
|
+
*/
|
|
365
|
+
|
|
366
|
+
/**
|
|
367
|
+
* A **AutoSpeedSection** Type
|
|
368
|
+
*
|
|
369
|
+
* @typedef {Object} PackingLineController.AutoSpeedSection
|
|
370
|
+
* @property {string} id A Unique ID for this Auto Speed Section
|
|
371
|
+
* @property {string} name Name for this Auto Speed Section
|
|
372
|
+
* @property {number} displayOrder Display Order of this Auto Speed Section
|
|
373
|
+
* @property {Array<PackingLineController.ButtonControl>} [buttonControls] An Optional Array of Button Controls for this Auto Speed Section
|
|
374
|
+
* @property {?string} [splitGroupId] Optional ID shared between two Auto Speed Sections that should be displayed side-by-side
|
|
375
|
+
* @property {?string} [splitGroupPosition] Optional Position for this Auto Speed Section when displaying two side-by-side
|
|
376
|
+
* @memberof Controllers.Packhouse.Site
|
|
377
|
+
*/
|
|
378
|
+
|
|
379
|
+
/**
|
|
380
|
+
* A **ConfigurationPoint** Type
|
|
381
|
+
*
|
|
382
|
+
* @typedef {Object} PackingLineController.ConfigurationPoint
|
|
383
|
+
* @property {string} name Name of this Configuration Point
|
|
384
|
+
* @property {string} type The Type of Configuration Point
|
|
385
|
+
* @property {number} point ID of the Boolean Point to be Configurable
|
|
386
|
+
* @property {?string} units Optional Units for this Configuration Point
|
|
387
|
+
* @property {number} minValue The Minimum Value for this Configuration Point
|
|
388
|
+
* @property {number} maxValue The Maximum Value for this Configuration Point
|
|
389
|
+
* @memberof Controllers.Packhouse.Site
|
|
390
|
+
*/
|
|
391
|
+
|
|
392
|
+
/**
|
|
393
|
+
* A **ConfigurationGroup** Type
|
|
394
|
+
*
|
|
395
|
+
* @typedef {Object} PackingLineController.ConfigurationGroup
|
|
396
|
+
* @property {string} id A Unique ID for this Configuration Group
|
|
397
|
+
* @property {string} name Name for this Configuration Group
|
|
398
|
+
* @property {string} sectionId ID of the Configuration Section this Configuration Group should be displayed under
|
|
399
|
+
* @property {number} displayOrder Display Order of this Configuration Group
|
|
400
|
+
* @property {PackingLineController.ConfigurationPoint|PackingLineController.ConfigurationPoint[]} configurationPoints An Array of Configuration Points to be displayed in this Configuration Group
|
|
401
|
+
* @memberof Controllers.Packhouse.Site
|
|
402
|
+
*/
|
|
403
|
+
|
|
404
|
+
/**
|
|
405
|
+
* A **ConfigurationSection** Type
|
|
406
|
+
*
|
|
407
|
+
* @typedef {Object} PackingLineController.ConfigurationSection
|
|
408
|
+
* @property {string} id A Unique ID for this Configuration Section
|
|
409
|
+
* @property {string} name Name for this Configuration Section
|
|
410
|
+
* @property {number} displayOrder Display Order of this Configuration Section
|
|
411
|
+
* @memberof Controllers.Packhouse.Site
|
|
412
|
+
*/
|
|
413
|
+
|
|
414
|
+
/**
|
|
415
|
+
* A **MomentaryControlPoint** Type
|
|
416
|
+
*
|
|
417
|
+
* @typedef {Object} PackingLineController.MomentaryControlPoint
|
|
418
|
+
* @property {string} name Name of this Momentary Control Point
|
|
419
|
+
* @property {number} point ID of the Boolean Point to be used for Momentary Control
|
|
420
|
+
* @memberof Controllers.Packhouse.Site
|
|
421
|
+
*/
|
|
422
|
+
|
|
423
|
+
/**
|
|
424
|
+
* A **MomentaryControl** Type
|
|
425
|
+
*
|
|
426
|
+
* @typedef {Object} PackingLineController.MomentaryControl
|
|
427
|
+
* @property {string} name Name of this Momentary Control
|
|
428
|
+
* @property {Array<PackingLineController.MomentaryControlPoint>} points An Array of Points used by this Momentary Control
|
|
429
|
+
* @property {number} displayOrder Display Order of this Momentary Control
|
|
430
|
+
* @memberof Controllers.Packhouse.Site
|
|
431
|
+
*/
|
|
432
|
+
|
|
433
|
+
/**
|
|
434
|
+
* A **MomentaryControlGroup** Type
|
|
435
|
+
*
|
|
436
|
+
* @typedef {Object} PackingLineController.MomentaryControlGroup
|
|
437
|
+
* @property {string} name Name of this Momentary Control Group
|
|
438
|
+
* @property {Array<PackingLineController.MomentaryControl>} momentaryControls An Array of Momentary Controls for this Momentary Control Group
|
|
439
|
+
* @memberof Controllers.Packhouse.Site
|
|
440
|
+
*/
|
|
441
|
+
|
|
442
|
+
/**
|
|
443
|
+
* A **Automation** Type
|
|
444
|
+
*
|
|
445
|
+
* @typedef {Object} PackingLineController.Automation
|
|
446
|
+
* @property {{controlMode: number, autoStartAllRequest: number, stopAllRequest: number, status: number, startWarningSiren: number, safetySystemHealthy: ?number}} points The Points used for Automation
|
|
447
|
+
* @property {Array<PackingLineController.AutoControlGroup>} autoControlGroups An Array of Auto Control Groups
|
|
448
|
+
* @property {Array<PackingLineController.AutoSpeedGroup>} autoSpeedGroups An Array of Auto Speed Groups
|
|
449
|
+
* @property {Array<PackingLineController.AutoTarget>} autoTargets An Array of Auto Targets
|
|
450
|
+
* @property {Array<PackingLineController.VsdReference>} vsds An Array of VSD References that are Automated by this Packing Line
|
|
451
|
+
* @property {Array<PackingLineController.ContactorReference>} contactors An Array of Contactor References that are Automated by this Packing Line
|
|
452
|
+
* @property {Array<PackingLineController.BasicControl>} basicControls An Array of Basic Controls that are Automated by this Packing Line
|
|
453
|
+
* @property {string[]} shutdownAlarms An Array of Alarms that will Shutdown the Automation for this Packing Line
|
|
454
|
+
* @property {Array<PackingLineController.LightControl>} lightControls An Optional Array of Light Controls for this Packing Line
|
|
455
|
+
* @property {Array<PackingLineController.InfeedManagementItem>} infeedManagement An Optional Array of Infeed Management Definitions for this Packing Line
|
|
456
|
+
* @property {Array<PackingLineController.AutoSpeedSection>} autoSpeedSections An Array of Sections that organize Auto Speed Groups for this Packing Line
|
|
457
|
+
* @property {Array<PackingLineController.ConfigurationGroup>} configurationGroups An Array of Groups that provide Configuration Options for this Packing Line
|
|
458
|
+
* @property {Array<PackingLineController.ConfigurationSection>} configurationSections An Array of Sections that organize Configuration Groups for this Packing Line
|
|
459
|
+
* @property {Array<PackingLineController.MomentaryControlGroup>} momentaryControlGroups An Array of Momentary Controls for User Interaction on this Packing Line
|
|
460
|
+
* @memberof Controllers.Packhouse.Site
|
|
461
|
+
*/
|
|
462
|
+
|
|
463
|
+
/**
|
|
464
|
+
* A **ClassType** Type
|
|
465
|
+
*
|
|
466
|
+
* @typedef {Object} PackingLineController.ClassType
|
|
467
|
+
* @property {string} name User Facing Name of this Class Type
|
|
468
|
+
* @property {{currentPackrunPercentage: number, currentPackrunWeight: ?number}} points The Points used by a Class Type
|
|
469
|
+
* @property {string} classType The Class Type being defined
|
|
195
470
|
* @memberof Controllers.Packhouse.Site
|
|
196
471
|
*/
|
|
197
472
|
|
|
@@ -219,9 +494,146 @@ export default PackingLineController;
|
|
|
219
494
|
* A **ShiftManagement** Type
|
|
220
495
|
*
|
|
221
496
|
* @typedef {Object} PackingLineController.ShiftManagement
|
|
222
|
-
* @property {{currentShiftId: number, createNewDayShiftRequest: number, createNewNightShiftRequest: number, startCurrentShiftRequest: number, finishCurrentShiftRequest: number, currentFocusMeetingId: number, startFocusMeetingRequest: number, finishFocusMeetingRequest: number,
|
|
497
|
+
* @property {{currentShiftId: number, currentShiftStatus: number, createNewDayShiftRequest: number, createNewNightShiftRequest: number, startCurrentShiftRequest: number, finishCurrentShiftRequest: number, currentFocusMeetingId: number, startFocusMeetingRequest: number, finishFocusMeetingRequest: number, shiftSchedules: number, currentShiftModifyHourlyEntryRequest: number, currentShiftClass1TraysPerHourTarget: number, currentShiftClass1TraysPerHourAdjustedTarget: number, currentShiftClass1TraysPerHour: number, currentShiftCostPerTrayTarget: number, currentShiftCostPerTrayAdjustedTarget: number, currentShiftCostPerTray: number, currentShiftManningTarget: number, currentShiftClass1Manning: number, currentShiftClass2Manning: number, currentShiftClass1ManningTarget: number, currentShiftClass2ManningTarget: number, currentShiftQualityR600IdealTarget: number, currentShiftQualityR600Ideal: number, currentShiftScorePercentage: number, class1TraysPerHourTargets: number, costPerTrayTargets: number, manningTargets: number, qualityR600IdealTargets: number, layeredTrayPercentageTargets: number, class1PercentageTargets: ?number, costPerManningUnitHour: number, class1TraysPerHourScoreWeighting: number, costPerTrayScoreWeighting: number, qualityR600IdealScoreWeighting: number, summaryReportEmailContacts: number, currentShiftUpdateManningTeamsRequest: ?number, currentShiftUpdateManningTeamsTimestamp: ?number, manningTeams: ?number}} points The Points used for Shift Management
|
|
223
498
|
* @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
|
|
224
499
|
* @property {boolean} enabled Whether Shift Management is Enabled on this Packing Line
|
|
225
500
|
* @property {Array<PackingLineController.ShiftTaskDefinition>} taskDefinitions An Array of Shift Task Types for this Packing Line
|
|
501
|
+
* @property {boolean} manningUsesTeams Whether Manning is tracked at the Team Level on this Packing Line
|
|
502
|
+
* @memberof Controllers.Packhouse.Site
|
|
503
|
+
*/
|
|
504
|
+
|
|
505
|
+
/**
|
|
506
|
+
* A **ManualStepPointAction** Type
|
|
507
|
+
*
|
|
508
|
+
* @typedef {Object} PackingLineController.ManualStepPointAction
|
|
509
|
+
* @property {string} trigger When this Action should be performed. 'begin' performed once when this Step becomes Active. 'end' performed once when this Step is no longer Active. 'always' performed constantly while this Step is Active
|
|
510
|
+
* @property {number} pointId The Point ID to be written to
|
|
511
|
+
* @property {any} value Value to be written to the Point
|
|
512
|
+
* @memberof Controllers.Packhouse.Site
|
|
513
|
+
*/
|
|
514
|
+
|
|
515
|
+
/**
|
|
516
|
+
* A **ManualStepAutoControlGroupAction** Type
|
|
517
|
+
*
|
|
518
|
+
* @typedef {Object} PackingLineController.ManualStepAutoControlGroupAction
|
|
519
|
+
* @property {string} trigger When this Action should be performed. 'begin' performed once when this Step becomes Active. 'end' performed once when this Step is no longer Active. 'always' performed constantly while this Step is Active
|
|
520
|
+
* @property {string} groupId ID of an Automation Auto Control Group
|
|
521
|
+
* @property {string} action The Action to be performed on the Auto Control Group
|
|
522
|
+
* @memberof Controllers.Packhouse.Site
|
|
523
|
+
*/
|
|
524
|
+
|
|
525
|
+
/**
|
|
526
|
+
* A **ManualStep** Type
|
|
527
|
+
*
|
|
528
|
+
* @typedef {Object} PackingLineController.ManualStep
|
|
529
|
+
* @property {number} index An Index used to Order Steps and compare with the Current Step Point value
|
|
530
|
+
* @property {string} type The Type of Step
|
|
531
|
+
* @property {string} title A Title for this Manual Step
|
|
532
|
+
* @property {?string} subtitle An Optional Subtitle for this Manual Step
|
|
533
|
+
* @property {string} description A Description for this Manual Step
|
|
534
|
+
* @property {Array<PackingLineController.ManualStepPointAction>} [pointActions] An Optional Array of Actions that should be performed on Points by setting them to a predefined Value based on a Trigger
|
|
535
|
+
* @property {Array<PackingLineController.ManualStepAutoControlGroupAction>} [autoControlGroupActions]
|
|
536
|
+
* @memberof Controllers.Packhouse.Site
|
|
537
|
+
*/
|
|
538
|
+
|
|
539
|
+
/**
|
|
540
|
+
* A **ClearSizersStep** Type
|
|
541
|
+
*
|
|
542
|
+
* @typedef {Object} PackingLineController.ClearSizersStep
|
|
543
|
+
* @property {number} index An Index used to Order Steps and compare with the Current Step Point value
|
|
544
|
+
* @property {string} type The Type of Step
|
|
545
|
+
* @property {string[]} sizerIds An Array of Sizer IDs to be included in this Step
|
|
546
|
+
* @memberof Controllers.Packhouse.Site
|
|
547
|
+
*/
|
|
548
|
+
|
|
549
|
+
/**
|
|
550
|
+
* A **CreateSizerBatchesStep** Type
|
|
551
|
+
*
|
|
552
|
+
* @typedef {Object} PackingLineController.CreateSizerBatchesStep
|
|
553
|
+
* @property {number} index An Index used to Order Steps and compare with the Current Step Point value
|
|
554
|
+
* @property {string} type The Type of Step
|
|
555
|
+
* @property {string[]} sizerIds An Array of Sizer IDs to be included in this Step
|
|
556
|
+
* @memberof Controllers.Packhouse.Site
|
|
557
|
+
*/
|
|
558
|
+
|
|
559
|
+
/**
|
|
560
|
+
* A **CheckFruitSizeProfileStep** Type
|
|
561
|
+
*
|
|
562
|
+
* @typedef {Object} PackingLineController.CheckFruitSizeProfileStep
|
|
563
|
+
* @property {number} index An Index used to Order Steps and compare with the Current Step Point value
|
|
564
|
+
* @property {string} type The Type of Step
|
|
565
|
+
* @property {string} sizerId ID of the Sizer to be included in this Step
|
|
566
|
+
* @memberof Controllers.Packhouse.Site
|
|
567
|
+
*/
|
|
568
|
+
|
|
569
|
+
/**
|
|
570
|
+
* A **AutoMAFActionStep** Type
|
|
571
|
+
*
|
|
572
|
+
* @typedef {Object} PackingLineController.AutoMAFActionStep
|
|
573
|
+
* @property {number} index An Index used to Order Steps and compare with the Current Step Point value
|
|
574
|
+
* @property {string} type The Type of Step
|
|
575
|
+
* @property {string} title A Title for this Auto MAF Action Step
|
|
576
|
+
* @property {?string} subtitle An Optional Subtitle for this Auto MAF Action Step
|
|
577
|
+
* @property {string} description A Description for this Auto MAF Action Step
|
|
578
|
+
* @property {string} actionType Type of MAF Action to be performed
|
|
579
|
+
* @property {string} trigger When this Action should be performed. 'begin' performed once when this Step becomes Active. 'end' performed once when this Step is no longer Active. 'always' performed constantly while this Step is Active
|
|
580
|
+
* @property {?any} actionReference An Optional Reference for this Action (e.g. The Internal MAF Name of a Sizer or Numeric Sizer ID
|
|
581
|
+
* @memberof Controllers.Packhouse.Site
|
|
582
|
+
*/
|
|
583
|
+
|
|
584
|
+
/**
|
|
585
|
+
* A **ManualMAFActionStep** Type
|
|
586
|
+
*
|
|
587
|
+
* @typedef {Object} PackingLineController.ManualMAFActionStep
|
|
588
|
+
* @property {number} index An Index used to Order Steps and compare with the Current Step Point value
|
|
589
|
+
* @property {string} type The Type of Step
|
|
590
|
+
* @property {string} title A Title for this Manual MAF Action Step
|
|
591
|
+
* @property {?string} subtitle An Optional Subtitle for this Manual MAF Action Step
|
|
592
|
+
* @property {string} description A Description for this Manual MAF Action Step
|
|
593
|
+
* @property {string} actionType Type of MAF Action to be performed
|
|
594
|
+
* @property {string} trigger When this Action should be performed. 'begin' performed once when this Step becomes Active. 'end' performed once when this Step is no longer Active. 'always' performed constantly while this Step is Active
|
|
595
|
+
* @property {?any} actionReference An Optional Reference for this Action (e.g. The Internal MAF Name of a Sizer or Numeric Sizer ID
|
|
596
|
+
* @memberof Controllers.Packhouse.Site
|
|
597
|
+
*/
|
|
598
|
+
|
|
599
|
+
/**
|
|
600
|
+
* A **AdvancedPackrunManagement** Type
|
|
601
|
+
*
|
|
602
|
+
* @typedef {Object} PackingLineController.AdvancedPackrunManagement
|
|
603
|
+
* @property {{startPackrunChangeRequest: number, cancelPackrunChangeRequest: number, advancePackrunChangeRequest: number, skipPackrunChangeStepRequest: number, packrunChangeCurrentStep: number, packrunChangeAutomationActionsEnabled: number}} points The Points used for Advanced Packrun Management
|
|
604
|
+
* @property {PackingLineController.ManualStep|PackingLineController.ClearSizersStep|PackingLineController.CreateSizerBatchesStep|PackingLineController.CheckFruitSizeProfileStep|PackingLineController.AutoMAFActionStep|PackingLineController.ManualMAFActionStep[]} steps An Array of Steps that define the Advanced Packrun Management process
|
|
605
|
+
* @property {boolean} enabled Whether Advanced Packrun Managed is Enabled on this Packing Line
|
|
606
|
+
* @memberof Controllers.Packhouse.Site
|
|
607
|
+
*/
|
|
608
|
+
|
|
609
|
+
/**
|
|
610
|
+
* A **MafIntegration** Type
|
|
611
|
+
*
|
|
612
|
+
* @typedef {Object} PackingLineController.MafIntegration
|
|
613
|
+
* @property {{apiCommunicationStatus: number, batchManagementStateNumber: number, batchManagementStateMessage: number, batchManagementLineName: number, batchManagementCurrentLot: number, batchManagementEndOfDay: number, skipBrushesSweepRequest: number, finishPackrunBeginRequest: number, finishPackrunCancelRequest: number, finishPackrunAdvanceRequest: number, finishPackrunSkipStepRequest: number, finishPackrunCurrentStep: number, timeBatchChangeBeginRequest: number, timeBatchChangeCancelRequest: number, timeBatchChangeAdvanceRequest: number, timeBatchChangeSkipStepRequest: number, timeBatchChangeCurrentStep: number}} points The Points used for this MAF Integration
|
|
614
|
+
* @property {boolean} enabled Whether the MAF Integration is Enabled on this Packing Line
|
|
615
|
+
* @property {string} tracAddress The IP Address or Server Name of the MAF TRAC PC
|
|
616
|
+
* @memberof Controllers.Packhouse.Site
|
|
617
|
+
*/
|
|
618
|
+
|
|
619
|
+
/**
|
|
620
|
+
* A **ClassTypeRejectCategory** Type
|
|
621
|
+
*
|
|
622
|
+
* @typedef {Object} PackingLineController.ClassTypeRejectCategory
|
|
623
|
+
* @property {string} classType A Class Type that is already defined on this Packing Line
|
|
624
|
+
* @property {number} rejectCategoryId The FreshPack Reject Category ID that should be associated with the Class Type
|
|
625
|
+
* @memberof Controllers.Packhouse.Site
|
|
626
|
+
*/
|
|
627
|
+
|
|
628
|
+
/**
|
|
629
|
+
* A **FreshPackIntegration** Type
|
|
630
|
+
*
|
|
631
|
+
* @typedef {Object} PackingLineController.FreshPackIntegration
|
|
632
|
+
* @property {{currentPackrunSamples: number, apiCommunicationStatus: number, currentPackrunMajorPackingDefects: number, currentPackrunMinorPackingDefects: number, currentPackrunTotalPackingDefects: number, currentPackrunFutureStorageDefects: number, currentPackrunMajorPackingDefectsCount: number, currentPackrunMinorPackingDefectsCount: number, currentPackrunTotalPackingDefectsCount: number, currentPackrunFutureStorageDefectsCount: number}} points The Points used for this FreshQuality Integration
|
|
633
|
+
* @property {boolean} enabled Whether the FreshQuality Integration is Enabled on this Packing Line
|
|
634
|
+
* @property {string} username Username for Authenticating with the FreshQuality API
|
|
635
|
+
* @property {string} password Password for Authenticating with the FreshQuality API
|
|
636
|
+
* @property {string} apiBaseUrl Base URL of the FreshQuality API
|
|
637
|
+
* @property {number[]} sampleTypeIds An Array of FreshQuality Sample Type IDs that are used for Class 1 R600 on this Packing Line
|
|
226
638
|
* @memberof Controllers.Packhouse.Site
|
|
227
639
|
*/
|
|
@@ -2435,7 +2435,7 @@ export default PackrunController;
|
|
|
2435
2435
|
* @property {string} varietyId The Variety for this Packrun
|
|
2436
2436
|
* @property {?string} [growingMethodId] The Growing Method for this Packrun
|
|
2437
2437
|
* @property {number} [allocatedBins] The Number of Allocated Bins for this Packrun
|
|
2438
|
-
* @property {
|
|
2438
|
+
* @property {Array<PackrunController.TimeBatch>} [timeBatches] The Time Batches for this Packrun
|
|
2439
2439
|
* @property {?number} [freshPackGraderId] The FreshPack Grader ID associated with this Packrun
|
|
2440
2440
|
* @property {?string} [freshPackBinLotCode] The FreshPack Bin Lot Code associated with this Packrun
|
|
2441
2441
|
* @property {?string} [freshPackProduceCode] The FreshPack Produce Code associated with this Packrun
|
|
@@ -2456,7 +2456,7 @@ export default PackrunController;
|
|
|
2456
2456
|
* @property {string} [varietyId] The Variety for this Packrun
|
|
2457
2457
|
* @property {?string} [growingMethodId] The Growing Method for this Packrun
|
|
2458
2458
|
* @property {number} [allocatedBins] The Number of Allocated Bins for this Packrun
|
|
2459
|
-
* @property {
|
|
2459
|
+
* @property {Array<PackrunController.TimeBatch>} [timeBatches] The Time Batches for this Packrun
|
|
2460
2460
|
* @property {?number} [freshPackGraderId] The FreshPack Grader ID associated with this Packrun
|
|
2461
2461
|
* @property {?string} [freshPackBinLotCode] The FreshPack Bin Lot Code associated with this Packrun
|
|
2462
2462
|
* @property {?string} [freshPackProduceCode] The FreshPack Produce Code associated with this Packrun
|
|
@@ -2616,4 +2616,13 @@ export default PackrunController;
|
|
|
2616
2616
|
* @property {?boolean} softSortEventsIsAccurate Whether the Soft-Sort Events Data is considered accurate or not
|
|
2617
2617
|
* @property {?string} softSortEventsNotAccurateReason A Reason for why the Soft-Sort Events Data is not accurate. Applies when `softSortEventsIsAccurate` is false
|
|
2618
2618
|
* @memberof Controllers.Packhouse.Site
|
|
2619
|
+
*/
|
|
2620
|
+
|
|
2621
|
+
/**
|
|
2622
|
+
* A **TimeBatch** Type
|
|
2623
|
+
*
|
|
2624
|
+
* @typedef {Object} PackrunController.TimeBatch
|
|
2625
|
+
* @property {string} id The Single Letter ID of this Time Batch (Starts at A and proceeds through to Z)
|
|
2626
|
+
* @property {Date} timestamp Timestamp when this Time Batch was Created
|
|
2627
|
+
* @memberof Controllers.Packhouse.Site
|
|
2619
2628
|
*/
|
|
@@ -973,7 +973,7 @@ export default RejectBinController;
|
|
|
973
973
|
* @property {string} rejectBinScaleName The Name of the Reject Bin Scale where this Bin was Created
|
|
974
974
|
* @property {?number} [tareWeight] The Tare Weight Captured by the Reject Bin Scale
|
|
975
975
|
* @property {?Date} [finalizedTimestamp] When this Reject Bin was Finalized (No new Weights)
|
|
976
|
-
* @property {
|
|
976
|
+
* @property {Array<RejectBinController.FreshPackMultiGrowerBin>} [freshPackMultiGrowerBins] The Multi-Grower Bins that will be submitted to FreshPack
|
|
977
977
|
* @memberof Controllers.Packhouse.Site
|
|
978
978
|
*/
|
|
979
979
|
|
|
@@ -986,7 +986,7 @@ export default RejectBinController;
|
|
|
986
986
|
* @property {string} [rejectBinScaleName] The Name of the Reject Bin Scale where this Bin was Created
|
|
987
987
|
* @property {?number} [tareWeight] The Tare Weight Captured by the Reject Bin Scale
|
|
988
988
|
* @property {?Date} [finalizedTimestamp] When this Reject Bin was Finalized (No new Weights)
|
|
989
|
-
* @property {
|
|
989
|
+
* @property {Array<RejectBinController.FreshPackMultiGrowerBin>} [freshPackMultiGrowerBins] The Multi-Grower Bins that will be submitted to FreshPack
|
|
990
990
|
* @memberof Controllers.Packhouse.Site
|
|
991
991
|
*/
|
|
992
992
|
|
|
@@ -1010,4 +1010,40 @@ export default RejectBinController;
|
|
|
1010
1010
|
* @property {?Date} createdTimestamp When the Comment was Created
|
|
1011
1011
|
* @property {?Date} updatedTimestamp When the Comment was last Updated
|
|
1012
1012
|
* @memberof Controllers.Packhouse.Site
|
|
1013
|
+
*/
|
|
1014
|
+
|
|
1015
|
+
/**
|
|
1016
|
+
* Results from Interacting with the FreshPack API to Create a Multi-Grower Bin
|
|
1017
|
+
*
|
|
1018
|
+
* @typedef {Object} RejectBinController.BinNumberApiStatus
|
|
1019
|
+
* @property {number} requestCount Number of Requests made to the FreshPack API
|
|
1020
|
+
* @property {?Date} requestTimestamp Timestamp of the last Request made to the FreshPack API
|
|
1021
|
+
* @property {?number} responseCode Response Code from the last FreshPack API Request
|
|
1022
|
+
* @property {?string} responseMessage Response Message from the last FreshPack API Request
|
|
1023
|
+
* @property {boolean} completed Whether Interaction with the FreshPack API has been Completed
|
|
1024
|
+
* @memberof Controllers.Packhouse.Site
|
|
1025
|
+
*/
|
|
1026
|
+
|
|
1027
|
+
/**
|
|
1028
|
+
* Results from Interacting with the FreshPack API to Print a Multi-Grower Bin Card
|
|
1029
|
+
*
|
|
1030
|
+
* @typedef {Object} RejectBinController.BinCardApiStatus
|
|
1031
|
+
* @property {number} requestCount Number of Requests made to the FreshPack API
|
|
1032
|
+
* @property {?Date} requestTimestamp Timestamp of the last Request made to the FreshPack API
|
|
1033
|
+
* @property {?number} responseCode Response Code from the last FreshPack API Request
|
|
1034
|
+
* @property {?string} responseMessage Response Message from the last FreshPack API Request
|
|
1035
|
+
* @property {boolean} completed Whether Interaction with the FreshPack API has been Completed
|
|
1036
|
+
* @memberof Controllers.Packhouse.Site
|
|
1037
|
+
*/
|
|
1038
|
+
|
|
1039
|
+
/**
|
|
1040
|
+
* A **FreshPackMultiGrowerBin** Type
|
|
1041
|
+
*
|
|
1042
|
+
* @typedef {Object} RejectBinController.FreshPackMultiGrowerBin
|
|
1043
|
+
* @property {string} classType The Class Type of this Multi-Grower Bin
|
|
1044
|
+
* @property {?string} binNumber The FreshPack Assigned Number of this Multi-Grower Bin
|
|
1045
|
+
* @property {boolean} printBinCard Whether a Bin Card should be Printed when the Reject Bin is Finalized
|
|
1046
|
+
* @property {?RejectBinController.BinNumberApiStatus} binNumberApi Results from Interacting with the FreshPack API to Create a Multi-Grower Bin
|
|
1047
|
+
* @property {?RejectBinController.BinCardApiStatus} binCardApi Results from Interacting with the FreshPack API to Print a Multi-Grower Bin Card
|
|
1048
|
+
* @memberof Controllers.Packhouse.Site
|
|
1013
1049
|
*/
|