@groovy.transform.ToString(includeNames: true, includePackage: false) class FindWorkResponseDetail extends java.lang.Object
The response from the WorkListService.findWork() service method. This represents a single unit in queue or in work. This can be an order and/or LSN.
This is a POGO used by the WorkListService.findWork method.Type | Name and description |
---|---|
private java.util.Date |
dateFirstQueued The date the qty was first queued. |
private java.util.Date |
dateFirstStarted The date the qty was first queued. |
private java.util.Date |
dateQtyQueued The date the qty was queued. |
private java.util.Date |
dateQtyStarted The date the qty was started. |
private java.lang.Object |
id The unique ID of this row. |
private boolean |
inQueue True if the unit is in queue. |
private boolean |
inWork True if the unit is in work. |
private java.lang.String |
lsn The LSN that is in work or queue. |
private java.lang.Object |
lsnID The ID of the LSN that is in work or queue. |
private int |
operationSequence The operation this qty is at |
private java.lang.String |
order The order that is in work or queue. |
private java.lang.Object |
orderID The ID of the order that is in work or queue. |
private BigDecimal |
qtyDone The qty done. |
private BigDecimal |
qtyInQueue The qty in queue. |
private BigDecimal |
qtyInWork The qty in queue. |
private WorkCenter |
workCenter The work center the unit is in. |
Constructor and description |
---|
FindWorkResponseDetail
() Empty constructor. |
FindWorkResponseDetail
(java.util.Map options) Map constructor. |
FindWorkResponseDetail
() |
Type Params | Return Type | Name and description |
---|---|---|
|
java.lang.Object |
init() Finishes the common logic for most of the copy constructors. |
Methods inherited from class | Name |
---|---|
class java.lang.Object |
java.lang.Object#wait(long, int), java.lang.Object#wait(), java.lang.Object#wait(long), java.lang.Object#equals(java.lang.Object), java.lang.Object#toString(), java.lang.Object#hashCode(), java.lang.Object#getClass(), java.lang.Object#notify(), java.lang.Object#notifyAll() |
The date the qty was first queued.
The date the qty was first queued.
The date the qty was queued.
The date the qty was started.
The unique ID of this row. The lowest element for the row will be used (LSNOperState, OrderOperState, LNS then Order). This will be consistent for later requests. Suitable for use in identifying the selected records.
True if the unit is in queue.
True if the unit is in work.
The LSN that is in work or queue. This is a simple string to reduce the size of this object.
The ID of the LSN that is in work or queue. This can be used to find the original record.
The operation this qty is at. (0 means not at an operation)
The order that is in work or queue. This is a simple string to reduce the size of this object.
The ID of the order that is in work or queue. This can be used to find the original record.
The qty done.
The qty in queue.
The qty in queue.
The work center the unit is in.
Empty constructor.
Map constructor. Provides the standard Groovy map constructor. Supports use of SQL column-name versions of the fields (e.g. 'qty_in_queue').
options
- The options map.Groovy Documentation