Search in sources :

Example 1 with DocAction

use of pl.x3E.adInterface.DocAction in project adempiere by adempiere.

the class ADServiceImpl method getDocAction.

public DocActionDocument getDocAction(int WindowNo, int TabNo, int RowNo, String ColName) throws XFireFault {
    authenticate(webServiceName, "getDocAction");
    DocActionDocument ret = DocActionDocument.Factory.newInstance();
    DocAction da = ret.addNewDocAction();
    WWindowStatus ws = WWindowStatus.get(WindowStatusMap, WindowNo, true, TabNo, true, RowNo);
    if (ws != null) {
        LookupValues lvs = da.addNewAction();
        Process.renderDocActionOptions(lvs, ws.curTab);
    }
    return ret;
}
Also used : DocAction(pl.x3E.adInterface.DocAction) LookupValues(pl.x3E.adInterface.LookupValues) DocActionDocument(pl.x3E.adInterface.DocActionDocument)

Aggregations

DocAction (pl.x3E.adInterface.DocAction)1 DocActionDocument (pl.x3E.adInterface.DocActionDocument)1 LookupValues (pl.x3E.adInterface.LookupValues)1