Package com.openbravo.pos.forms

Examples of com.openbravo.pos.forms.DataLogicSales


    private String posid;
       
    /** Creates new form CustomersView */
    public CustomersView(AppView app, DirtyManager dirty) {
       
        DataLogicSales dlSales = (DataLogicSales) app.getBean("com.openbravo.pos.forms.DataLogicSales");

        if (!TicketInfo.isWS()) {
             SimpleDateFormat sdf = new SimpleDateFormat("S");
             posid = sdf.format(new Date());
        } else {
            posid=String.valueOf(TicketInfo.getPosID());
        }

        initComponents();
       
        m_sentcat = dlSales.getTaxCustCategoriesList();
        m_CategoryModel = new ComboBoxValModel();
       
        m_Dirty = dirty;
        m_jTaxID.getDocument().addDocumentListener(dirty);
        m_jSearchkey.getDocument().addDocumentListener(dirty);
View Full Code Here


    /** Creates a new instance of JPanelCategories */
    public CategoriesPanel() {       
    }  
   
    protected void init() {  
        DataLogicSales dlSales = (DataLogicSales) app.getBean("com.openbravo.pos.forms.DataLogicSales");          
        tcategories = dlSales.getTableCategories();
        jeditor = new CategoriesEditor(app, dirty);   
    }
View Full Code Here

    /** Creates a new instance of JPanelDuty */
    public TaxPanel() {
    }
   
    protected void init() {
        DataLogicSales dlSales = (DataLogicSales) app.getBean("com.openbravo.pos.forms.DataLogicSales");       
        ttaxes = dlSales.getTableTaxes();
        jeditor = new TaxEditor(app, dirty);
    }
View Full Code Here

    /** Creates a new instance of JPanelDuty */
    public TaxCustCategoriesPanel() {
    }
   
    protected void init() {
        DataLogicSales dlSales = (DataLogicSales) app.getBean("com.openbravo.pos.forms.DataLogicSales");       
        ttaxcategories = dlSales.getTableTaxCustCategories();
        jeditor = new TaxCustCategoriesEditor(dirty);
    }
View Full Code Here

    /** Creates a new instance of LocationsPanel */
    public LocationsPanel() {
    }
   
    protected void init() {  
        DataLogicSales dlSales = (DataLogicSales) app.getBean("com.openbravo.pos.forms.DataLogicSales");         
        tlocations = dlSales.getTableLocations();
        jeditor = new LocationsView(dirty);
    }
View Full Code Here

    /** Creates a new instance of JPanelDuty */
    public TaxCategoriesPanel() {
    }
   
    protected void init() {
        DataLogicSales dlSales = (DataLogicSales) app.getBean("com.openbravo.pos.forms.DataLogicSales");       
        ttaxcategories = dlSales.getTableTaxCategories();
        jeditor = new TaxCustCategoriesEditor(dirty);
    }
View Full Code Here

        initComponents();
    }
   
    public void init(AppView app) {
        
        DataLogicSales dlSales = (DataLogicSales) app.getBean("com.openbravo.pos.forms.DataLogicSales");
      
        // El modelo de categorias
        m_sentcat = dlSales.getCategoriesList();
        m_CategoryModel = new ComboBoxValModel();         
        
        m_jCboName.setModel(new ListQBFModelNumber());
        m_jCboPriceBuy.setModel(new ListQBFModelNumber());
        m_jCboPriceSell.setModel(new ListQBFModelNumber());
View Full Code Here

    /** Creates a new instance of JPanelPlaces */
    public JPanelPlaces() {
    }
   
    protected void init() {
        DataLogicSales dlSales = null;
        dlSales = (DataLogicSales) app.getBean("com.openbravo.pos.forms.DataLogicSales");
       
        tplaces = new TableDefinition(app.getSession(),
            "PLACES"
            , new String[] {"ID", "NAME", "X", "Y", "FLOOR"}
View Full Code Here

        initComponents();
    }
   
    public void init(AppView app) {
        
        DataLogicSales dlSales = (DataLogicSales) app.getBean("com.openbravo.pos.forms.DataLogicSales");
      
        m_sentcat = dlSales.getHostList();
        m_HostModel = new ComboBoxValModel();
        
    }
View Full Code Here

    }
   
    public void init(AppView app) throws BeanFactoryException {  
       
        m_App = app;
        DataLogicSales dlSales = (DataLogicSales) app.getBean("com.openbravo.pos.forms.DataLogicSales");
        taxsent = dlSales.getTaxList();
       
        editor = getEditorCreator();
        if (editor instanceof ReportEditorCreator) {
            jPanelFilter.add(((ReportEditorCreator) editor).getComponent(), BorderLayout.CENTER);
        }
View Full Code Here

TOP

Related Classes of com.openbravo.pos.forms.DataLogicSales

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.