Package org.ofbiz.pos.component

Examples of org.ofbiz.pos.component.Journal


    public static void testAlert(PosScreen pos) {
        pos.showDialog("dialog/error/testerror");
    }

    public static void logSelectedIndex(PosScreen pos) {
        Journal journal = pos.getJournal();
        Debug.log("Selected IDX - " + journal.getSelectedIdx(), module);
    }
View Full Code Here


        // setup the shared components
        this.session = XuiContainer.getSession();
        this.output = new Output(this);
        this.input = new InputWithPassword(this);
        this.journal = new Journal(this);
        this.operator = new Operator(this);
        this.setLastActivity(System.currentTimeMillis());

        if (!firstInit) {
            firstInit = true;          
View Full Code Here

TOP

Related Classes of org.ofbiz.pos.component.Journal

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.