FR2798200 Add isReturnMaterial to MOrder
https://sourceforge.net/tracker/?func=detail&aid=2798200&group_id=176962&atid=879335
This commit is contained in:
parent
c03b0df98e
commit
a890145e50
|
@ -2383,4 +2383,16 @@ public class MOrder extends X_C_Order implements DocAction
|
|||
|| DOCSTATUS_Reversed.equals(ds);
|
||||
} // isComplete
|
||||
|
||||
/**
|
||||
* Is it a Return Material?
|
||||
* @return true if RM
|
||||
*/
|
||||
public boolean isReturnMaterial()
|
||||
{
|
||||
MDocType dt = MDocType.get(getCtx(),
|
||||
getC_DocType_ID()==0 ? getC_DocTypeTarget_ID() : getC_DocType_ID());
|
||||
return MDocType.DOCSUBTYPESO_ReturnMaterial.equals(dt.getDocSubTypeSO());
|
||||
} // isReturnMaterial
|
||||
|
||||
|
||||
} // MOrder
|
||||
|
|
Loading…
Reference in New Issue