@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 |
dateFirstQueuedThe date the qty was first queued. |
private java.util.Date |
dateFirstStartedThe date the qty was first queued. |
private java.util.Date |
dateQtyQueuedThe date the qty was queued. |
private java.util.Date |
dateQtyStartedThe date the qty was started. |
private java.lang.Object |
idThe unique ID of this row. |
private boolean |
inQueueTrue if the unit is in queue. |
private boolean |
inWorkTrue if the unit is in work. |
private java.lang.String |
lsnThe LSN that is in work or queue. |
private java.lang.Object |
lsnIDThe ID of the LSN that is in work or queue. |
private int |
operationSequenceThe operation this qty is at |
private java.lang.String |
orderThe order that is in work or queue. |
private java.lang.Object |
orderIDThe ID of the order that is in work or queue. |
private BigDecimal |
qtyDoneThe qty done. |
private BigDecimal |
qtyInQueueThe qty in queue. |
private BigDecimal |
qtyInWorkThe qty in queue. |
private WorkCenter |
workCenterThe 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