@java.lang.SuppressWarnings(value: unused) @groovy.transform.ToString(includeNames: true, includePackage: false) class FindWorkResponseDetail extends java.lang.Object
The sample 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.
| Type | Name and description |
|---|---|
private java.lang.Object |
idA unique ID for the order. |
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 java.lang.String |
productThe the product. |
private BigDecimal |
qtyInQueueThe qty in queue. |
private BigDecimal |
qtyInWorkThe qty in queue. |
private java.lang.String |
workCenterTHe work center. |
| Constructor and description |
|---|
FindWorkResponseDetail
() |
| 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() |
A unique ID for the order.
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 the product.
The qty in queue.
The qty in queue.
THe work center.
Groovy Documentation