// Chromis POS - The New Face of Open Source POS // Copyright (c) (c) 2015-2016 // http://www.chromis.co.uk // // This file is part of Chromis POS // // Chromis POS is free software: you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by // the Free Software Foundation, either version 3 of the License, or // (at your option) any later version. // // Chromis POS is distributed in the hope that it will be useful, // but WITHOUT ANY WARRANTY; without even the implied warranty of // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the // GNU General Public License for more details. // // You should have received a copy of the GNU General Public License // along with Chromis POS. If not, see <http://www.gnu.org/licenses/>. package uk.chromis.pos.mant; import javax.swing.ListCellRenderer; import uk.chromis.basic.BasicException; import uk.chromis.data.gui.ListCellRendererBasic; import uk.chromis.data.loader.ComparatorCreator; import uk.chromis.data.loader.Datas; import uk.chromis.data.loader.TableDefinition; import uk.chromis.data.loader.Vectorer; import uk.chromis.data.user.EditorRecord; import uk.chromis.data.user.ListProvider; import uk.chromis.data.user.ListProviderCreator; import uk.chromis.data.user.SaveProvider; import uk.chromis.format.Formats; import uk.chromis.pos.forms.AppLocal; import uk.chromis.pos.forms.DataLogicSales; import uk.chromis.pos.panels.JPanelTable; /** * * @author adrianromero */ public class JPanelPlaces extends JPanelTable { private TableDefinition tplaces; private PlacesEditor jeditor; /** * Creates a new instance of JPanelPlaces */ public JPanelPlaces() { } /** * */ @Override protected void init() { DataLogicSales dlSales = null; dlSales = (DataLogicSales) app.getBean("uk.chromis.pos.forms.DataLogicSales"); tplaces = new TableDefinition(app.getSession(), "PLACES", new String[]{"ID", "NAME", "X", "Y", "FLOOR"}, new String[]{"ID", AppLocal.getIntString("Label.Name"), "X", "Y", AppLocal.getIntString("label.placefloor")}, new Datas[]{Datas.STRING, Datas.STRING, Datas.INT, Datas.INT, Datas.STRING}, new Formats[]{Formats.STRING, Formats.STRING, Formats.INT, Formats.INT, Formats.NULL}, new int[]{0} ); /* tplaces = new TableDefinition(app.getSession(), // "PLACES", new String[]{"ID", "NAME", "X", "Y", "FLOOR"}, // new String[]{"ID", AppLocal.getIntString("Label.Name"), // "X", "Y", AppLocal.getIntString("label.placefloor")}, // new Datas[]{Datas.STRING, Datas.STRING, Datas.INT, Datas.INT, Datas.STRING}, // new Formats[]{Formats.STRING, Formats.STRING, Formats.INT, Formats.INT, Formats.NULL}, new int[]{0} "PLACES", new String[]{"ID", "NAME", "X", "Y", "(SELECT NAME from FLOORS WHERE FLOORS.ID = FLOOR)"}, new String[]{"ID", AppLocal.getIntString("Label.Name"), "X", "Y", AppLocal.getIntString("label.placefloor")}, new Datas[]{Datas.STRING, Datas.STRING, Datas.INT, Datas.INT, Datas.STRING}, new Formats[]{Formats.STRING, Formats.STRING, Formats.INT, Formats.INT, Formats.STRING}, new int[]{0} ); */ jeditor = new PlacesEditor(dlSales, dirty); AppLocal.LIST_BY_RIGHTS = ""; } /** * * @return */ @Override public ListProvider getListProvider() { return new ListProviderCreator(tplaces); } /** * * @return */ @Override public SaveProvider getSaveProvider() { return new SaveProvider(tplaces); } /** * * @return */ @Override public Vectorer getVectorer() { // return tplaces.getVectorerBasic(new int[]{1}); return tplaces.getVectorerBasic(new int[]{1, 2, 3, 4}); } @Override public ComparatorCreator getComparatorCreator() { return tplaces.getComparatorCreator(new int[]{1, 2, 3, 4}); } /** * * @return */ @Override public ListCellRenderer getListCellRenderer() { return new ListCellRendererBasic(tplaces.getRenderStringBasic(new int[]{1})); //return new ListCellRendererBasic(tplaces.getRenderStringBasic(new int[]{4,1,2,3})); } /** * * @return */ @Override public EditorRecord getEditor() { return jeditor; } /** * * @return */ @Override public String getTitle() { return AppLocal.getIntString("Menu.Tables"); } /** * * @throws BasicException */ @Override public void activate() throws BasicException { jeditor.activate(); // primero activo el editor super.activate(); // segundo activo el padre } }