@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 |
id A unique ID for the order. |
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 java.lang.String |
product The the product. |
private BigDecimal |
qtyInQueue The qty in queue. |
private BigDecimal |
qtyInWork The qty in queue. |
private java.lang.String |
workCenter THe 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