parent
dcec4f3aa5
commit
976d142fc1
|
@ -0,0 +1,515 @@
|
|||
/******************************************************************************
|
||||
* Product: Adempiere ERP & CRM Smart Business Solution *
|
||||
* Copyright (C) 1999-2006 Adempiere, Inc. All Rights Reserved. *
|
||||
* This program is free software; you can redistribute it and/or modify it *
|
||||
* under the terms version 2 of the GNU General Public License as published *
|
||||
* by the Free Software Foundation. This program 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 this program; if not, write to the Free Software Foundation, Inc., *
|
||||
* 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA. *
|
||||
*
|
||||
* Copyright (C) 2005 Robert Klein. robeklein@hotmail.com
|
||||
* Contributor(s): Low Heng Sin hengsin@avantz.com
|
||||
*****************************************************************************/
|
||||
package org.adempiere.pipo.handler;
|
||||
|
||||
import java.math.BigDecimal;
|
||||
import java.sql.PreparedStatement;
|
||||
import java.sql.ResultSet;
|
||||
import java.util.ArrayList;
|
||||
import java.util.List;
|
||||
import java.util.Properties;
|
||||
import java.util.logging.Level;
|
||||
|
||||
import javax.xml.transform.sax.TransformerHandler;
|
||||
|
||||
import org.adempiere.pipo.AbstractElementHandler;
|
||||
import org.adempiere.pipo.Element;
|
||||
import org.adempiere.pipo.exception.DatabaseAccessException;
|
||||
import org.adempiere.pipo.exception.POSaveFailedException;
|
||||
import org.compiere.model.MRole;
|
||||
import org.compiere.model.X_AD_Form;
|
||||
import org.compiere.model.X_AD_Package_Exp_Detail;
|
||||
import org.compiere.model.X_AD_Process;
|
||||
import org.compiere.model.X_AD_Role;
|
||||
import org.compiere.model.X_AD_Task;
|
||||
import org.compiere.model.X_AD_User;
|
||||
import org.compiere.model.X_AD_Window;
|
||||
import org.compiere.model.X_AD_Workflow;
|
||||
import org.compiere.util.DB;
|
||||
import org.compiere.util.Env;
|
||||
import org.xml.sax.Attributes;
|
||||
import org.xml.sax.SAXException;
|
||||
import org.xml.sax.helpers.AttributesImpl;
|
||||
|
||||
public class RoleElementHandler extends AbstractElementHandler {
|
||||
|
||||
private List<Integer> roles = new ArrayList<Integer>();
|
||||
|
||||
private OrgRoleElementHandler orgHandler = new OrgRoleElementHandler();
|
||||
private ProcessAccessElementHandler processHandler = new ProcessAccessElementHandler();
|
||||
private UserRoleElementHandler userHandler = new UserRoleElementHandler();
|
||||
private WindowAccessElementHandler windowHandler = new WindowAccessElementHandler();
|
||||
private FormAccessElementHandler formHandler = new FormAccessElementHandler();
|
||||
private TaskAccessElementHandler taskHandler = new TaskAccessElementHandler();
|
||||
private WorkflowAccessElementHandler workflowHandler = new WorkflowAccessElementHandler();
|
||||
|
||||
public void startElement(Properties ctx, Element element)
|
||||
throws SAXException {
|
||||
String elementValue = element.getElementValue();
|
||||
Attributes atts = element.attributes;
|
||||
log.info(elementValue + " " + atts.getValue("Name"));
|
||||
|
||||
String name = atts.getValue("Name");
|
||||
|
||||
int id = get_ID(ctx, "AD_Role", name);
|
||||
MRole m_Role = new MRole(ctx, id, getTrxName(ctx));
|
||||
|
||||
int AD_Backup_ID = -1;
|
||||
String Object_Status = null;
|
||||
if (id > 0) {
|
||||
AD_Backup_ID = copyRecord(ctx, "AD_Role", m_Role);
|
||||
Object_Status = "Update";
|
||||
} else {
|
||||
Object_Status = "New";
|
||||
AD_Backup_ID = 0;
|
||||
}
|
||||
|
||||
m_Role.setName(name);
|
||||
name = atts.getValue("treemenuname");
|
||||
if (name != null && name.trim().length() > 0) {
|
||||
id = get_IDWithColumn(ctx, "AD_Tree", "Name", name);
|
||||
if (id <= 0) {
|
||||
element.defer = true;
|
||||
return;
|
||||
}
|
||||
m_Role.setAD_Tree_Menu_ID(id);
|
||||
}
|
||||
|
||||
name = atts.getValue("treeorgname");
|
||||
if (name != null && name.trim().length() > 0) {
|
||||
id = get_IDWithColumn(ctx, "AD_Tree", "Name", name);
|
||||
if (id <= 0) {
|
||||
element.defer = true;
|
||||
return;
|
||||
}
|
||||
m_Role.setAD_Tree_Org_ID(id);
|
||||
}
|
||||
|
||||
name = atts.getValue("currencycode");
|
||||
if (name != null && name.trim().length() > 0) {
|
||||
id = get_IDWithColumn(ctx, "C_Currency", "ISO_Code", name);
|
||||
if (id <= 0) {
|
||||
element.defer = true;
|
||||
return;
|
||||
}
|
||||
m_Role.setC_Currency_ID(id);
|
||||
}
|
||||
|
||||
name = atts.getValue("supervisorid");
|
||||
if (name != null && name.trim().length() > 0) {
|
||||
id = get_IDWithColumn(ctx, "AD_User", "Name", name);
|
||||
if (id <= 0) {
|
||||
element.defer = true;
|
||||
return;
|
||||
}
|
||||
m_Role.setC_Currency_ID(id);
|
||||
}
|
||||
|
||||
m_Role.setDescription(getStringValue(atts,"Description"));
|
||||
String amtApproval = getStringValue(atts,"AmtApproval");
|
||||
if (amtApproval != null)
|
||||
m_Role.setAmtApproval(new BigDecimal(amtApproval));
|
||||
m_Role.setIsActive(atts.getValue("isActive") != null ? Boolean.valueOf(
|
||||
atts.getValue("isActive")).booleanValue() : true);
|
||||
m_Role
|
||||
.setIsAccessAllOrgs(atts.getValue("isAccessAllOrgs") != null ? Boolean
|
||||
.valueOf(atts.getValue("isAccessAllOrgs"))
|
||||
.booleanValue()
|
||||
: true);
|
||||
m_Role
|
||||
.setIsCanApproveOwnDoc(atts.getValue("isCanApproveOwnDoc") != null ? Boolean
|
||||
.valueOf(atts.getValue("isCanApproveOwnDoc"))
|
||||
.booleanValue()
|
||||
: true);
|
||||
m_Role.setIsCanExport(atts.getValue("isCanExport") != null ? Boolean
|
||||
.valueOf(atts.getValue("isCanExport")).booleanValue() : true);
|
||||
m_Role.setIsCanReport(atts.getValue("isCanReport") != null ? Boolean
|
||||
.valueOf(atts.getValue("isCanReport")).booleanValue() : true);
|
||||
m_Role.setIsChangeLog(atts.getValue("isChangeLog") != null ? Boolean
|
||||
.valueOf(atts.getValue("isChangeLog")).booleanValue() : true);
|
||||
m_Role.setIsManual(atts.getValue("isManual") != null ? Boolean.valueOf(
|
||||
atts.getValue("isManual")).booleanValue() : true);
|
||||
m_Role
|
||||
.setIsPersonalAccess(atts.getValue("isPersonalAccess") != null ? Boolean
|
||||
.valueOf(atts.getValue("isPersonalAccess"))
|
||||
.booleanValue()
|
||||
: true);
|
||||
m_Role
|
||||
.setIsPersonalLock(atts.getValue("isPersonalLock") != null ? Boolean
|
||||
.valueOf(atts.getValue("isPersonalLock"))
|
||||
.booleanValue()
|
||||
: true);
|
||||
m_Role.setIsShowAcct(atts.getValue("isShowAcct") != null ? Boolean
|
||||
.valueOf(atts.getValue("isShowAcct")).booleanValue() : true);
|
||||
m_Role
|
||||
.setIsUseUserOrgAccess(atts.getValue("isUseUserOrgAccess") != null ? Boolean
|
||||
.valueOf(atts.getValue("isUseUserOrgAccess"))
|
||||
.booleanValue()
|
||||
: true);
|
||||
m_Role
|
||||
.setOverwritePriceLimit(atts.getValue("isOverwritePriceLimit") != null ? Boolean
|
||||
.valueOf(atts.getValue("isOverwritePriceLimit"))
|
||||
.booleanValue()
|
||||
: true);
|
||||
m_Role.setPreferenceType(atts.getValue("PreferenceType"));
|
||||
m_Role.setUserLevel(atts.getValue("UserLevel"));
|
||||
m_Role.setAllow_Info_Account(Boolean.valueOf(atts.getValue("AllowInfoAccount")));
|
||||
m_Role.setAllow_Info_Asset(Boolean.valueOf(atts.getValue("AllowInfoAsset")));
|
||||
m_Role.setAllow_Info_BPartner(Boolean.valueOf(atts.getValue("AllowInfoBPartner")));
|
||||
m_Role.setAllow_Info_CashJournal(Boolean.valueOf(atts.getValue("AllowInfoCashJournal")));
|
||||
m_Role.setAllow_Info_InOut(Boolean.valueOf(atts.getValue("AllowInfoInOut")));
|
||||
m_Role.setAllow_Info_Invoice(Boolean.valueOf(atts.getValue("AllowInfoInvoice")));
|
||||
m_Role.setAllow_Info_Order(Boolean.valueOf(atts.getValue("AllowInfoOrder")));
|
||||
m_Role.setAllow_Info_Payment(Boolean.valueOf(atts.getValue("AllowInfoPayment")));
|
||||
m_Role.setAllow_Info_Product(Boolean.valueOf(atts.getValue("AllowInfoProduct")));
|
||||
m_Role.setAllow_Info_Resource(Boolean.valueOf(atts.getValue("AllowInfoResource")));
|
||||
m_Role.setAllow_Info_Schedule(Boolean.valueOf(atts.getValue("AllowInfoSchedule")));
|
||||
m_Role.setAllow_Info_Schedule(Boolean.valueOf(atts.getValue("AllowInfoCRP")));
|
||||
m_Role.setAllow_Info_Schedule(Boolean.valueOf(atts.getValue("AllowInfoMRP")));
|
||||
|
||||
|
||||
if (m_Role.save(getTrxName(ctx)) == true) {
|
||||
|
||||
record_log(ctx, 1, m_Role.getName(), "Role", m_Role.get_ID(),
|
||||
AD_Backup_ID, Object_Status, "AD_Role", get_IDWithColumn(
|
||||
ctx, "AD_Table", "TableName", "AD_Role"));
|
||||
} else {
|
||||
|
||||
record_log(ctx, 0, m_Role.getName(), "Role", m_Role.get_ID(),
|
||||
AD_Backup_ID, Object_Status, "AD_Role", get_IDWithColumn(
|
||||
ctx, "AD_Table", "TableName", "AD_Role"));
|
||||
throw new POSaveFailedException("Role");
|
||||
}
|
||||
}
|
||||
|
||||
public void endElement(Properties ctx, Element element) throws SAXException {
|
||||
}
|
||||
|
||||
public void create(Properties ctx, TransformerHandler document)
|
||||
throws SAXException {
|
||||
int Role_id = Env.getContextAsInt(ctx,
|
||||
X_AD_Package_Exp_Detail.COLUMNNAME_AD_Role_ID);
|
||||
if (roles.contains(Role_id))
|
||||
return;
|
||||
roles.add(Role_id);
|
||||
X_AD_Role m_Role = new X_AD_Role(ctx, Role_id, null);
|
||||
AttributesImpl atts = new AttributesImpl();
|
||||
createRoleBinding(atts, m_Role);
|
||||
document.startElement("", "", "role", atts);
|
||||
|
||||
// Process org access
|
||||
String sql = "SELECT * FROM AD_Role_OrgAccess WHERE AD_Role_ID= "
|
||||
+ Role_id;
|
||||
PreparedStatement pstmt = null;
|
||||
pstmt = DB.prepareStatement(sql, getTrxName(ctx));
|
||||
try {
|
||||
ResultSet rs = pstmt.executeQuery();
|
||||
while (rs.next()) {
|
||||
createOrgAccess(ctx, document, rs.getInt("AD_Org_ID"), rs
|
||||
.getInt("AD_Role_ID"));
|
||||
}
|
||||
rs.close();
|
||||
pstmt.close();
|
||||
pstmt = null;
|
||||
}
|
||||
|
||||
catch (Exception e) {
|
||||
log.log(Level.SEVERE, "AD_Role_OrgAccess", e);
|
||||
throw new DatabaseAccessException("Failed to export organization role access.");
|
||||
}
|
||||
// Process user assignment access
|
||||
sql = "SELECT * FROM AD_User_Roles WHERE AD_Role_ID= " + Role_id;
|
||||
pstmt = null;
|
||||
pstmt = DB.prepareStatement(sql, getTrxName(ctx));
|
||||
try {
|
||||
ResultSet rs = pstmt.executeQuery();
|
||||
while (rs.next()) {
|
||||
createUserRole(ctx, document, rs.getInt("AD_User_ID"),
|
||||
rs.getInt("AD_Role_ID"), rs.getInt("AD_Org_ID"));
|
||||
}
|
||||
rs.close();
|
||||
pstmt.close();
|
||||
pstmt = null;
|
||||
}
|
||||
|
||||
catch (Exception e) {
|
||||
log.log(Level.SEVERE, "AD_User_Roles", e);
|
||||
throw new DatabaseAccessException("Failed to export user role assignment.");
|
||||
}
|
||||
|
||||
// Process AD_Window_Access Values
|
||||
sql = "SELECT * FROM AD_Window_Access WHERE AD_Role_ID= " + Role_id;
|
||||
pstmt = null;
|
||||
pstmt = DB.prepareStatement(sql, getTrxName(ctx));
|
||||
try {
|
||||
ResultSet rs = pstmt.executeQuery();
|
||||
while (rs.next()) {
|
||||
createWindowAccess(ctx, document, rs
|
||||
.getInt("AD_Window_ID"), rs.getInt("AD_Role_ID"));
|
||||
}
|
||||
rs.close();
|
||||
pstmt.close();
|
||||
pstmt = null;
|
||||
}
|
||||
|
||||
catch (Exception e) {
|
||||
log.log(Level.SEVERE, "AD_Window_Access", e);
|
||||
throw new DatabaseAccessException("Failed to export window access.");
|
||||
}
|
||||
|
||||
// Process AD_Process_Access Values
|
||||
sql = "SELECT * FROM AD_Process_Access WHERE AD_Role_ID= " + Role_id;
|
||||
pstmt = null;
|
||||
pstmt = DB.prepareStatement(sql, getTrxName(ctx));
|
||||
try {
|
||||
ResultSet rs = pstmt.executeQuery();
|
||||
while (rs.next()) {
|
||||
createProcessAccess(ctx, document, rs
|
||||
.getInt("AD_Process_ID"), rs.getInt("AD_Role_ID"));
|
||||
}
|
||||
rs.close();
|
||||
pstmt.close();
|
||||
pstmt = null;
|
||||
}
|
||||
|
||||
catch (Exception e) {
|
||||
log.log(Level.SEVERE, "AD_Process_Access", e);
|
||||
throw new DatabaseAccessException("Failed to export process access.");
|
||||
}
|
||||
|
||||
// Process AD_Form_Access Values
|
||||
sql = "SELECT * FROM AD_Form_Access WHERE AD_Role_ID= " + Role_id;
|
||||
pstmt = null;
|
||||
pstmt = DB.prepareStatement(sql, getTrxName(ctx));
|
||||
try {
|
||||
ResultSet rs = pstmt.executeQuery();
|
||||
while (rs.next()) {
|
||||
createFormAccess(ctx, document, rs.getInt("AD_Form_ID"),
|
||||
rs.getInt("AD_Role_ID"));
|
||||
}
|
||||
rs.close();
|
||||
pstmt.close();
|
||||
pstmt = null;
|
||||
}
|
||||
|
||||
catch (Exception e) {
|
||||
log.log(Level.SEVERE, "AD_Form_Access", e);
|
||||
throw new DatabaseAccessException("Failed to export form access.");
|
||||
}
|
||||
|
||||
// Process AD_Workflow_Access Values
|
||||
sql = "SELECT * FROM AD_Workflow_Access WHERE AD_Role_ID= " + Role_id;
|
||||
pstmt = null;
|
||||
pstmt = DB.prepareStatement(sql, getTrxName(ctx));
|
||||
try {
|
||||
ResultSet rs = pstmt.executeQuery();
|
||||
while (rs.next()) {
|
||||
createWorkflowAccess(ctx, document, rs
|
||||
.getInt("AD_Workflow_ID"), rs.getInt("AD_Role_ID"));
|
||||
}
|
||||
rs.close();
|
||||
pstmt.close();
|
||||
pstmt = null;
|
||||
}
|
||||
|
||||
catch (Exception e) {
|
||||
log.log(Level.SEVERE, "AD_Workflow_Access", e);
|
||||
throw new DatabaseAccessException("Failed to export workflow access.");
|
||||
}
|
||||
|
||||
// Process AD_Task_Access Values
|
||||
sql = "SELECT * FROM AD_Task_Access WHERE AD_Role_ID= " + Role_id;
|
||||
pstmt = null;
|
||||
pstmt = DB.prepareStatement(sql, getTrxName(ctx));
|
||||
try {
|
||||
ResultSet rs = pstmt.executeQuery();
|
||||
while (rs.next()) {
|
||||
createTaskAccess(ctx, document, rs.getInt("AD_Task_ID"), rs
|
||||
.getInt("AD_Role_ID"));
|
||||
}
|
||||
rs.close();
|
||||
pstmt.close();
|
||||
pstmt = null;
|
||||
}
|
||||
|
||||
catch (Exception e) {
|
||||
log.log(Level.SEVERE, "AD_Task_Access", e);
|
||||
throw new DatabaseAccessException("Failed to export task access.");
|
||||
} finally {
|
||||
try {
|
||||
if (pstmt != null)
|
||||
pstmt.close();
|
||||
} catch (Exception e) {
|
||||
}
|
||||
pstmt = null;
|
||||
}
|
||||
document.endElement("", "", "role");
|
||||
}
|
||||
|
||||
private void createTaskAccess(Properties ctx, TransformerHandler document,
|
||||
int AD_Task_ID, int AD_Role_ID) throws SAXException {
|
||||
Env.setContext(ctx, X_AD_Task.COLUMNNAME_AD_Task_ID, AD_Task_ID);
|
||||
Env.setContext(ctx, X_AD_Role.COLUMNNAME_AD_Role_ID, AD_Role_ID);
|
||||
taskHandler.create(ctx, document);
|
||||
ctx.remove(X_AD_Task.COLUMNNAME_AD_Task_ID);
|
||||
ctx.remove(X_AD_Role.COLUMNNAME_AD_Role_ID);
|
||||
}
|
||||
|
||||
private void createWorkflowAccess(Properties ctx,
|
||||
TransformerHandler document, int AD_Workflow_ID, int AD_Role_ID) throws SAXException {
|
||||
Env.setContext(ctx, X_AD_Workflow.COLUMNNAME_AD_Workflow_ID, AD_Workflow_ID);
|
||||
Env.setContext(ctx, X_AD_Role.COLUMNNAME_AD_Role_ID, AD_Role_ID);
|
||||
workflowHandler.create(ctx, document);
|
||||
ctx.remove(X_AD_Workflow.COLUMNNAME_AD_Workflow_ID);
|
||||
ctx.remove(X_AD_Role.COLUMNNAME_AD_Role_ID);
|
||||
}
|
||||
|
||||
private void createFormAccess(Properties ctx, TransformerHandler document,
|
||||
int AD_Form_ID, int AD_Role_ID) throws SAXException {
|
||||
Env.setContext(ctx, X_AD_Form.COLUMNNAME_AD_Form_ID, AD_Form_ID);
|
||||
Env.setContext(ctx, X_AD_Role.COLUMNNAME_AD_Role_ID, AD_Role_ID);
|
||||
formHandler.create(ctx, document);
|
||||
ctx.remove(X_AD_Form.COLUMNNAME_AD_Form_ID);
|
||||
ctx.remove(X_AD_Role.COLUMNNAME_AD_Role_ID);
|
||||
}
|
||||
|
||||
private void createProcessAccess(Properties ctx,
|
||||
TransformerHandler document, int AD_Process_ID, int AD_Role_ID) throws SAXException {
|
||||
Env.setContext(ctx, X_AD_Process.COLUMNNAME_AD_Process_ID, AD_Process_ID);
|
||||
Env.setContext(ctx, X_AD_Role.COLUMNNAME_AD_Role_ID, AD_Role_ID);
|
||||
processHandler.create(ctx, document);
|
||||
ctx.remove(X_AD_Process.COLUMNNAME_AD_Process_ID);
|
||||
ctx.remove(X_AD_Role.COLUMNNAME_AD_Role_ID);
|
||||
}
|
||||
|
||||
private void createWindowAccess(Properties ctx,
|
||||
TransformerHandler document, int AD_Window_ID, int AD_Role_ID) throws SAXException {
|
||||
Env.setContext(ctx, X_AD_Window.COLUMNNAME_AD_Window_ID, AD_Window_ID);
|
||||
Env.setContext(ctx, X_AD_Role.COLUMNNAME_AD_Role_ID, AD_Role_ID);
|
||||
windowHandler.create(ctx, document);
|
||||
ctx.remove(X_AD_Window.COLUMNNAME_AD_Window_ID);
|
||||
ctx.remove(X_AD_Role.COLUMNNAME_AD_Role_ID);
|
||||
}
|
||||
|
||||
private void createUserRole(Properties ctx, TransformerHandler document,
|
||||
int AD_User_ID, int AD_Role_ID, int AD_Org_ID) throws SAXException {
|
||||
Env.setContext(ctx, X_AD_User.COLUMNNAME_AD_User_ID, AD_User_ID);
|
||||
Env.setContext(ctx, X_AD_Role.COLUMNNAME_AD_Role_ID, AD_Role_ID);
|
||||
Env.setContext(ctx, "AD_Org_ID", AD_Org_ID);
|
||||
userHandler.create(ctx, document);
|
||||
ctx.remove(X_AD_User.COLUMNNAME_AD_User_ID);
|
||||
ctx.remove(X_AD_Role.COLUMNNAME_AD_Role_ID);
|
||||
ctx.remove("AD_Org_ID");
|
||||
}
|
||||
|
||||
private void createOrgAccess(Properties ctx, TransformerHandler document,
|
||||
int AD_Org_ID, int AD_Role_ID) throws SAXException {
|
||||
Env.setContext(ctx, "AD_Org_ID", AD_Org_ID);
|
||||
Env.setContext(ctx, X_AD_Role.COLUMNNAME_AD_Role_ID, AD_Role_ID);
|
||||
orgHandler.create(ctx, document);
|
||||
ctx.remove("AD_Org_ID");
|
||||
ctx.remove(X_AD_Role.COLUMNNAME_AD_Role_ID);
|
||||
}
|
||||
|
||||
private AttributesImpl createRoleBinding(AttributesImpl atts,
|
||||
X_AD_Role m_Role) {
|
||||
String sql = null;
|
||||
String name = null;
|
||||
atts.clear();
|
||||
|
||||
if (m_Role.getAD_Tree_Menu_ID() > 0) {
|
||||
sql = "SELECT Name FROM AD_Tree WHERE AD_Tree_ID=? AND AD_Tree.TreeType='MM'";
|
||||
name = DB.getSQLValueString(null, sql, m_Role.getAD_Tree_Menu_ID());
|
||||
atts.addAttribute("", "", "treemenuname", "CDATA", name);
|
||||
} else
|
||||
atts.addAttribute("", "", "treemenuname", "CDATA", "");
|
||||
|
||||
if (m_Role.getAD_Tree_Org_ID() > 0) {
|
||||
sql = "SELECT Name FROM AD_Tree WHERE AD_Tree_ID=? AND AD_Tree.TreeType='OO'";
|
||||
name = DB.getSQLValueString(null, sql, m_Role.getAD_Tree_Org_ID());
|
||||
atts.addAttribute("", "", "treeorgname", "CDATA", name);
|
||||
} else
|
||||
atts.addAttribute("", "", "treeorgname", "CDATA", "");
|
||||
|
||||
if (m_Role.getC_Currency_ID() > 0) {
|
||||
sql = "SELECT ISO_Code FROM C_Currency WHERE C_Currency_ID=?";
|
||||
name = DB.getSQLValueString(null, sql, m_Role.getC_Currency_ID());
|
||||
atts.addAttribute("", "", "currencycode", "CDATA", name);
|
||||
} else
|
||||
atts.addAttribute("", "", "currencycode", "CDATA", "");
|
||||
|
||||
if (m_Role.getSupervisor_ID() > 0) {
|
||||
sql = "SELECT Name FROM AD_User WHERE AD_User_ID=?";
|
||||
name = DB.getSQLValueString(null, sql, m_Role.getC_Currency_ID());
|
||||
atts.addAttribute("", "", "supervisorid", "CDATA", name);
|
||||
} else
|
||||
atts.addAttribute("", "", "supervisorid", "CDATA", "");
|
||||
|
||||
atts.addAttribute("", "", "Description", "CDATA", (m_Role
|
||||
.getDescription() != null ? m_Role.getDescription() : ""));
|
||||
atts.addAttribute("", "", "Name", "CDATA",
|
||||
(m_Role.getName() != null ? m_Role.getName() : ""));
|
||||
atts.addAttribute("", "", "AmtApproval", "CDATA", ("" + m_Role
|
||||
.getAmtApproval()));
|
||||
atts.addAttribute("", "", "isAccessAllOrgs", "CDATA", (m_Role
|
||||
.isAccessAllOrgs() == true ? "true" : "false"));
|
||||
atts.addAttribute("", "", "isActive", "CDATA",
|
||||
(m_Role.isActive() == true ? "true" : "false"));
|
||||
atts.addAttribute("", "", "isCanApproveOwnDoc", "CDATA", (m_Role
|
||||
.isCanApproveOwnDoc() == true ? "true" : "false"));
|
||||
atts.addAttribute("", "", "isCanExport", "CDATA",
|
||||
(m_Role.isCanExport() == true ? "true" : "false"));
|
||||
atts.addAttribute("", "", "isCanReport", "CDATA",
|
||||
(m_Role.isCanReport() == true ? "true" : "false"));
|
||||
atts.addAttribute("", "", "isChangeLog", "CDATA",
|
||||
(m_Role.isChangeLog() == true ? "true" : "false"));
|
||||
atts.addAttribute("", "", "isManual", "CDATA",
|
||||
(m_Role.isManual() == true ? "true" : "false"));
|
||||
atts.addAttribute("", "", "isPersonalAccess", "CDATA", (m_Role
|
||||
.isPersonalAccess() == true ? "true" : "false"));
|
||||
atts.addAttribute("", "", "isPersonalLock", "CDATA", (m_Role
|
||||
.isPersonalLock() == true ? "true" : "false"));
|
||||
atts.addAttribute("", "", "isShowAcct", "CDATA",
|
||||
(m_Role.isShowAcct() == true ? "true" : "false"));
|
||||
atts.addAttribute("", "", "isUseUserOrgAccess", "CDATA", (m_Role
|
||||
.isUseUserOrgAccess() == true ? "true" : "false"));
|
||||
atts.addAttribute("", "", "isOverwritePriceLimit", "CDATA", (m_Role
|
||||
.isOverwritePriceLimit() == true ? "true" : "false"));
|
||||
atts
|
||||
.addAttribute("", "", "PreferenceType", "CDATA", (m_Role
|
||||
.getPreferenceType() != null ? m_Role
|
||||
.getPreferenceType() : ""));
|
||||
atts.addAttribute("", "", "UserLevel", "CDATA",
|
||||
(m_Role.getUserLevel() != null ? m_Role.getUserLevel() : ""));
|
||||
|
||||
atts.addAttribute("", "", "AllowInfoAccount", "CDATA", Boolean.toString(m_Role.isAllow_Info_Account()));
|
||||
atts.addAttribute("", "", "AllowInfoAsset", "CDATA", Boolean.toString(m_Role.isAllow_Info_Asset()));
|
||||
atts.addAttribute("", "", "AllowInfoBPartner", "CDATA", Boolean.toString(m_Role.isAllow_Info_BPartner()));
|
||||
atts.addAttribute("", "", "AllowInfoCashJournal", "CDATA", Boolean.toString(m_Role.isAllow_Info_CashJournal()));
|
||||
atts.addAttribute("", "", "AllowInfoInOut", "CDATA", Boolean.toString(m_Role.isAllow_Info_InOut()));
|
||||
atts.addAttribute("", "", "AllowInfoInvoice", "CDATA", Boolean.toString(m_Role.isAllow_Info_Invoice()));
|
||||
atts.addAttribute("", "", "AllowInfoOrder", "CDATA", Boolean.toString(m_Role.isAllow_Info_Order()));
|
||||
atts.addAttribute("", "", "AllowInfoPayment", "CDATA", Boolean.toString(m_Role.isAllow_Info_Payment()));
|
||||
atts.addAttribute("", "", "AllowInfoProduct", "CDATA", Boolean.toString(m_Role.isAllow_Info_Product()));
|
||||
atts.addAttribute("", "", "AllowInfoResource", "CDATA", Boolean.toString(m_Role.isAllow_Info_Resource()));
|
||||
atts.addAttribute("", "", "AllowInfoSchedule", "CDATA", Boolean.toString(m_Role.isAllow_Info_Schedule()));
|
||||
atts.addAttribute("", "", "AllowInfoCRP", "CDATA", Boolean.toString(m_Role.isAllow_Info_CRP()));
|
||||
atts.addAttribute("", "", "AllowInfoMRP", "CDATA", Boolean.toString(m_Role.isAllow_Info_MRP()));
|
||||
|
||||
return atts;
|
||||
}
|
||||
}
|
|
@ -58,11 +58,11 @@ public final class Adempiere
|
|||
/** Main Version String */
|
||||
// Conventions for naming second number is even for stable, and odd for unstable
|
||||
// the releases will have a suffix (b) for beta - (t) for trunk - and (s) for stable
|
||||
static public final String MAIN_VERSION = "Release 3.4.0s";
|
||||
static public final String MAIN_VERSION = "Release 3.5.1a";
|
||||
/** Detail Version as date Used for Client/Server */
|
||||
static public final String DATE_VERSION = "2008-03-26";
|
||||
static public final String DATE_VERSION = "2008-05-29";
|
||||
/** Database Version as date Compared with AD_System */
|
||||
static public final String DB_VERSION = "2008-03-26";
|
||||
static public final String DB_VERSION = "2008-05-29";
|
||||
|
||||
/** Product Name */
|
||||
static public final String NAME = "Adempiere\u00AE";
|
||||
|
|
|
@ -37,7 +37,7 @@ import org.compiere.util.KeyNamePair;
|
|||
|
||||
/** Generated Interface for AD_AccessLog
|
||||
* @author Trifon Trifonov (generated)
|
||||
* @version Release 3.4.0s
|
||||
* @version Release 3.5.1a
|
||||
*/
|
||||
public interface I_AD_AccessLog
|
||||
{
|
||||
|
|
|
@ -37,7 +37,7 @@ import org.compiere.util.KeyNamePair;
|
|||
|
||||
/** Generated Interface for AD_Alert
|
||||
* @author Trifon Trifonov (generated)
|
||||
* @version Release 3.4.0s
|
||||
* @version Release 3.5.1a
|
||||
*/
|
||||
public interface I_AD_Alert
|
||||
{
|
||||
|
|
|
@ -38,7 +38,7 @@ import org.compiere.util.KeyNamePair;
|
|||
|
||||
/** Generated Interface for AD_AlertProcessor
|
||||
* @author Trifon Trifonov (generated)
|
||||
* @version Release 3.4.0s
|
||||
* @version Release 3.5.1a
|
||||
*/
|
||||
public interface I_AD_AlertProcessor
|
||||
{
|
||||
|
|
|
@ -37,7 +37,7 @@ import org.compiere.util.KeyNamePair;
|
|||
|
||||
/** Generated Interface for AD_AlertProcessorLog
|
||||
* @author Trifon Trifonov (generated)
|
||||
* @version Release 3.4.0s
|
||||
* @version Release 3.5.1a
|
||||
*/
|
||||
public interface I_AD_AlertProcessorLog
|
||||
{
|
||||
|
|
|
@ -37,7 +37,7 @@ import org.compiere.util.KeyNamePair;
|
|||
|
||||
/** Generated Interface for AD_AlertRecipient
|
||||
* @author Trifon Trifonov (generated)
|
||||
* @version Release 3.4.0s
|
||||
* @version Release 3.5.1a
|
||||
*/
|
||||
public interface I_AD_AlertRecipient
|
||||
{
|
||||
|
|
|
@ -37,7 +37,7 @@ import org.compiere.util.KeyNamePair;
|
|||
|
||||
/** Generated Interface for AD_AlertRule
|
||||
* @author Trifon Trifonov (generated)
|
||||
* @version Release 3.4.0s
|
||||
* @version Release 3.5.1a
|
||||
*/
|
||||
public interface I_AD_AlertRule
|
||||
{
|
||||
|
|
|
@ -37,7 +37,7 @@ import org.compiere.util.KeyNamePair;
|
|||
|
||||
/** Generated Interface for AD_Archive
|
||||
* @author Trifon Trifonov (generated)
|
||||
* @version Release 3.4.0s
|
||||
* @version Release 3.5.1a
|
||||
*/
|
||||
public interface I_AD_Archive
|
||||
{
|
||||
|
|
|
@ -37,7 +37,7 @@ import org.compiere.util.KeyNamePair;
|
|||
|
||||
/** Generated Interface for AD_Attachment
|
||||
* @author Trifon Trifonov (generated)
|
||||
* @version Release 3.4.0s
|
||||
* @version Release 3.5.1a
|
||||
*/
|
||||
public interface I_AD_Attachment
|
||||
{
|
||||
|
|
|
@ -37,7 +37,7 @@ import org.compiere.util.KeyNamePair;
|
|||
|
||||
/** Generated Interface for AD_AttachmentNote
|
||||
* @author Trifon Trifonov (generated)
|
||||
* @version Release 3.4.0s
|
||||
* @version Release 3.5.1a
|
||||
*/
|
||||
public interface I_AD_AttachmentNote
|
||||
{
|
||||
|
|
|
@ -37,7 +37,7 @@ import org.compiere.util.KeyNamePair;
|
|||
|
||||
/** Generated Interface for AD_Attribute
|
||||
* @author Trifon Trifonov (generated)
|
||||
* @version Release 3.4.0s
|
||||
* @version Release 3.5.1a
|
||||
*/
|
||||
public interface I_AD_Attribute
|
||||
{
|
||||
|
|
|
@ -38,7 +38,7 @@ import org.compiere.util.KeyNamePair;
|
|||
|
||||
/** Generated Interface for AD_Attribute_Value
|
||||
* @author Trifon Trifonov (generated)
|
||||
* @version Release 3.4.0s
|
||||
* @version Release 3.5.1a
|
||||
*/
|
||||
public interface I_AD_Attribute_Value
|
||||
{
|
||||
|
|
|
@ -37,7 +37,7 @@ import org.compiere.util.KeyNamePair;
|
|||
|
||||
/** Generated Interface for AD_ChangeLog
|
||||
* @author Trifon Trifonov (generated)
|
||||
* @version Release 3.4.0s
|
||||
* @version Release 3.5.1a
|
||||
*/
|
||||
public interface I_AD_ChangeLog
|
||||
{
|
||||
|
|
|
@ -1,385 +0,0 @@
|
|||
/**********************************************************************
|
||||
* This file is part of Adempiere ERP Bazaar *
|
||||
* http://www.adempiere.org *
|
||||
* *
|
||||
* Copyright (C) Trifon Trifonov. *
|
||||
* Copyright (C) Contributors *
|
||||
* *
|
||||
* This program 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 2 *
|
||||
* of the License, or (at your option) any later version. *
|
||||
* *
|
||||
* This program 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 this program;
|
||||
if not, write to the Free Software *
|
||||
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, *
|
||||
* MA 02110-1301, USA. *
|
||||
* *
|
||||
* Contributors: *
|
||||
* - Trifon Trifonov (trifonnt@users.sourceforge.net) *
|
||||
* *
|
||||
* Sponsors: *
|
||||
* - Company (http://www.site.com) *
|
||||
**********************************************************************/
|
||||
package org.compiere.model;
|
||||
|
||||
import java.math.BigDecimal;
|
||||
import org.compiere.util.KeyNamePair;
|
||||
|
||||
/** Generated Interface for AD_Client
|
||||
* @author Trifon Trifonov (generated)
|
||||
* @version Release 3.4.0s
|
||||
*/
|
||||
public interface I_AD_Client
|
||||
{
|
||||
|
||||
/** TableName=AD_Client */
|
||||
public static final String Table_Name = "AD_Client";
|
||||
|
||||
/** AD_Table_ID=112 */
|
||||
public static final int Table_ID = MTable.getTable_ID(Table_Name);
|
||||
|
||||
KeyNamePair Model = new KeyNamePair(Table_ID, Table_Name);
|
||||
|
||||
/** AccessLevel = 6 - System - Client
|
||||
*/
|
||||
BigDecimal accessLevel = BigDecimal.valueOf(6);
|
||||
|
||||
/** Load Meta Data */
|
||||
|
||||
/** Column name AD_Language */
|
||||
public static final String COLUMNNAME_AD_Language = "AD_Language";
|
||||
|
||||
/** Set Language.
|
||||
* Language for this entity
|
||||
*/
|
||||
public void setAD_Language (String AD_Language);
|
||||
|
||||
/** Get Language.
|
||||
* Language for this entity
|
||||
*/
|
||||
public String getAD_Language();
|
||||
|
||||
/** Column name AutoArchive */
|
||||
public static final String COLUMNNAME_AutoArchive = "AutoArchive";
|
||||
|
||||
/** Set Auto Archive.
|
||||
* Enable and level of automatic Archive of documents
|
||||
*/
|
||||
public void setAutoArchive (String AutoArchive);
|
||||
|
||||
/** Get Auto Archive.
|
||||
* Enable and level of automatic Archive of documents
|
||||
*/
|
||||
public String getAutoArchive();
|
||||
|
||||
/** Column name Description */
|
||||
public static final String COLUMNNAME_Description = "Description";
|
||||
|
||||
/** Set Description.
|
||||
* Optional short description of the record
|
||||
*/
|
||||
public void setDescription (String Description);
|
||||
|
||||
/** Get Description.
|
||||
* Optional short description of the record
|
||||
*/
|
||||
public String getDescription();
|
||||
|
||||
/** Column name DocumentDir */
|
||||
public static final String COLUMNNAME_DocumentDir = "DocumentDir";
|
||||
|
||||
/** Set Document Directory.
|
||||
* Directory for documents from the application server
|
||||
*/
|
||||
public void setDocumentDir (String DocumentDir);
|
||||
|
||||
/** Get Document Directory.
|
||||
* Directory for documents from the application server
|
||||
*/
|
||||
public String getDocumentDir();
|
||||
|
||||
/** Column name EMailTest */
|
||||
public static final String COLUMNNAME_EMailTest = "EMailTest";
|
||||
|
||||
/** Set EMail Test.
|
||||
* Test EMail
|
||||
*/
|
||||
public void setEMailTest (String EMailTest);
|
||||
|
||||
/** Get EMail Test.
|
||||
* Test EMail
|
||||
*/
|
||||
public String getEMailTest();
|
||||
|
||||
/** Column name IsCostImmediate */
|
||||
public static final String COLUMNNAME_IsCostImmediate = "IsCostImmediate";
|
||||
|
||||
/** Set Cost Immediately.
|
||||
* Update Costs immediately for testing
|
||||
*/
|
||||
public void setIsCostImmediate (boolean IsCostImmediate);
|
||||
|
||||
/** Get Cost Immediately.
|
||||
* Update Costs immediately for testing
|
||||
*/
|
||||
public boolean isCostImmediate();
|
||||
|
||||
/** Column name IsMultiLingualDocument */
|
||||
public static final String COLUMNNAME_IsMultiLingualDocument = "IsMultiLingualDocument";
|
||||
|
||||
/** Set Multi Lingual Documents.
|
||||
* Documents are Multi Lingual
|
||||
*/
|
||||
public void setIsMultiLingualDocument (boolean IsMultiLingualDocument);
|
||||
|
||||
/** Get Multi Lingual Documents.
|
||||
* Documents are Multi Lingual
|
||||
*/
|
||||
public boolean isMultiLingualDocument();
|
||||
|
||||
/** Column name IsPostImmediate */
|
||||
public static final String COLUMNNAME_IsPostImmediate = "IsPostImmediate";
|
||||
|
||||
/** Set Post Immediately.
|
||||
* Post the accounting immediately for testing
|
||||
*/
|
||||
public void setIsPostImmediate (boolean IsPostImmediate);
|
||||
|
||||
/** Get Post Immediately.
|
||||
* Post the accounting immediately for testing
|
||||
*/
|
||||
public boolean isPostImmediate();
|
||||
|
||||
/** Column name IsServerEMail */
|
||||
public static final String COLUMNNAME_IsServerEMail = "IsServerEMail";
|
||||
|
||||
/** Set Server EMail.
|
||||
* Send EMail from Server
|
||||
*/
|
||||
public void setIsServerEMail (boolean IsServerEMail);
|
||||
|
||||
/** Get Server EMail.
|
||||
* Send EMail from Server
|
||||
*/
|
||||
public boolean isServerEMail();
|
||||
|
||||
/** Column name IsSmtpAuthorization */
|
||||
public static final String COLUMNNAME_IsSmtpAuthorization = "IsSmtpAuthorization";
|
||||
|
||||
/** Set SMTP Authentication.
|
||||
* Your mail server requires Authentication
|
||||
*/
|
||||
public void setIsSmtpAuthorization (boolean IsSmtpAuthorization);
|
||||
|
||||
/** Get SMTP Authentication.
|
||||
* Your mail server requires Authentication
|
||||
*/
|
||||
public boolean isSmtpAuthorization();
|
||||
|
||||
/** Column name IsUseASP */
|
||||
public static final String COLUMNNAME_IsUseASP = "IsUseASP";
|
||||
|
||||
/** Set IsUseASP */
|
||||
public void setIsUseASP (boolean IsUseASP);
|
||||
|
||||
/** Get IsUseASP */
|
||||
public boolean isUseASP();
|
||||
|
||||
/** Column name IsUseBetaFunctions */
|
||||
public static final String COLUMNNAME_IsUseBetaFunctions = "IsUseBetaFunctions";
|
||||
|
||||
/** Set Use Beta Functions.
|
||||
* Enable the use of Beta Functionality
|
||||
*/
|
||||
public void setIsUseBetaFunctions (boolean IsUseBetaFunctions);
|
||||
|
||||
/** Get Use Beta Functions.
|
||||
* Enable the use of Beta Functionality
|
||||
*/
|
||||
public boolean isUseBetaFunctions();
|
||||
|
||||
/** Column name MMPolicy */
|
||||
public static final String COLUMNNAME_MMPolicy = "MMPolicy";
|
||||
|
||||
/** Set Material Policy.
|
||||
* Material Movement Policy
|
||||
*/
|
||||
public void setMMPolicy (String MMPolicy);
|
||||
|
||||
/** Get Material Policy.
|
||||
* Material Movement Policy
|
||||
*/
|
||||
public String getMMPolicy();
|
||||
|
||||
/** Column name ModelValidationClasses */
|
||||
public static final String COLUMNNAME_ModelValidationClasses = "ModelValidationClasses";
|
||||
|
||||
/** Set Model Validation Classes.
|
||||
* List of data model validation classes separated by ;
|
||||
|
||||
*/
|
||||
public void setModelValidationClasses (String ModelValidationClasses);
|
||||
|
||||
/** Get Model Validation Classes.
|
||||
* List of data model validation classes separated by ;
|
||||
|
||||
*/
|
||||
public String getModelValidationClasses();
|
||||
|
||||
/** Column name Name */
|
||||
public static final String COLUMNNAME_Name = "Name";
|
||||
|
||||
/** Set Name.
|
||||
* Alphanumeric identifier of the entity
|
||||
*/
|
||||
public void setName (String Name);
|
||||
|
||||
/** Get Name.
|
||||
* Alphanumeric identifier of the entity
|
||||
*/
|
||||
public String getName();
|
||||
|
||||
/** Column name RequestEMail */
|
||||
public static final String COLUMNNAME_RequestEMail = "RequestEMail";
|
||||
|
||||
/** Set Request EMail.
|
||||
* EMail address to send automated mails from or receive mails for automated processing (fully qualified)
|
||||
*/
|
||||
public void setRequestEMail (String RequestEMail);
|
||||
|
||||
/** Get Request EMail.
|
||||
* EMail address to send automated mails from or receive mails for automated processing (fully qualified)
|
||||
*/
|
||||
public String getRequestEMail();
|
||||
|
||||
/** Column name RequestFolder */
|
||||
public static final String COLUMNNAME_RequestFolder = "RequestFolder";
|
||||
|
||||
/** Set Request Folder.
|
||||
* EMail folder to process incoming emails;
|
||||
if empty INBOX is used
|
||||
*/
|
||||
public void setRequestFolder (String RequestFolder);
|
||||
|
||||
/** Get Request Folder.
|
||||
* EMail folder to process incoming emails;
|
||||
if empty INBOX is used
|
||||
*/
|
||||
public String getRequestFolder();
|
||||
|
||||
/** Column name RequestUser */
|
||||
public static final String COLUMNNAME_RequestUser = "RequestUser";
|
||||
|
||||
/** Set Request User.
|
||||
* User Name (ID) of the email owner
|
||||
*/
|
||||
public void setRequestUser (String RequestUser);
|
||||
|
||||
/** Get Request User.
|
||||
* User Name (ID) of the email owner
|
||||
*/
|
||||
public String getRequestUser();
|
||||
|
||||
/** Column name RequestUserPW */
|
||||
public static final String COLUMNNAME_RequestUserPW = "RequestUserPW";
|
||||
|
||||
/** Set Request User Password.
|
||||
* Password of the user name (ID) for mail processing
|
||||
*/
|
||||
public void setRequestUserPW (String RequestUserPW);
|
||||
|
||||
/** Get Request User Password.
|
||||
* Password of the user name (ID) for mail processing
|
||||
*/
|
||||
public String getRequestUserPW();
|
||||
|
||||
/** Column name SMTPHost */
|
||||
public static final String COLUMNNAME_SMTPHost = "SMTPHost";
|
||||
|
||||
/** Set Mail Host.
|
||||
* Hostname of Mail Server for SMTP and IMAP
|
||||
*/
|
||||
public void setSMTPHost (String SMTPHost);
|
||||
|
||||
/** Get Mail Host.
|
||||
* Hostname of Mail Server for SMTP and IMAP
|
||||
*/
|
||||
public String getSMTPHost();
|
||||
|
||||
/** Column name StoreArchiveOnFileSystem */
|
||||
public static final String COLUMNNAME_StoreArchiveOnFileSystem = "StoreArchiveOnFileSystem";
|
||||
|
||||
/** Set Store Archive On File System */
|
||||
public void setStoreArchiveOnFileSystem (boolean StoreArchiveOnFileSystem);
|
||||
|
||||
/** Get Store Archive On File System */
|
||||
public boolean isStoreArchiveOnFileSystem();
|
||||
|
||||
/** Column name StoreAttachmentsOnFileSystem */
|
||||
public static final String COLUMNNAME_StoreAttachmentsOnFileSystem = "StoreAttachmentsOnFileSystem";
|
||||
|
||||
/** Set Store Attachments On File System */
|
||||
public void setStoreAttachmentsOnFileSystem (boolean StoreAttachmentsOnFileSystem);
|
||||
|
||||
/** Get Store Attachments On File System */
|
||||
public boolean isStoreAttachmentsOnFileSystem();
|
||||
|
||||
/** Column name UnixArchivePath */
|
||||
public static final String COLUMNNAME_UnixArchivePath = "UnixArchivePath";
|
||||
|
||||
/** Set Unix Archive Path */
|
||||
public void setUnixArchivePath (String UnixArchivePath);
|
||||
|
||||
/** Get Unix Archive Path */
|
||||
public String getUnixArchivePath();
|
||||
|
||||
/** Column name UnixAttachmentPath */
|
||||
public static final String COLUMNNAME_UnixAttachmentPath = "UnixAttachmentPath";
|
||||
|
||||
/** Set Unix Attachment Path */
|
||||
public void setUnixAttachmentPath (String UnixAttachmentPath);
|
||||
|
||||
/** Get Unix Attachment Path */
|
||||
public String getUnixAttachmentPath();
|
||||
|
||||
/** Column name Value */
|
||||
public static final String COLUMNNAME_Value = "Value";
|
||||
|
||||
/** Set Search Key.
|
||||
* Search key for the record in the format required - must be unique
|
||||
*/
|
||||
public void setValue (String Value);
|
||||
|
||||
/** Get Search Key.
|
||||
* Search key for the record in the format required - must be unique
|
||||
*/
|
||||
public String getValue();
|
||||
|
||||
/** Column name WindowsArchivePath */
|
||||
public static final String COLUMNNAME_WindowsArchivePath = "WindowsArchivePath";
|
||||
|
||||
/** Set Windows Archive Path */
|
||||
public void setWindowsArchivePath (String WindowsArchivePath);
|
||||
|
||||
/** Get Windows Archive Path */
|
||||
public String getWindowsArchivePath();
|
||||
|
||||
/** Column name WindowsAttachmentPath */
|
||||
public static final String COLUMNNAME_WindowsAttachmentPath = "WindowsAttachmentPath";
|
||||
|
||||
/** Set Windows Attachment Path */
|
||||
public void setWindowsAttachmentPath (String WindowsAttachmentPath);
|
||||
|
||||
/** Get Windows Attachment Path */
|
||||
public String getWindowsAttachmentPath();
|
||||
}
|
|
@ -37,7 +37,7 @@ import org.compiere.util.KeyNamePair;
|
|||
|
||||
/** Generated Interface for AD_ClientInfo
|
||||
* @author Trifon Trifonov (generated)
|
||||
* @version Release 3.4.0s
|
||||
* @version Release 3.5.1a
|
||||
*/
|
||||
public interface I_AD_ClientInfo
|
||||
{
|
||||
|
|
|
@ -37,7 +37,7 @@ import org.compiere.util.KeyNamePair;
|
|||
|
||||
/** Generated Interface for AD_ClientShare
|
||||
* @author Trifon Trifonov (generated)
|
||||
* @version Release 3.4.0s
|
||||
* @version Release 3.5.1a
|
||||
*/
|
||||
public interface I_AD_ClientShare
|
||||
{
|
||||
|
|
|
@ -37,7 +37,7 @@ import org.compiere.util.KeyNamePair;
|
|||
|
||||
/** Generated Interface for AD_Color
|
||||
* @author Trifon Trifonov (generated)
|
||||
* @version Release 3.4.0s
|
||||
* @version Release 3.5.1a
|
||||
*/
|
||||
public interface I_AD_Color
|
||||
{
|
||||
|
|
|
@ -37,7 +37,7 @@ import org.compiere.util.KeyNamePair;
|
|||
|
||||
/** Generated Interface for AD_Column
|
||||
* @author Trifon Trifonov (generated)
|
||||
* @version Release 3.4.0s
|
||||
* @version Release 3.5.1a
|
||||
*/
|
||||
public interface I_AD_Column
|
||||
{
|
||||
|
|
|
@ -37,7 +37,7 @@ import org.compiere.util.KeyNamePair;
|
|||
|
||||
/** Generated Interface for AD_Column_Access
|
||||
* @author Trifon Trifonov (generated)
|
||||
* @version Release 3.4.0s
|
||||
* @version Release 3.5.1a
|
||||
*/
|
||||
public interface I_AD_Column_Access
|
||||
{
|
||||
|
|
|
@ -37,7 +37,7 @@ import org.compiere.util.KeyNamePair;
|
|||
|
||||
/** Generated Interface for AD_Desktop
|
||||
* @author Trifon Trifonov (generated)
|
||||
* @version Release 3.4.0s
|
||||
* @version Release 3.5.1a
|
||||
*/
|
||||
public interface I_AD_Desktop
|
||||
{
|
||||
|
|
|
@ -37,7 +37,7 @@ import org.compiere.util.KeyNamePair;
|
|||
|
||||
/** Generated Interface for AD_DesktopWorkbench
|
||||
* @author Trifon Trifonov (generated)
|
||||
* @version Release 3.4.0s
|
||||
* @version Release 3.5.1a
|
||||
*/
|
||||
public interface I_AD_DesktopWorkbench
|
||||
{
|
||||
|
|
|
@ -37,7 +37,7 @@ import org.compiere.util.KeyNamePair;
|
|||
|
||||
/** Generated Interface for AD_Document_Action_Access
|
||||
* @author Trifon Trifonov (generated)
|
||||
* @version Release 3.4.0s
|
||||
* @version Release 3.5.1a
|
||||
*/
|
||||
public interface I_AD_Document_Action_Access
|
||||
{
|
||||
|
|
|
@ -37,7 +37,7 @@ import org.compiere.util.KeyNamePair;
|
|||
|
||||
/** Generated Interface for AD_Element
|
||||
* @author Trifon Trifonov (generated)
|
||||
* @version Release 3.4.0s
|
||||
* @version Release 3.5.1a
|
||||
*/
|
||||
public interface I_AD_Element
|
||||
{
|
||||
|
|
|
@ -37,7 +37,7 @@ import org.compiere.util.KeyNamePair;
|
|||
|
||||
/** Generated Interface for AD_EntityType
|
||||
* @author Trifon Trifonov (generated)
|
||||
* @version Release 3.4.0s
|
||||
* @version Release 3.5.1a
|
||||
*/
|
||||
public interface I_AD_EntityType
|
||||
{
|
||||
|
|
|
@ -37,7 +37,7 @@ import org.compiere.util.KeyNamePair;
|
|||
|
||||
/** Generated Interface for AD_Error
|
||||
* @author Trifon Trifonov (generated)
|
||||
* @version Release 3.4.0s
|
||||
* @version Release 3.5.1a
|
||||
*/
|
||||
public interface I_AD_Error
|
||||
{
|
||||
|
|
|
@ -37,7 +37,7 @@ import org.compiere.util.KeyNamePair;
|
|||
|
||||
/** Generated Interface for AD_Field
|
||||
* @author Trifon Trifonov (generated)
|
||||
* @version Release 3.4.0s
|
||||
* @version Release 3.5.1a
|
||||
*/
|
||||
public interface I_AD_Field
|
||||
{
|
||||
|
|
|
@ -37,7 +37,7 @@ import org.compiere.util.KeyNamePair;
|
|||
|
||||
/** Generated Interface for AD_FieldGroup
|
||||
* @author Trifon Trifonov (generated)
|
||||
* @version Release 3.4.0s
|
||||
* @version Release 3.5.1a
|
||||
*/
|
||||
public interface I_AD_FieldGroup
|
||||
{
|
||||
|
|
|
@ -37,7 +37,7 @@ import org.compiere.util.KeyNamePair;
|
|||
|
||||
/** Generated Interface for AD_Find
|
||||
* @author Trifon Trifonov (generated)
|
||||
* @version Release 3.4.0s
|
||||
* @version Release 3.5.1a
|
||||
*/
|
||||
public interface I_AD_Find
|
||||
{
|
||||
|
|
|
@ -37,7 +37,7 @@ import org.compiere.util.KeyNamePair;
|
|||
|
||||
/** Generated Interface for AD_Form
|
||||
* @author Trifon Trifonov (generated)
|
||||
* @version Release 3.4.0s
|
||||
* @version Release 3.5.1a
|
||||
*/
|
||||
public interface I_AD_Form
|
||||
{
|
||||
|
|
|
@ -37,7 +37,7 @@ import org.compiere.util.KeyNamePair;
|
|||
|
||||
/** Generated Interface for AD_Form_Access
|
||||
* @author Trifon Trifonov (generated)
|
||||
* @version Release 3.4.0s
|
||||
* @version Release 3.5.1a
|
||||
*/
|
||||
public interface I_AD_Form_Access
|
||||
{
|
||||
|
|
|
@ -37,7 +37,7 @@ import org.compiere.util.KeyNamePair;
|
|||
|
||||
/** Generated Interface for AD_Image
|
||||
* @author Trifon Trifonov (generated)
|
||||
* @version Release 3.4.0s
|
||||
* @version Release 3.5.1a
|
||||
*/
|
||||
public interface I_AD_Image
|
||||
{
|
||||
|
|
|
@ -37,7 +37,7 @@ import org.compiere.util.KeyNamePair;
|
|||
|
||||
/** Generated Interface for AD_ImpFormat
|
||||
* @author Trifon Trifonov (generated)
|
||||
* @version Release 3.4.0s
|
||||
* @version Release 3.5.1a
|
||||
*/
|
||||
public interface I_AD_ImpFormat
|
||||
{
|
||||
|
|
|
@ -37,7 +37,7 @@ import org.compiere.util.KeyNamePair;
|
|||
|
||||
/** Generated Interface for AD_ImpFormat_Row
|
||||
* @author Trifon Trifonov (generated)
|
||||
* @version Release 3.4.0s
|
||||
* @version Release 3.5.1a
|
||||
*/
|
||||
public interface I_AD_ImpFormat_Row
|
||||
{
|
||||
|
|
|
@ -37,7 +37,7 @@ import org.compiere.util.KeyNamePair;
|
|||
|
||||
/** Generated Interface for AD_InfoColumn
|
||||
* @author Trifon Trifonov (generated)
|
||||
* @version Release 3.4.0s
|
||||
* @version Release 3.5.1a
|
||||
*/
|
||||
public interface I_AD_InfoColumn
|
||||
{
|
||||
|
|
|
@ -37,7 +37,7 @@ import org.compiere.util.KeyNamePair;
|
|||
|
||||
/** Generated Interface for AD_InfoWindow
|
||||
* @author Trifon Trifonov (generated)
|
||||
* @version Release 3.4.0s
|
||||
* @version Release 3.5.1a
|
||||
*/
|
||||
public interface I_AD_InfoWindow
|
||||
{
|
||||
|
|
|
@ -37,7 +37,7 @@ import org.compiere.util.KeyNamePair;
|
|||
|
||||
/** Generated Interface for AD_Issue
|
||||
* @author Trifon Trifonov (generated)
|
||||
* @version Release 3.4.0s
|
||||
* @version Release 3.5.1a
|
||||
*/
|
||||
public interface I_AD_Issue
|
||||
{
|
||||
|
|
|
@ -37,7 +37,7 @@ import org.compiere.util.KeyNamePair;
|
|||
|
||||
/** Generated Interface for AD_LabelPrinter
|
||||
* @author Trifon Trifonov (generated)
|
||||
* @version Release 3.4.0s
|
||||
* @version Release 3.5.1a
|
||||
*/
|
||||
public interface I_AD_LabelPrinter
|
||||
{
|
||||
|
|
|
@ -37,7 +37,7 @@ import org.compiere.util.KeyNamePair;
|
|||
|
||||
/** Generated Interface for AD_LabelPrinterFunction
|
||||
* @author Trifon Trifonov (generated)
|
||||
* @version Release 3.4.0s
|
||||
* @version Release 3.5.1a
|
||||
*/
|
||||
public interface I_AD_LabelPrinterFunction
|
||||
{
|
||||
|
|
|
@ -37,7 +37,7 @@ import org.compiere.util.KeyNamePair;
|
|||
|
||||
/** Generated Interface for AD_Language
|
||||
* @author Trifon Trifonov (generated)
|
||||
* @version Release 3.4.0s
|
||||
* @version Release 3.5.1a
|
||||
*/
|
||||
public interface I_AD_Language
|
||||
{
|
||||
|
|
|
@ -37,7 +37,7 @@ import org.compiere.util.KeyNamePair;
|
|||
|
||||
/** Generated Interface for AD_LdapAccess
|
||||
* @author Trifon Trifonov (generated)
|
||||
* @version Release 3.4.0s
|
||||
* @version Release 3.5.1a
|
||||
*/
|
||||
public interface I_AD_LdapAccess
|
||||
{
|
||||
|
|
|
@ -38,7 +38,7 @@ import org.compiere.util.KeyNamePair;
|
|||
|
||||
/** Generated Interface for AD_LdapProcessor
|
||||
* @author Trifon Trifonov (generated)
|
||||
* @version Release 3.4.0s
|
||||
* @version Release 3.5.1a
|
||||
*/
|
||||
public interface I_AD_LdapProcessor
|
||||
{
|
||||
|
|
|
@ -37,7 +37,7 @@ import org.compiere.util.KeyNamePair;
|
|||
|
||||
/** Generated Interface for AD_LdapProcessorLog
|
||||
* @author Trifon Trifonov (generated)
|
||||
* @version Release 3.4.0s
|
||||
* @version Release 3.5.1a
|
||||
*/
|
||||
public interface I_AD_LdapProcessorLog
|
||||
{
|
||||
|
|
|
@ -37,7 +37,7 @@ import org.compiere.util.KeyNamePair;
|
|||
|
||||
/** Generated Interface for AD_Menu
|
||||
* @author Trifon Trifonov (generated)
|
||||
* @version Release 3.4.0s
|
||||
* @version Release 3.5.1a
|
||||
*/
|
||||
public interface I_AD_Menu
|
||||
{
|
||||
|
|
|
@ -37,7 +37,7 @@ import org.compiere.util.KeyNamePair;
|
|||
|
||||
/** Generated Interface for AD_Message
|
||||
* @author Trifon Trifonov (generated)
|
||||
* @version Release 3.4.0s
|
||||
* @version Release 3.5.1a
|
||||
*/
|
||||
public interface I_AD_Message
|
||||
{
|
||||
|
|
|
@ -0,0 +1,211 @@
|
|||
/**********************************************************************
|
||||
* This file is part of Adempiere ERP Bazaar *
|
||||
* http://www.adempiere.org *
|
||||
* *
|
||||
* Copyright (C) Trifon Trifonov. *
|
||||
* Copyright (C) Contributors *
|
||||
* *
|
||||
* This program 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 2 *
|
||||
* of the License, or (at your option) any later version. *
|
||||
* *
|
||||
* This program 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 this program;
|
||||
if not, write to the Free Software *
|
||||
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, *
|
||||
* MA 02110-1301, USA. *
|
||||
* *
|
||||
* Contributors: *
|
||||
* - Trifon Trifonov (trifonnt@users.sourceforge.net) *
|
||||
* *
|
||||
* Sponsors: *
|
||||
* - Company (http://www.site.com) *
|
||||
**********************************************************************/
|
||||
package org.compiere.model;
|
||||
|
||||
import java.math.BigDecimal;
|
||||
import org.compiere.util.KeyNamePair;
|
||||
|
||||
/** Generated Interface for AD_MigrationScript
|
||||
* @author Trifon Trifonov (generated)
|
||||
* @version Release 3.5.1a
|
||||
*/
|
||||
public interface I_AD_MigrationScript
|
||||
{
|
||||
|
||||
/** TableName=AD_MigrationScript */
|
||||
public static final String Table_Name = "AD_MigrationScript";
|
||||
|
||||
/** AD_Table_ID=53064 */
|
||||
public static final int Table_ID = MTable.getTable_ID(Table_Name);
|
||||
|
||||
KeyNamePair Model = new KeyNamePair(Table_ID, Table_Name);
|
||||
|
||||
/** AccessLevel = 4 - System
|
||||
*/
|
||||
BigDecimal accessLevel = BigDecimal.valueOf(4);
|
||||
|
||||
/** Load Meta Data */
|
||||
|
||||
/** Column name AD_MigrationScript_ID */
|
||||
public static final String COLUMNNAME_AD_MigrationScript_ID = "AD_MigrationScript_ID";
|
||||
|
||||
/** Set Migration Script */
|
||||
public void setAD_MigrationScript_ID (int AD_MigrationScript_ID);
|
||||
|
||||
/** Get Migration Script */
|
||||
public int getAD_MigrationScript_ID();
|
||||
|
||||
/** Column name Description */
|
||||
public static final String COLUMNNAME_Description = "Description";
|
||||
|
||||
/** Set Description.
|
||||
* Optional short description of the record
|
||||
*/
|
||||
public void setDescription (String Description);
|
||||
|
||||
/** Get Description.
|
||||
* Optional short description of the record
|
||||
*/
|
||||
public String getDescription();
|
||||
|
||||
/** Column name DeveloperName */
|
||||
public static final String COLUMNNAME_DeveloperName = "DeveloperName";
|
||||
|
||||
/** Set Developer Name */
|
||||
public void setDeveloperName (String DeveloperName);
|
||||
|
||||
/** Get Developer Name */
|
||||
public String getDeveloperName();
|
||||
|
||||
/** Column name FileName */
|
||||
public static final String COLUMNNAME_FileName = "FileName";
|
||||
|
||||
/** Set File Name.
|
||||
* Name of the local file or URL
|
||||
*/
|
||||
public void setFileName (String FileName);
|
||||
|
||||
/** Get File Name.
|
||||
* Name of the local file or URL
|
||||
*/
|
||||
public String getFileName();
|
||||
|
||||
/** Column name Name */
|
||||
public static final String COLUMNNAME_Name = "Name";
|
||||
|
||||
/** Set Name.
|
||||
* Alphanumeric identifier of the entity
|
||||
*/
|
||||
public void setName (String Name);
|
||||
|
||||
/** Get Name.
|
||||
* Alphanumeric identifier of the entity
|
||||
*/
|
||||
public String getName();
|
||||
|
||||
/** Column name ProjectName */
|
||||
public static final String COLUMNNAME_ProjectName = "ProjectName";
|
||||
|
||||
/** Set Project.
|
||||
* Name of the Project
|
||||
*/
|
||||
public void setProjectName (String ProjectName);
|
||||
|
||||
/** Get Project.
|
||||
* Name of the Project
|
||||
*/
|
||||
public String getProjectName();
|
||||
|
||||
/** Column name Reference */
|
||||
public static final String COLUMNNAME_Reference = "Reference";
|
||||
|
||||
/** Set Reference.
|
||||
* Reference for this record
|
||||
*/
|
||||
public void setReference (String Reference);
|
||||
|
||||
/** Get Reference.
|
||||
* Reference for this record
|
||||
*/
|
||||
public String getReference();
|
||||
|
||||
/** Column name ReleaseNo */
|
||||
public static final String COLUMNNAME_ReleaseNo = "ReleaseNo";
|
||||
|
||||
/** Set Release No.
|
||||
* Internal Release Number
|
||||
*/
|
||||
public void setReleaseNo (String ReleaseNo);
|
||||
|
||||
/** Get Release No.
|
||||
* Internal Release Number
|
||||
*/
|
||||
public String getReleaseNo();
|
||||
|
||||
/** Column name Script */
|
||||
public static final String COLUMNNAME_Script = "Script";
|
||||
|
||||
/** Set Script.
|
||||
* Dynamic Java Language Script to calculate result
|
||||
*/
|
||||
public void setScript (byte[] Script);
|
||||
|
||||
/** Get Script.
|
||||
* Dynamic Java Language Script to calculate result
|
||||
*/
|
||||
public byte[] getScript();
|
||||
|
||||
/** Column name ScriptRoll */
|
||||
public static final String COLUMNNAME_ScriptRoll = "ScriptRoll";
|
||||
|
||||
/** Set Roll the Script */
|
||||
public void setScriptRoll (String ScriptRoll);
|
||||
|
||||
/** Get Roll the Script */
|
||||
public String getScriptRoll();
|
||||
|
||||
/** Column name Status */
|
||||
public static final String COLUMNNAME_Status = "Status";
|
||||
|
||||
/** Set Status.
|
||||
* Status of the currently running check
|
||||
*/
|
||||
public void setStatus (String Status);
|
||||
|
||||
/** Get Status.
|
||||
* Status of the currently running check
|
||||
*/
|
||||
public String getStatus();
|
||||
|
||||
/** Column name URL */
|
||||
public static final String COLUMNNAME_URL = "URL";
|
||||
|
||||
/** Set URL.
|
||||
* Full URL address - e.g. http://www.adempiere.org
|
||||
*/
|
||||
public void setURL (String URL);
|
||||
|
||||
/** Get URL.
|
||||
* Full URL address - e.g. http://www.adempiere.org
|
||||
*/
|
||||
public String getURL();
|
||||
|
||||
/** Column name isApply */
|
||||
public static final String COLUMNNAME_isApply = "isApply";
|
||||
|
||||
/** Set Apply Script */
|
||||
public void setisApply (boolean isApply);
|
||||
|
||||
/** Get Apply Script */
|
||||
public boolean isApply();
|
||||
}
|
|
@ -37,7 +37,7 @@ import org.compiere.util.KeyNamePair;
|
|||
|
||||
/** Generated Interface for AD_ModelValidator
|
||||
* @author Trifon Trifonov (generated)
|
||||
* @version Release 3.4.0s
|
||||
* @version Release 3.5.1a
|
||||
*/
|
||||
public interface I_AD_ModelValidator
|
||||
{
|
||||
|
|
|
@ -37,7 +37,7 @@ import org.compiere.util.KeyNamePair;
|
|||
|
||||
/** Generated Interface for AD_Modification
|
||||
* @author Trifon Trifonov (generated)
|
||||
* @version Release 3.4.0s
|
||||
* @version Release 3.5.1a
|
||||
*/
|
||||
public interface I_AD_Modification
|
||||
{
|
||||
|
|
|
@ -37,7 +37,7 @@ import org.compiere.util.KeyNamePair;
|
|||
|
||||
/** Generated Interface for AD_Note
|
||||
* @author Trifon Trifonov (generated)
|
||||
* @version Release 3.4.0s
|
||||
* @version Release 3.5.1a
|
||||
*/
|
||||
public interface I_AD_Note
|
||||
{
|
||||
|
|
|
@ -37,7 +37,7 @@ import org.compiere.util.KeyNamePair;
|
|||
|
||||
/** Generated Interface for AD_Org
|
||||
* @author Trifon Trifonov (generated)
|
||||
* @version Release 3.4.0s
|
||||
* @version Release 3.5.1a
|
||||
*/
|
||||
public interface I_AD_Org
|
||||
{
|
||||
|
|
|
@ -37,7 +37,7 @@ import org.compiere.util.KeyNamePair;
|
|||
|
||||
/** Generated Interface for AD_OrgInfo
|
||||
* @author Trifon Trifonov (generated)
|
||||
* @version Release 3.4.0s
|
||||
* @version Release 3.5.1a
|
||||
*/
|
||||
public interface I_AD_OrgInfo
|
||||
{
|
||||
|
|
|
@ -37,7 +37,7 @@ import org.compiere.util.KeyNamePair;
|
|||
|
||||
/** Generated Interface for AD_OrgType
|
||||
* @author Trifon Trifonov (generated)
|
||||
* @version Release 3.4.0s
|
||||
* @version Release 3.5.1a
|
||||
*/
|
||||
public interface I_AD_OrgType
|
||||
{
|
||||
|
|
|
@ -37,7 +37,7 @@ import org.compiere.util.KeyNamePair;
|
|||
|
||||
/** Generated Interface for AD_PInstance
|
||||
* @author Trifon Trifonov (generated)
|
||||
* @version Release 3.4.0s
|
||||
* @version Release 3.5.1a
|
||||
*/
|
||||
public interface I_AD_PInstance
|
||||
{
|
||||
|
|
|
@ -38,7 +38,7 @@ import org.compiere.util.KeyNamePair;
|
|||
|
||||
/** Generated Interface for AD_PInstance_Log
|
||||
* @author Trifon Trifonov (generated)
|
||||
* @version Release 3.4.0s
|
||||
* @version Release 3.5.1a
|
||||
*/
|
||||
public interface I_AD_PInstance_Log
|
||||
{
|
||||
|
|
|
@ -38,7 +38,7 @@ import org.compiere.util.KeyNamePair;
|
|||
|
||||
/** Generated Interface for AD_PInstance_Para
|
||||
* @author Trifon Trifonov (generated)
|
||||
* @version Release 3.4.0s
|
||||
* @version Release 3.5.1a
|
||||
*/
|
||||
public interface I_AD_PInstance_Para
|
||||
{
|
||||
|
|
|
@ -37,7 +37,7 @@ import org.compiere.util.KeyNamePair;
|
|||
|
||||
/** Generated Interface for AD_Package_Exp
|
||||
* @author Trifon Trifonov (generated)
|
||||
* @version Release 3.4.0s
|
||||
* @version Release 3.5.1a
|
||||
*/
|
||||
public interface I_AD_Package_Exp
|
||||
{
|
||||
|
|
|
@ -37,7 +37,7 @@ import org.compiere.util.KeyNamePair;
|
|||
|
||||
/** Generated Interface for AD_Package_Exp_Common
|
||||
* @author Trifon Trifonov (generated)
|
||||
* @version Release 3.4.0s
|
||||
* @version Release 3.5.1a
|
||||
*/
|
||||
public interface I_AD_Package_Exp_Common
|
||||
{
|
||||
|
|
|
@ -37,7 +37,7 @@ import org.compiere.util.KeyNamePair;
|
|||
|
||||
/** Generated Interface for AD_Package_Exp_Detail
|
||||
* @author Trifon Trifonov (generated)
|
||||
* @version Release 3.4.0s
|
||||
* @version Release 3.5.1a
|
||||
*/
|
||||
public interface I_AD_Package_Exp_Detail
|
||||
{
|
||||
|
|
|
@ -37,7 +37,7 @@ import org.compiere.util.KeyNamePair;
|
|||
|
||||
/** Generated Interface for AD_Package_Imp
|
||||
* @author Trifon Trifonov (generated)
|
||||
* @version Release 3.4.0s
|
||||
* @version Release 3.5.1a
|
||||
*/
|
||||
public interface I_AD_Package_Imp
|
||||
{
|
||||
|
|
|
@ -37,7 +37,7 @@ import org.compiere.util.KeyNamePair;
|
|||
|
||||
/** Generated Interface for AD_Package_Imp_Backup
|
||||
* @author Trifon Trifonov (generated)
|
||||
* @version Release 3.4.0s
|
||||
* @version Release 3.5.1a
|
||||
*/
|
||||
public interface I_AD_Package_Imp_Backup
|
||||
{
|
||||
|
|
|
@ -37,7 +37,7 @@ import org.compiere.util.KeyNamePair;
|
|||
|
||||
/** Generated Interface for AD_Package_Imp_Detail
|
||||
* @author Trifon Trifonov (generated)
|
||||
* @version Release 3.4.0s
|
||||
* @version Release 3.5.1a
|
||||
*/
|
||||
public interface I_AD_Package_Imp_Detail
|
||||
{
|
||||
|
|
|
@ -37,7 +37,7 @@ import org.compiere.util.KeyNamePair;
|
|||
|
||||
/** Generated Interface for AD_Package_Imp_Inst
|
||||
* @author Trifon Trifonov (generated)
|
||||
* @version Release 3.4.0s
|
||||
* @version Release 3.5.1a
|
||||
*/
|
||||
public interface I_AD_Package_Imp_Inst
|
||||
{
|
||||
|
|
|
@ -37,7 +37,7 @@ import org.compiere.util.KeyNamePair;
|
|||
|
||||
/** Generated Interface for AD_Package_Imp_Proc
|
||||
* @author Trifon Trifonov (generated)
|
||||
* @version Release 3.4.0s
|
||||
* @version Release 3.5.1a
|
||||
*/
|
||||
public interface I_AD_Package_Imp_Proc
|
||||
{
|
||||
|
|
|
@ -37,7 +37,7 @@ import org.compiere.util.KeyNamePair;
|
|||
|
||||
/** Generated Interface for AD_Preference
|
||||
* @author Trifon Trifonov (generated)
|
||||
* @version Release 3.4.0s
|
||||
* @version Release 3.5.1a
|
||||
*/
|
||||
public interface I_AD_Preference
|
||||
{
|
||||
|
|
|
@ -37,7 +37,7 @@ import org.compiere.util.KeyNamePair;
|
|||
|
||||
/** Generated Interface for AD_PrintColor
|
||||
* @author Trifon Trifonov (generated)
|
||||
* @version Release 3.4.0s
|
||||
* @version Release 3.5.1a
|
||||
*/
|
||||
public interface I_AD_PrintColor
|
||||
{
|
||||
|
|
|
@ -37,7 +37,7 @@ import org.compiere.util.KeyNamePair;
|
|||
|
||||
/** Generated Interface for AD_PrintFont
|
||||
* @author Trifon Trifonov (generated)
|
||||
* @version Release 3.4.0s
|
||||
* @version Release 3.5.1a
|
||||
*/
|
||||
public interface I_AD_PrintFont
|
||||
{
|
||||
|
|
|
@ -37,7 +37,7 @@ import org.compiere.util.KeyNamePair;
|
|||
|
||||
/** Generated Interface for AD_PrintForm
|
||||
* @author Trifon Trifonov (generated)
|
||||
* @version Release 3.4.0s
|
||||
* @version Release 3.5.1a
|
||||
*/
|
||||
public interface I_AD_PrintForm
|
||||
{
|
||||
|
|
|
@ -37,7 +37,7 @@ import org.compiere.util.KeyNamePair;
|
|||
|
||||
/** Generated Interface for AD_PrintFormat
|
||||
* @author Trifon Trifonov (generated)
|
||||
* @version Release 3.4.0s
|
||||
* @version Release 3.5.1a
|
||||
*/
|
||||
public interface I_AD_PrintFormat
|
||||
{
|
||||
|
|
|
@ -37,7 +37,7 @@ import org.compiere.util.KeyNamePair;
|
|||
|
||||
/** Generated Interface for AD_PrintFormatItem
|
||||
* @author Trifon Trifonov (generated)
|
||||
* @version Release 3.4.0s
|
||||
* @version Release 3.5.1a
|
||||
*/
|
||||
public interface I_AD_PrintFormatItem
|
||||
{
|
||||
|
|
|
@ -37,7 +37,7 @@ import org.compiere.util.KeyNamePair;
|
|||
|
||||
/** Generated Interface for AD_PrintGraph
|
||||
* @author Trifon Trifonov (generated)
|
||||
* @version Release 3.4.0s
|
||||
* @version Release 3.5.1a
|
||||
*/
|
||||
public interface I_AD_PrintGraph
|
||||
{
|
||||
|
|
|
@ -37,7 +37,7 @@ import org.compiere.util.KeyNamePair;
|
|||
|
||||
/** Generated Interface for AD_PrintLabel
|
||||
* @author Trifon Trifonov (generated)
|
||||
* @version Release 3.4.0s
|
||||
* @version Release 3.5.1a
|
||||
*/
|
||||
public interface I_AD_PrintLabel
|
||||
{
|
||||
|
|
|
@ -37,7 +37,7 @@ import org.compiere.util.KeyNamePair;
|
|||
|
||||
/** Generated Interface for AD_PrintLabelLine
|
||||
* @author Trifon Trifonov (generated)
|
||||
* @version Release 3.4.0s
|
||||
* @version Release 3.5.1a
|
||||
*/
|
||||
public interface I_AD_PrintLabelLine
|
||||
{
|
||||
|
|
|
@ -37,7 +37,7 @@ import org.compiere.util.KeyNamePair;
|
|||
|
||||
/** Generated Interface for AD_PrintPaper
|
||||
* @author Trifon Trifonov (generated)
|
||||
* @version Release 3.4.0s
|
||||
* @version Release 3.5.1a
|
||||
*/
|
||||
public interface I_AD_PrintPaper
|
||||
{
|
||||
|
|
|
@ -37,7 +37,7 @@ import org.compiere.util.KeyNamePair;
|
|||
|
||||
/** Generated Interface for AD_PrintTableFormat
|
||||
* @author Trifon Trifonov (generated)
|
||||
* @version Release 3.4.0s
|
||||
* @version Release 3.5.1a
|
||||
*/
|
||||
public interface I_AD_PrintTableFormat
|
||||
{
|
||||
|
|
|
@ -37,7 +37,7 @@ import org.compiere.util.KeyNamePair;
|
|||
|
||||
/** Generated Interface for AD_Private_Access
|
||||
* @author Trifon Trifonov (generated)
|
||||
* @version Release 3.4.0s
|
||||
* @version Release 3.5.1a
|
||||
*/
|
||||
public interface I_AD_Private_Access
|
||||
{
|
||||
|
|
|
@ -37,7 +37,7 @@ import org.compiere.util.KeyNamePair;
|
|||
|
||||
/** Generated Interface for AD_Process
|
||||
* @author Trifon Trifonov (generated)
|
||||
* @version Release 3.4.0s
|
||||
* @version Release 3.5.1a
|
||||
*/
|
||||
public interface I_AD_Process
|
||||
{
|
||||
|
|
|
@ -37,7 +37,7 @@ import org.compiere.util.KeyNamePair;
|
|||
|
||||
/** Generated Interface for AD_Process_Access
|
||||
* @author Trifon Trifonov (generated)
|
||||
* @version Release 3.4.0s
|
||||
* @version Release 3.5.1a
|
||||
*/
|
||||
public interface I_AD_Process_Access
|
||||
{
|
||||
|
|
|
@ -37,7 +37,7 @@ import org.compiere.util.KeyNamePair;
|
|||
|
||||
/** Generated Interface for AD_Process_Para
|
||||
* @author Trifon Trifonov (generated)
|
||||
* @version Release 3.4.0s
|
||||
* @version Release 3.5.1a
|
||||
*/
|
||||
public interface I_AD_Process_Para
|
||||
{
|
||||
|
|
|
@ -37,7 +37,7 @@ import org.compiere.util.KeyNamePair;
|
|||
|
||||
/** Generated Interface for AD_Record_Access
|
||||
* @author Trifon Trifonov (generated)
|
||||
* @version Release 3.4.0s
|
||||
* @version Release 3.5.1a
|
||||
*/
|
||||
public interface I_AD_Record_Access
|
||||
{
|
||||
|
|
|
@ -38,7 +38,7 @@ import org.compiere.util.KeyNamePair;
|
|||
|
||||
/** Generated Interface for AD_Ref_List
|
||||
* @author Trifon Trifonov (generated)
|
||||
* @version Release 3.4.0s
|
||||
* @version Release 3.5.1a
|
||||
*/
|
||||
public interface I_AD_Ref_List
|
||||
{
|
||||
|
|
|
@ -37,7 +37,7 @@ import org.compiere.util.KeyNamePair;
|
|||
|
||||
/** Generated Interface for AD_Ref_Table
|
||||
* @author Trifon Trifonov (generated)
|
||||
* @version Release 3.4.0s
|
||||
* @version Release 3.5.1a
|
||||
*/
|
||||
public interface I_AD_Ref_Table
|
||||
{
|
||||
|
|
|
@ -37,7 +37,7 @@ import org.compiere.util.KeyNamePair;
|
|||
|
||||
/** Generated Interface for AD_Reference
|
||||
* @author Trifon Trifonov (generated)
|
||||
* @version Release 3.4.0s
|
||||
* @version Release 3.5.1a
|
||||
*/
|
||||
public interface I_AD_Reference
|
||||
{
|
||||
|
|
|
@ -38,7 +38,7 @@ import org.compiere.util.KeyNamePair;
|
|||
|
||||
/** Generated Interface for AD_Registration
|
||||
* @author Trifon Trifonov (generated)
|
||||
* @version Release 3.4.0s
|
||||
* @version Release 3.5.1a
|
||||
*/
|
||||
public interface I_AD_Registration
|
||||
{
|
||||
|
|
|
@ -38,7 +38,7 @@ import org.compiere.util.KeyNamePair;
|
|||
|
||||
/** Generated Interface for AD_Replication
|
||||
* @author Trifon Trifonov (generated)
|
||||
* @version Release 3.4.0s
|
||||
* @version Release 3.5.1a
|
||||
*/
|
||||
public interface I_AD_Replication
|
||||
{
|
||||
|
|
|
@ -0,0 +1,136 @@
|
|||
/**********************************************************************
|
||||
* This file is part of Adempiere ERP Bazaar *
|
||||
* http://www.adempiere.org *
|
||||
* *
|
||||
* Copyright (C) Trifon Trifonov. *
|
||||
* Copyright (C) Contributors *
|
||||
* *
|
||||
* This program 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 2 *
|
||||
* of the License, or (at your option) any later version. *
|
||||
* *
|
||||
* This program 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 this program;
|
||||
if not, write to the Free Software *
|
||||
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, *
|
||||
* MA 02110-1301, USA. *
|
||||
* *
|
||||
* Contributors: *
|
||||
* - Trifon Trifonov (trifonnt@users.sourceforge.net) *
|
||||
* *
|
||||
* Sponsors: *
|
||||
* - Company (http://www.site.com) *
|
||||
**********************************************************************/
|
||||
package org.compiere.model;
|
||||
|
||||
import java.math.BigDecimal;
|
||||
import org.compiere.util.KeyNamePair;
|
||||
|
||||
/** Generated Interface for AD_ReplicationDocument
|
||||
* @author Trifon Trifonov (generated)
|
||||
* @version Release 3.5.1a
|
||||
*/
|
||||
public interface I_AD_ReplicationDocument
|
||||
{
|
||||
|
||||
/** TableName=AD_ReplicationDocument */
|
||||
public static final String Table_Name = "AD_ReplicationDocument";
|
||||
|
||||
/** AD_Table_ID=53071 */
|
||||
public static final int Table_ID = MTable.getTable_ID(Table_Name);
|
||||
|
||||
KeyNamePair Model = new KeyNamePair(Table_ID, Table_Name);
|
||||
|
||||
/** AccessLevel = 3 - Client - Org
|
||||
*/
|
||||
BigDecimal accessLevel = BigDecimal.valueOf(3);
|
||||
|
||||
/** Load Meta Data */
|
||||
|
||||
/** Column name AD_ReplicationDocument_ID */
|
||||
public static final String COLUMNNAME_AD_ReplicationDocument_ID = "AD_ReplicationDocument_ID";
|
||||
|
||||
/** Set AD_ReplicationDocument_ID */
|
||||
public void setAD_ReplicationDocument_ID (int AD_ReplicationDocument_ID);
|
||||
|
||||
/** Get AD_ReplicationDocument_ID */
|
||||
public int getAD_ReplicationDocument_ID();
|
||||
|
||||
/** Column name AD_ReplicationStrategy_ID */
|
||||
public static final String COLUMNNAME_AD_ReplicationStrategy_ID = "AD_ReplicationStrategy_ID";
|
||||
|
||||
/** Set Replication Strategy.
|
||||
* Data Replication Strategy
|
||||
*/
|
||||
public void setAD_ReplicationStrategy_ID (int AD_ReplicationStrategy_ID);
|
||||
|
||||
/** Get Replication Strategy.
|
||||
* Data Replication Strategy
|
||||
*/
|
||||
public int getAD_ReplicationStrategy_ID();
|
||||
|
||||
/** Column name AD_Table_ID */
|
||||
public static final String COLUMNNAME_AD_Table_ID = "AD_Table_ID";
|
||||
|
||||
/** Set Table.
|
||||
* Database Table information
|
||||
*/
|
||||
public void setAD_Table_ID (int AD_Table_ID);
|
||||
|
||||
/** Get Table.
|
||||
* Database Table information
|
||||
*/
|
||||
public int getAD_Table_ID();
|
||||
|
||||
public I_AD_Table getAD_Table() throws Exception;
|
||||
|
||||
/** Column name C_DocType_ID */
|
||||
public static final String COLUMNNAME_C_DocType_ID = "C_DocType_ID";
|
||||
|
||||
/** Set Document Type.
|
||||
* Document type or rules
|
||||
*/
|
||||
public void setC_DocType_ID (int C_DocType_ID);
|
||||
|
||||
/** Get Document Type.
|
||||
* Document type or rules
|
||||
*/
|
||||
public int getC_DocType_ID();
|
||||
|
||||
public I_C_DocType getC_DocType() throws Exception;
|
||||
|
||||
/** Column name Description */
|
||||
public static final String COLUMNNAME_Description = "Description";
|
||||
|
||||
/** Set Description.
|
||||
* Optional short description of the record
|
||||
*/
|
||||
public void setDescription (String Description);
|
||||
|
||||
/** Get Description.
|
||||
* Optional short description of the record
|
||||
*/
|
||||
public String getDescription();
|
||||
|
||||
/** Column name ReplicationType */
|
||||
public static final String COLUMNNAME_ReplicationType = "ReplicationType";
|
||||
|
||||
/** Set Replication Type.
|
||||
* Type of Data Replication
|
||||
*/
|
||||
public void setReplicationType (String ReplicationType);
|
||||
|
||||
/** Get Replication Type.
|
||||
* Type of Data Replication
|
||||
*/
|
||||
public String getReplicationType();
|
||||
}
|
|
@ -37,7 +37,7 @@ import org.compiere.util.KeyNamePair;
|
|||
|
||||
/** Generated Interface for AD_ReplicationTable
|
||||
* @author Trifon Trifonov (generated)
|
||||
* @version Release 3.4.0s
|
||||
* @version Release 3.5.1a
|
||||
*/
|
||||
public interface I_AD_ReplicationTable
|
||||
{
|
||||
|
|
|
@ -37,7 +37,7 @@ import org.compiere.util.KeyNamePair;
|
|||
|
||||
/** Generated Interface for AD_Replication_Log
|
||||
* @author Trifon Trifonov (generated)
|
||||
* @version Release 3.4.0s
|
||||
* @version Release 3.5.1a
|
||||
*/
|
||||
public interface I_AD_Replication_Log
|
||||
{
|
||||
|
|
|
@ -37,7 +37,7 @@ import org.compiere.util.KeyNamePair;
|
|||
|
||||
/** Generated Interface for AD_Replication_Run
|
||||
* @author Trifon Trifonov (generated)
|
||||
* @version Release 3.4.0s
|
||||
* @version Release 3.5.1a
|
||||
*/
|
||||
public interface I_AD_Replication_Run
|
||||
{
|
||||
|
|
|
@ -37,7 +37,7 @@ import org.compiere.util.KeyNamePair;
|
|||
|
||||
/** Generated Interface for AD_ReportView
|
||||
* @author Trifon Trifonov (generated)
|
||||
* @version Release 3.4.0s
|
||||
* @version Release 3.5.1a
|
||||
*/
|
||||
public interface I_AD_ReportView
|
||||
{
|
||||
|
|
|
@ -37,7 +37,7 @@ import org.compiere.util.KeyNamePair;
|
|||
|
||||
/** Generated Interface for AD_ReportView_Col
|
||||
* @author Trifon Trifonov (generated)
|
||||
* @version Release 3.4.0s
|
||||
* @version Release 3.5.1a
|
||||
*/
|
||||
public interface I_AD_ReportView_Col
|
||||
{
|
||||
|
|
|
@ -1,480 +0,0 @@
|
|||
/**********************************************************************
|
||||
* This file is part of Adempiere ERP Bazaar *
|
||||
* http://www.adempiere.org *
|
||||
* *
|
||||
* Copyright (C) Trifon Trifonov. *
|
||||
* Copyright (C) Contributors *
|
||||
* *
|
||||
* This program 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 2 *
|
||||
* of the License, or (at your option) any later version. *
|
||||
* *
|
||||
* This program 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 this program;
|
||||
if not, write to the Free Software *
|
||||
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, *
|
||||
* MA 02110-1301, USA. *
|
||||
* *
|
||||
* Contributors: *
|
||||
* - Trifon Trifonov (trifonnt@users.sourceforge.net) *
|
||||
* *
|
||||
* Sponsors: *
|
||||
* - Company (http://www.site.com) *
|
||||
**********************************************************************/
|
||||
package org.compiere.model;
|
||||
|
||||
import java.math.BigDecimal;
|
||||
import org.compiere.util.KeyNamePair;
|
||||
|
||||
/** Generated Interface for AD_Role
|
||||
* @author Trifon Trifonov (generated)
|
||||
* @version Release 3.4.0s
|
||||
*/
|
||||
public interface I_AD_Role
|
||||
{
|
||||
|
||||
/** TableName=AD_Role */
|
||||
public static final String Table_Name = "AD_Role";
|
||||
|
||||
/** AD_Table_ID=156 */
|
||||
public static final int Table_ID = MTable.getTable_ID(Table_Name);
|
||||
|
||||
KeyNamePair Model = new KeyNamePair(Table_ID, Table_Name);
|
||||
|
||||
/** AccessLevel = 6 - System - Client
|
||||
*/
|
||||
BigDecimal accessLevel = BigDecimal.valueOf(6);
|
||||
|
||||
/** Load Meta Data */
|
||||
|
||||
/** Column name AD_Role_ID */
|
||||
public static final String COLUMNNAME_AD_Role_ID = "AD_Role_ID";
|
||||
|
||||
/** Set Role.
|
||||
* Responsibility Role
|
||||
*/
|
||||
public void setAD_Role_ID (int AD_Role_ID);
|
||||
|
||||
/** Get Role.
|
||||
* Responsibility Role
|
||||
*/
|
||||
public int getAD_Role_ID();
|
||||
|
||||
/** Column name AD_Tree_Menu_ID */
|
||||
public static final String COLUMNNAME_AD_Tree_Menu_ID = "AD_Tree_Menu_ID";
|
||||
|
||||
/** Set Menu Tree.
|
||||
* Tree of the menu
|
||||
*/
|
||||
public void setAD_Tree_Menu_ID (int AD_Tree_Menu_ID);
|
||||
|
||||
/** Get Menu Tree.
|
||||
* Tree of the menu
|
||||
*/
|
||||
public int getAD_Tree_Menu_ID();
|
||||
|
||||
/** Column name AD_Tree_Org_ID */
|
||||
public static final String COLUMNNAME_AD_Tree_Org_ID = "AD_Tree_Org_ID";
|
||||
|
||||
/** Set Organization Tree.
|
||||
* Tree to determine organizational hierarchy
|
||||
*/
|
||||
public void setAD_Tree_Org_ID (int AD_Tree_Org_ID);
|
||||
|
||||
/** Get Organization Tree.
|
||||
* Tree to determine organizational hierarchy
|
||||
*/
|
||||
public int getAD_Tree_Org_ID();
|
||||
|
||||
/** Column name Allow_Info_Account */
|
||||
public static final String COLUMNNAME_Allow_Info_Account = "Allow_Info_Account";
|
||||
|
||||
/** Set Allow Info Account */
|
||||
public void setAllow_Info_Account (boolean Allow_Info_Account);
|
||||
|
||||
/** Get Allow Info Account */
|
||||
public boolean isAllow_Info_Account();
|
||||
|
||||
/** Column name Allow_Info_Asset */
|
||||
public static final String COLUMNNAME_Allow_Info_Asset = "Allow_Info_Asset";
|
||||
|
||||
/** Set Allow Info Asset */
|
||||
public void setAllow_Info_Asset (boolean Allow_Info_Asset);
|
||||
|
||||
/** Get Allow Info Asset */
|
||||
public boolean isAllow_Info_Asset();
|
||||
|
||||
/** Column name Allow_Info_BPartner */
|
||||
public static final String COLUMNNAME_Allow_Info_BPartner = "Allow_Info_BPartner";
|
||||
|
||||
/** Set Allow Info BPartner */
|
||||
public void setAllow_Info_BPartner (boolean Allow_Info_BPartner);
|
||||
|
||||
/** Get Allow Info BPartner */
|
||||
public boolean isAllow_Info_BPartner();
|
||||
|
||||
/** Column name Allow_Info_CashJournal */
|
||||
public static final String COLUMNNAME_Allow_Info_CashJournal = "Allow_Info_CashJournal";
|
||||
|
||||
/** Set Allow Info CashJournal */
|
||||
public void setAllow_Info_CashJournal (boolean Allow_Info_CashJournal);
|
||||
|
||||
/** Get Allow Info CashJournal */
|
||||
public boolean isAllow_Info_CashJournal();
|
||||
|
||||
/** Column name Allow_Info_InOut */
|
||||
public static final String COLUMNNAME_Allow_Info_InOut = "Allow_Info_InOut";
|
||||
|
||||
/** Set Allow Info InOut */
|
||||
public void setAllow_Info_InOut (boolean Allow_Info_InOut);
|
||||
|
||||
/** Get Allow Info InOut */
|
||||
public boolean isAllow_Info_InOut();
|
||||
|
||||
/** Column name Allow_Info_Invoice */
|
||||
public static final String COLUMNNAME_Allow_Info_Invoice = "Allow_Info_Invoice";
|
||||
|
||||
/** Set Allow Info Invoice */
|
||||
public void setAllow_Info_Invoice (boolean Allow_Info_Invoice);
|
||||
|
||||
/** Get Allow Info Invoice */
|
||||
public boolean isAllow_Info_Invoice();
|
||||
|
||||
/** Column name Allow_Info_Order */
|
||||
public static final String COLUMNNAME_Allow_Info_Order = "Allow_Info_Order";
|
||||
|
||||
/** Set Allow Info Order */
|
||||
public void setAllow_Info_Order (boolean Allow_Info_Order);
|
||||
|
||||
/** Get Allow Info Order */
|
||||
public boolean isAllow_Info_Order();
|
||||
|
||||
/** Column name Allow_Info_Payment */
|
||||
public static final String COLUMNNAME_Allow_Info_Payment = "Allow_Info_Payment";
|
||||
|
||||
/** Set Allow Info Payment */
|
||||
public void setAllow_Info_Payment (boolean Allow_Info_Payment);
|
||||
|
||||
/** Get Allow Info Payment */
|
||||
public boolean isAllow_Info_Payment();
|
||||
|
||||
/** Column name Allow_Info_Product */
|
||||
public static final String COLUMNNAME_Allow_Info_Product = "Allow_Info_Product";
|
||||
|
||||
/** Set Allow Info Product */
|
||||
public void setAllow_Info_Product (boolean Allow_Info_Product);
|
||||
|
||||
/** Get Allow Info Product */
|
||||
public boolean isAllow_Info_Product();
|
||||
|
||||
/** Column name Allow_Info_Resource */
|
||||
public static final String COLUMNNAME_Allow_Info_Resource = "Allow_Info_Resource";
|
||||
|
||||
/** Set Allow Info Resource */
|
||||
public void setAllow_Info_Resource (boolean Allow_Info_Resource);
|
||||
|
||||
/** Get Allow Info Resource */
|
||||
public boolean isAllow_Info_Resource();
|
||||
|
||||
/** Column name Allow_Info_Schedule */
|
||||
public static final String COLUMNNAME_Allow_Info_Schedule = "Allow_Info_Schedule";
|
||||
|
||||
/** Set Allow Info Schedule */
|
||||
public void setAllow_Info_Schedule (boolean Allow_Info_Schedule);
|
||||
|
||||
/** Get Allow Info Schedule */
|
||||
public boolean isAllow_Info_Schedule();
|
||||
|
||||
/** Column name AmtApproval */
|
||||
public static final String COLUMNNAME_AmtApproval = "AmtApproval";
|
||||
|
||||
/** Set Approval Amount.
|
||||
* The approval amount limit for this role
|
||||
*/
|
||||
public void setAmtApproval (BigDecimal AmtApproval);
|
||||
|
||||
/** Get Approval Amount.
|
||||
* The approval amount limit for this role
|
||||
*/
|
||||
public BigDecimal getAmtApproval();
|
||||
|
||||
/** Column name C_Currency_ID */
|
||||
public static final String COLUMNNAME_C_Currency_ID = "C_Currency_ID";
|
||||
|
||||
/** Set Currency.
|
||||
* The Currency for this record
|
||||
*/
|
||||
public void setC_Currency_ID (int C_Currency_ID);
|
||||
|
||||
/** Get Currency.
|
||||
* The Currency for this record
|
||||
*/
|
||||
public int getC_Currency_ID();
|
||||
|
||||
public I_C_Currency getC_Currency() throws Exception;
|
||||
|
||||
/** Column name ConfirmQueryRecords */
|
||||
public static final String COLUMNNAME_ConfirmQueryRecords = "ConfirmQueryRecords";
|
||||
|
||||
/** Set Confirm Query Records.
|
||||
* Require Confirmation if more records will be returned by the query (If not defined 500)
|
||||
*/
|
||||
public void setConfirmQueryRecords (int ConfirmQueryRecords);
|
||||
|
||||
/** Get Confirm Query Records.
|
||||
* Require Confirmation if more records will be returned by the query (If not defined 500)
|
||||
*/
|
||||
public int getConfirmQueryRecords();
|
||||
|
||||
/** Column name ConnectionProfile */
|
||||
public static final String COLUMNNAME_ConnectionProfile = "ConnectionProfile";
|
||||
|
||||
/** Set Connection Profile.
|
||||
* How a Java Client connects to the server(s)
|
||||
*/
|
||||
public void setConnectionProfile (String ConnectionProfile);
|
||||
|
||||
/** Get Connection Profile.
|
||||
* How a Java Client connects to the server(s)
|
||||
*/
|
||||
public String getConnectionProfile();
|
||||
|
||||
/** Column name Description */
|
||||
public static final String COLUMNNAME_Description = "Description";
|
||||
|
||||
/** Set Description.
|
||||
* Optional short description of the record
|
||||
*/
|
||||
public void setDescription (String Description);
|
||||
|
||||
/** Get Description.
|
||||
* Optional short description of the record
|
||||
*/
|
||||
public String getDescription();
|
||||
|
||||
/** Column name IsAccessAllOrgs */
|
||||
public static final String COLUMNNAME_IsAccessAllOrgs = "IsAccessAllOrgs";
|
||||
|
||||
/** Set Access all Orgs.
|
||||
* Access all Organizations (no org access control) of the client
|
||||
*/
|
||||
public void setIsAccessAllOrgs (boolean IsAccessAllOrgs);
|
||||
|
||||
/** Get Access all Orgs.
|
||||
* Access all Organizations (no org access control) of the client
|
||||
*/
|
||||
public boolean isAccessAllOrgs();
|
||||
|
||||
/** Column name IsCanApproveOwnDoc */
|
||||
public static final String COLUMNNAME_IsCanApproveOwnDoc = "IsCanApproveOwnDoc";
|
||||
|
||||
/** Set Approve own Documents.
|
||||
* Users with this role can approve their own documents
|
||||
*/
|
||||
public void setIsCanApproveOwnDoc (boolean IsCanApproveOwnDoc);
|
||||
|
||||
/** Get Approve own Documents.
|
||||
* Users with this role can approve their own documents
|
||||
*/
|
||||
public boolean isCanApproveOwnDoc();
|
||||
|
||||
/** Column name IsCanExport */
|
||||
public static final String COLUMNNAME_IsCanExport = "IsCanExport";
|
||||
|
||||
/** Set Can Export.
|
||||
* Users with this role can export data
|
||||
*/
|
||||
public void setIsCanExport (boolean IsCanExport);
|
||||
|
||||
/** Get Can Export.
|
||||
* Users with this role can export data
|
||||
*/
|
||||
public boolean isCanExport();
|
||||
|
||||
/** Column name IsCanReport */
|
||||
public static final String COLUMNNAME_IsCanReport = "IsCanReport";
|
||||
|
||||
/** Set Can Report.
|
||||
* Users with this role can create reports
|
||||
*/
|
||||
public void setIsCanReport (boolean IsCanReport);
|
||||
|
||||
/** Get Can Report.
|
||||
* Users with this role can create reports
|
||||
*/
|
||||
public boolean isCanReport();
|
||||
|
||||
/** Column name IsChangeLog */
|
||||
public static final String COLUMNNAME_IsChangeLog = "IsChangeLog";
|
||||
|
||||
/** Set Maintain Change Log.
|
||||
* Maintain a log of changes
|
||||
*/
|
||||
public void setIsChangeLog (boolean IsChangeLog);
|
||||
|
||||
/** Get Maintain Change Log.
|
||||
* Maintain a log of changes
|
||||
*/
|
||||
public boolean isChangeLog();
|
||||
|
||||
/** Column name IsManual */
|
||||
public static final String COLUMNNAME_IsManual = "IsManual";
|
||||
|
||||
/** Set Manual.
|
||||
* This is a manual process
|
||||
*/
|
||||
public void setIsManual (boolean IsManual);
|
||||
|
||||
/** Get Manual.
|
||||
* This is a manual process
|
||||
*/
|
||||
public boolean isManual();
|
||||
|
||||
/** Column name IsPersonalAccess */
|
||||
public static final String COLUMNNAME_IsPersonalAccess = "IsPersonalAccess";
|
||||
|
||||
/** Set Personal Access.
|
||||
* Allow access to all personal records
|
||||
*/
|
||||
public void setIsPersonalAccess (boolean IsPersonalAccess);
|
||||
|
||||
/** Get Personal Access.
|
||||
* Allow access to all personal records
|
||||
*/
|
||||
public boolean isPersonalAccess();
|
||||
|
||||
/** Column name IsPersonalLock */
|
||||
public static final String COLUMNNAME_IsPersonalLock = "IsPersonalLock";
|
||||
|
||||
/** Set Personal Lock.
|
||||
* Allow users with role to lock access to personal records
|
||||
*/
|
||||
public void setIsPersonalLock (boolean IsPersonalLock);
|
||||
|
||||
/** Get Personal Lock.
|
||||
* Allow users with role to lock access to personal records
|
||||
*/
|
||||
public boolean isPersonalLock();
|
||||
|
||||
/** Column name IsShowAcct */
|
||||
public static final String COLUMNNAME_IsShowAcct = "IsShowAcct";
|
||||
|
||||
/** Set Show Accounting.
|
||||
* Users with this role can see accounting information
|
||||
*/
|
||||
public void setIsShowAcct (boolean IsShowAcct);
|
||||
|
||||
/** Get Show Accounting.
|
||||
* Users with this role can see accounting information
|
||||
*/
|
||||
public boolean isShowAcct();
|
||||
|
||||
/** Column name IsUseUserOrgAccess */
|
||||
public static final String COLUMNNAME_IsUseUserOrgAccess = "IsUseUserOrgAccess";
|
||||
|
||||
/** Set Use User Org Access.
|
||||
* Use Org Access defined by user instead of Role Org Access
|
||||
*/
|
||||
public void setIsUseUserOrgAccess (boolean IsUseUserOrgAccess);
|
||||
|
||||
/** Get Use User Org Access.
|
||||
* Use Org Access defined by user instead of Role Org Access
|
||||
*/
|
||||
public boolean isUseUserOrgAccess();
|
||||
|
||||
/** Column name MaxQueryRecords */
|
||||
public static final String COLUMNNAME_MaxQueryRecords = "MaxQueryRecords";
|
||||
|
||||
/** Set Max Query Records.
|
||||
* If defined, you cannot query more records as defined - the query criteria needs to be changed to query less records
|
||||
*/
|
||||
public void setMaxQueryRecords (int MaxQueryRecords);
|
||||
|
||||
/** Get Max Query Records.
|
||||
* If defined, you cannot query more records as defined - the query criteria needs to be changed to query less records
|
||||
*/
|
||||
public int getMaxQueryRecords();
|
||||
|
||||
/** Column name Name */
|
||||
public static final String COLUMNNAME_Name = "Name";
|
||||
|
||||
/** Set Name.
|
||||
* Alphanumeric identifier of the entity
|
||||
*/
|
||||
public void setName (String Name);
|
||||
|
||||
/** Get Name.
|
||||
* Alphanumeric identifier of the entity
|
||||
*/
|
||||
public String getName();
|
||||
|
||||
/** Column name OverwritePriceLimit */
|
||||
public static final String COLUMNNAME_OverwritePriceLimit = "OverwritePriceLimit";
|
||||
|
||||
/** Set Overwrite Price Limit.
|
||||
* Overwrite Price Limit if the Price List enforces the Price Limit
|
||||
*/
|
||||
public void setOverwritePriceLimit (boolean OverwritePriceLimit);
|
||||
|
||||
/** Get Overwrite Price Limit.
|
||||
* Overwrite Price Limit if the Price List enforces the Price Limit
|
||||
*/
|
||||
public boolean isOverwritePriceLimit();
|
||||
|
||||
/** Column name PreferenceType */
|
||||
public static final String COLUMNNAME_PreferenceType = "PreferenceType";
|
||||
|
||||
/** Set Preference Level.
|
||||
* Determines what preferences the user can set
|
||||
*/
|
||||
public void setPreferenceType (String PreferenceType);
|
||||
|
||||
/** Get Preference Level.
|
||||
* Determines what preferences the user can set
|
||||
*/
|
||||
public String getPreferenceType();
|
||||
|
||||
/** Column name Supervisor_ID */
|
||||
public static final String COLUMNNAME_Supervisor_ID = "Supervisor_ID";
|
||||
|
||||
/** Set Supervisor.
|
||||
* Supervisor for this user/organization - used for escalation and approval
|
||||
*/
|
||||
public void setSupervisor_ID (int Supervisor_ID);
|
||||
|
||||
/** Get Supervisor.
|
||||
* Supervisor for this user/organization - used for escalation and approval
|
||||
*/
|
||||
public int getSupervisor_ID();
|
||||
|
||||
/** Column name UserDiscount */
|
||||
public static final String COLUMNNAME_UserDiscount = "UserDiscount";
|
||||
|
||||
/** Set UserDiscount */
|
||||
public void setUserDiscount (BigDecimal UserDiscount);
|
||||
|
||||
/** Get UserDiscount */
|
||||
public BigDecimal getUserDiscount();
|
||||
|
||||
/** Column name UserLevel */
|
||||
public static final String COLUMNNAME_UserLevel = "UserLevel";
|
||||
|
||||
/** Set User Level.
|
||||
* System Client Organization
|
||||
*/
|
||||
public void setUserLevel (String UserLevel);
|
||||
|
||||
/** Get User Level.
|
||||
* System Client Organization
|
||||
*/
|
||||
public String getUserLevel();
|
||||
}
|
|
@ -37,7 +37,7 @@ import org.compiere.util.KeyNamePair;
|
|||
|
||||
/** Generated Interface for AD_Role_OrgAccess
|
||||
* @author Trifon Trifonov (generated)
|
||||
* @version Release 3.4.0s
|
||||
* @version Release 3.5.1a
|
||||
*/
|
||||
public interface I_AD_Role_OrgAccess
|
||||
{
|
||||
|
|
|
@ -37,7 +37,7 @@ import org.compiere.util.KeyNamePair;
|
|||
|
||||
/** Generated Interface for AD_Rule
|
||||
* @author Trifon Trifonov (generated)
|
||||
* @version Release 3.4.0s
|
||||
* @version Release 3.5.1a
|
||||
*/
|
||||
public interface I_AD_Rule
|
||||
{
|
||||
|
|
|
@ -38,7 +38,7 @@ import org.compiere.util.KeyNamePair;
|
|||
|
||||
/** Generated Interface for AD_Scheduler
|
||||
* @author Trifon Trifonov (generated)
|
||||
* @version Release 3.4.0s
|
||||
* @version Release 3.5.1a
|
||||
*/
|
||||
public interface I_AD_Scheduler
|
||||
{
|
||||
|
|
|
@ -37,7 +37,7 @@ import org.compiere.util.KeyNamePair;
|
|||
|
||||
/** Generated Interface for AD_SchedulerLog
|
||||
* @author Trifon Trifonov (generated)
|
||||
* @version Release 3.4.0s
|
||||
* @version Release 3.5.1a
|
||||
*/
|
||||
public interface I_AD_SchedulerLog
|
||||
{
|
||||
|
|
|
@ -37,7 +37,7 @@ import org.compiere.util.KeyNamePair;
|
|||
|
||||
/** Generated Interface for AD_SchedulerRecipient
|
||||
* @author Trifon Trifonov (generated)
|
||||
* @version Release 3.4.0s
|
||||
* @version Release 3.5.1a
|
||||
*/
|
||||
public interface I_AD_SchedulerRecipient
|
||||
{
|
||||
|
|
|
@ -37,7 +37,7 @@ import org.compiere.util.KeyNamePair;
|
|||
|
||||
/** Generated Interface for AD_Scheduler_Para
|
||||
* @author Trifon Trifonov (generated)
|
||||
* @version Release 3.4.0s
|
||||
* @version Release 3.5.1a
|
||||
*/
|
||||
public interface I_AD_Scheduler_Para
|
||||
{
|
||||
|
|
|
@ -37,7 +37,7 @@ import org.compiere.util.KeyNamePair;
|
|||
|
||||
/** Generated Interface for AD_Sequence
|
||||
* @author Trifon Trifonov (generated)
|
||||
* @version Release 3.4.0s
|
||||
* @version Release 3.5.1a
|
||||
*/
|
||||
public interface I_AD_Sequence
|
||||
{
|
||||
|
|
|
@ -37,7 +37,7 @@ import org.compiere.util.KeyNamePair;
|
|||
|
||||
/** Generated Interface for AD_Sequence_Audit
|
||||
* @author Trifon Trifonov (generated)
|
||||
* @version Release 3.4.0s
|
||||
* @version Release 3.5.1a
|
||||
*/
|
||||
public interface I_AD_Sequence_Audit
|
||||
{
|
||||
|
|
|
@ -37,7 +37,7 @@ import org.compiere.util.KeyNamePair;
|
|||
|
||||
/** Generated Interface for AD_Sequence_No
|
||||
* @author Trifon Trifonov (generated)
|
||||
* @version Release 3.4.0s
|
||||
* @version Release 3.5.1a
|
||||
*/
|
||||
public interface I_AD_Sequence_No
|
||||
{
|
||||
|
|
Some files were not shown because too many files have changed in this diff Show More
Loading…
Reference in New Issue