132 lines
4.1 KiB
Java
132 lines
4.1 KiB
Java
|
|
// uniCenta oPOS - Touch Friendly Point Of Sale
|
||
|
|
// Copyright (c) 2009-2018 uniCenta & previous Openbravo POS works
|
||
|
|
// https://unicenta.com
|
||
|
|
//
|
||
|
|
// This file is part of uniCenta oPOS
|
||
|
|
//
|
||
|
|
// uniCenta oPOS 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.
|
||
|
|
//
|
||
|
|
// uniCenta oPOS 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 uniCenta oPOS. If not, see <http://www.gnu.org/licenses/>.
|
||
|
|
|
||
|
|
package com.unicenta.pos.admin;
|
||
|
|
|
||
|
|
import com.unicenta.data.loader.*;
|
||
|
|
import com.unicenta.format.Formats;
|
||
|
|
import com.unicenta.pos.forms.AppLocal;
|
||
|
|
import com.unicenta.pos.forms.BeanFactoryDataSingle;
|
||
|
|
|
||
|
|
/**
|
||
|
|
*
|
||
|
|
* @author adrianromero
|
||
|
|
*/
|
||
|
|
public class DataLogicAdmin extends BeanFactoryDataSingle {
|
||
|
|
|
||
|
|
private Session s;
|
||
|
|
private TableDefinition m_tpeople;
|
||
|
|
private TableDefinition m_troles;
|
||
|
|
private TableDefinition m_tresources;
|
||
|
|
|
||
|
|
|
||
|
|
/** Creates a new instance of DataLogicAdmin */
|
||
|
|
public DataLogicAdmin() {
|
||
|
|
}
|
||
|
|
|
||
|
|
/**
|
||
|
|
*
|
||
|
|
* @param s
|
||
|
|
*/
|
||
|
|
@Override
|
||
|
|
public void init(Session s){
|
||
|
|
this.s = s;
|
||
|
|
|
||
|
|
m_tpeople = new TableDefinition(s,
|
||
|
|
"people"
|
||
|
|
, new String[] {"ID", "NAME", "APPPASSWORD", "ROLE", "VISIBLE", "CARD", "IMAGE"}
|
||
|
|
, new String[] {"ID", AppLocal.getIntString("label.peoplename"), AppLocal.getIntString("label.Password"), AppLocal.getIntString("label.role"), AppLocal.getIntString("label.peoplevisible"), AppLocal.getIntString("label.card"), AppLocal.getIntString("label.peopleimage")}
|
||
|
|
, new Datas[] {Datas.STRING, Datas.STRING, Datas.STRING, Datas.STRING, Datas.BOOLEAN, Datas.STRING, Datas.IMAGE}
|
||
|
|
, new Formats[] {Formats.STRING, Formats.STRING, Formats.STRING, Formats.STRING, Formats.BOOLEAN, Formats.STRING, Formats.NULL}
|
||
|
|
, new int[] {0}
|
||
|
|
);
|
||
|
|
|
||
|
|
m_troles = new TableDefinition(s,
|
||
|
|
"roles"
|
||
|
|
, new String[] {"ID", "NAME", "PERMISSIONS"}
|
||
|
|
, new String[] {"ID", AppLocal.getIntString("label.name"), "PERMISSIONS"}
|
||
|
|
, new Datas[] {Datas.STRING, Datas.STRING, Datas.BYTES}
|
||
|
|
, new Formats[] {Formats.STRING, Formats.STRING, Formats.NULL}
|
||
|
|
, new int[] {0}
|
||
|
|
);
|
||
|
|
|
||
|
|
m_tresources = new TableDefinition(s,
|
||
|
|
"resources"
|
||
|
|
, new String[] {
|
||
|
|
"ID", "NAME", "RESTYPE", "CONTENT"}
|
||
|
|
, new String[] {
|
||
|
|
"ID",
|
||
|
|
AppLocal.getIntString("label.name"),
|
||
|
|
AppLocal.getIntString("label.type"),
|
||
|
|
"CONTENT"}
|
||
|
|
, new Datas[] {
|
||
|
|
Datas.STRING, Datas.STRING, Datas.INT, Datas.BYTES}
|
||
|
|
, new Formats[] {
|
||
|
|
Formats.STRING, Formats.STRING, Formats.INT, Formats.NULL}
|
||
|
|
, new int[] {0}
|
||
|
|
);
|
||
|
|
}
|
||
|
|
|
||
|
|
/**
|
||
|
|
*
|
||
|
|
* @return
|
||
|
|
*/
|
||
|
|
public final SentenceList getRolesList() {
|
||
|
|
return new StaticSentence(s
|
||
|
|
, "SELECT ID, NAME FROM roles ORDER BY NAME"
|
||
|
|
, null
|
||
|
|
, new SerializerReadClass(RoleInfo.class));
|
||
|
|
}
|
||
|
|
|
||
|
|
/**
|
||
|
|
*
|
||
|
|
* @return
|
||
|
|
*/
|
||
|
|
public final TableDefinition getTablePeople() {
|
||
|
|
return m_tpeople;
|
||
|
|
}
|
||
|
|
|
||
|
|
/**
|
||
|
|
*
|
||
|
|
* @return
|
||
|
|
*/
|
||
|
|
public final TableDefinition getTableRoles() {
|
||
|
|
return m_troles;
|
||
|
|
}
|
||
|
|
|
||
|
|
/**
|
||
|
|
*
|
||
|
|
* @return
|
||
|
|
*/
|
||
|
|
public final TableDefinition getTableResources() {
|
||
|
|
return m_tresources;
|
||
|
|
}
|
||
|
|
|
||
|
|
/**
|
||
|
|
*
|
||
|
|
* @return
|
||
|
|
*/
|
||
|
|
public final SentenceList getPeopleList() {
|
||
|
|
return new StaticSentence(s
|
||
|
|
, "SELECT ID, NAME FROM people ORDER BY NAME"
|
||
|
|
, null
|
||
|
|
, new SerializerReadClass(PeopleInfo.class));
|
||
|
|
}
|
||
|
|
}
|