IDEMPIERE-5001 add org.adempiere.base.annotation.Process annotation (#924)
* IDEMPIERE-5001 add org.adempiere.base.annotation.Process annotation * IDEMPIERE-5001 add org.adempiere.base.annotation.Process annotation minor refinement * IDEMPIERE-5001 add org.adempiere.base.annotation.Process annotation refine error handling * IDEMPIERE-5001 add org.adempiere.base.annotation.Process annotation refactor to follow closer the AnnotationBasedModelFactory naming convention.
This commit is contained in:
parent
4b923f4d03
commit
4759ae5c2b
|
@ -25,6 +25,11 @@
|
||||||
<arguments>
|
<arguments>
|
||||||
</arguments>
|
</arguments>
|
||||||
</buildCommand>
|
</buildCommand>
|
||||||
|
<buildCommand>
|
||||||
|
<name>org.eclipse.pde.ds.core.builder</name>
|
||||||
|
<arguments>
|
||||||
|
</arguments>
|
||||||
|
</buildCommand>
|
||||||
</buildSpec>
|
</buildSpec>
|
||||||
<natures>
|
<natures>
|
||||||
<nature>org.eclipse.m2e.core.maven2Nature</nature>
|
<nature>org.eclipse.m2e.core.maven2Nature</nature>
|
||||||
|
|
|
@ -13,8 +13,11 @@ Import-Package: javax.mail;version="1.5",
|
||||||
javax.mail.internet;version="1.5",
|
javax.mail.internet;version="1.5",
|
||||||
javax.servlet;version="2.5.0",
|
javax.servlet;version="2.5.0",
|
||||||
javax.servlet.http;version="2.5.0",
|
javax.servlet.http;version="2.5.0",
|
||||||
org.apache.commons.collections.keyvalue;version="3.2.0"
|
org.apache.commons.collections.keyvalue;version="3.2.0",
|
||||||
Eclipse-RegisterBuddy: org.adempiere.base
|
org.osgi.framework;version="1.10.0",
|
||||||
|
org.osgi.service.component.annotations;version="1.3.0"
|
||||||
Bundle-ClassPath: .
|
Bundle-ClassPath: .
|
||||||
Automatic-Module-Name: org.adempiere.base.process
|
Automatic-Module-Name: org.adempiere.base.process
|
||||||
Bundle-Vendor: iDempiere Community
|
Bundle-Vendor: iDempiere Community
|
||||||
|
Bundle-ActivationPolicy: lazy
|
||||||
|
Service-Component: OSGI-INF/org.adempiere.base.process.factory.BaseProcessFactoryImpl.xml
|
||||||
|
|
|
@ -0,0 +1,8 @@
|
||||||
|
<?xml version="1.0" encoding="UTF-8"?>
|
||||||
|
<scr:component xmlns:scr="http://www.osgi.org/xmlns/scr/v1.1.0" immediate="true" name="org.adempiere.base.process.factory.BaseProcessFactoryImpl">
|
||||||
|
<property name="service.ranking" type="Integer" value="0"/>
|
||||||
|
<service>
|
||||||
|
<provide interface="org.adempiere.base.IProcessFactory"/>
|
||||||
|
</service>
|
||||||
|
<implementation class="org.adempiere.base.process.factory.BaseProcessFactoryImpl"/>
|
||||||
|
</scr:component>
|
|
@ -1,4 +1,5 @@
|
||||||
bin.includes = META-INF/,\
|
bin.includes = META-INF/,\
|
||||||
.
|
.,\
|
||||||
|
OSGI-INF/
|
||||||
output.. = target/classes/
|
output.. = target/classes/
|
||||||
source.. = src/
|
source.. = src/
|
||||||
|
|
|
@ -21,6 +21,7 @@ import org.compiere.util.Util;
|
||||||
* @author hengsin
|
* @author hengsin
|
||||||
*
|
*
|
||||||
*/
|
*/
|
||||||
|
@org.adempiere.base.annotation.Process
|
||||||
public class AcceptCtxHelpSuggestion extends SvrProcess {
|
public class AcceptCtxHelpSuggestion extends SvrProcess {
|
||||||
|
|
||||||
private boolean p_isSaveAsTenantCustomization;
|
private boolean p_isSaveAsTenantCustomization;
|
||||||
|
|
|
@ -20,6 +20,7 @@ import org.compiere.util.Util;
|
||||||
* @author hengsin
|
* @author hengsin
|
||||||
*
|
*
|
||||||
*/
|
*/
|
||||||
|
@org.adempiere.base.annotation.Process
|
||||||
public class AcceptFieldSuggestion extends SvrProcess {
|
public class AcceptFieldSuggestion extends SvrProcess {
|
||||||
|
|
||||||
private boolean p_updateBaseLanguage;
|
private boolean p_updateBaseLanguage;
|
||||||
|
|
|
@ -11,6 +11,7 @@ import org.compiere.util.Env;
|
||||||
* @author hengsin
|
* @author hengsin
|
||||||
*
|
*
|
||||||
*/
|
*/
|
||||||
|
@org.adempiere.base.annotation.Process
|
||||||
public class RejectCtxHelpSuggestion extends SvrProcess {
|
public class RejectCtxHelpSuggestion extends SvrProcess {
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
|
|
@ -11,6 +11,7 @@ import org.compiere.util.Env;
|
||||||
* @author hengsin
|
* @author hengsin
|
||||||
*
|
*
|
||||||
*/
|
*/
|
||||||
|
@org.adempiere.base.annotation.Process
|
||||||
public class RejectFieldSuggestion extends SvrProcess {
|
public class RejectFieldSuggestion extends SvrProcess {
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
|
|
@ -0,0 +1,48 @@
|
||||||
|
/***********************************************************************
|
||||||
|
* This file is part of iDempiere ERP Open Source *
|
||||||
|
* http://www.idempiere.org *
|
||||||
|
* *
|
||||||
|
* 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: *
|
||||||
|
* - hengsin *
|
||||||
|
**********************************************************************/
|
||||||
|
package org.adempiere.base.process.factory;
|
||||||
|
|
||||||
|
import org.adempiere.base.AnnotationBasedProcessFactory;
|
||||||
|
import org.adempiere.base.IProcessFactory;
|
||||||
|
import org.osgi.service.component.annotations.Component;
|
||||||
|
|
||||||
|
/**
|
||||||
|
*
|
||||||
|
* @author hengsin
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
@Component(immediate = true, service = IProcessFactory.class, property = {"service.ranking:Integer=0"})
|
||||||
|
public class BaseProcessFactoryImpl extends AnnotationBasedProcessFactory {
|
||||||
|
|
||||||
|
public BaseProcessFactoryImpl() {
|
||||||
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
protected String[] getPackages() {
|
||||||
|
return new String[] {"org.adempiere.base.process", "org.adempiere.process", "org.compiere.install", "org.compiere.process",
|
||||||
|
"org.idempiere.process"};
|
||||||
|
}
|
||||||
|
|
||||||
|
}
|
|
@ -52,6 +52,7 @@ import org.compiere.wf.MWorkflow;
|
||||||
*
|
*
|
||||||
* @author Carlos Ruiz
|
* @author Carlos Ruiz
|
||||||
*/
|
*/
|
||||||
|
@org.adempiere.base.annotation.Process
|
||||||
public class ASPGenerateFields extends SvrProcess
|
public class ASPGenerateFields extends SvrProcess
|
||||||
{
|
{
|
||||||
private String p_ASP_Status;
|
private String p_ASP_Status;
|
||||||
|
|
|
@ -65,6 +65,7 @@ import org.compiere.wf.MWorkflow;
|
||||||
*
|
*
|
||||||
* @author Carlos Ruiz
|
* @author Carlos Ruiz
|
||||||
*/
|
*/
|
||||||
|
@org.adempiere.base.annotation.Process
|
||||||
public class ASPGenerateLevel extends SvrProcess
|
public class ASPGenerateLevel extends SvrProcess
|
||||||
{
|
{
|
||||||
private String p_ASP_Status;
|
private String p_ASP_Status;
|
||||||
|
|
|
@ -42,6 +42,7 @@ import org.compiere.process.SvrProcess;
|
||||||
import org.compiere.util.CLogger;
|
import org.compiere.util.CLogger;
|
||||||
import org.compiere.util.DB;
|
import org.compiere.util.DB;
|
||||||
|
|
||||||
|
@org.adempiere.base.annotation.Process
|
||||||
public class ApplyMigrationScripts extends SvrProcess {
|
public class ApplyMigrationScripts extends SvrProcess {
|
||||||
|
|
||||||
/** Logger */
|
/** Logger */
|
||||||
|
|
|
@ -55,6 +55,7 @@ import org.compiere.util.Trx;
|
||||||
*
|
*
|
||||||
* @author Carlos Ruiz
|
* @author Carlos Ruiz
|
||||||
*/
|
*/
|
||||||
|
@org.adempiere.base.annotation.Process
|
||||||
public class ClientAcctProcessor extends SvrProcess
|
public class ClientAcctProcessor extends SvrProcess
|
||||||
{
|
{
|
||||||
/* The Accounting Schema */
|
/* The Accounting Schema */
|
||||||
|
|
|
@ -60,6 +60,7 @@ import org.compiere.util.Env;
|
||||||
*
|
*
|
||||||
* @author Daniel Tamm
|
* @author Daniel Tamm
|
||||||
*/
|
*/
|
||||||
|
@org.adempiere.base.annotation.Process
|
||||||
public class ExpenseTypesFromAccounts extends SvrProcess {
|
public class ExpenseTypesFromAccounts extends SvrProcess {
|
||||||
|
|
||||||
private int m_clientId;
|
private int m_clientId;
|
||||||
|
|
|
@ -62,6 +62,7 @@ import org.w3c.dom.Text;
|
||||||
* @author Trifon Trifonov
|
* @author Trifon Trifonov
|
||||||
* @version $Id: $
|
* @version $Id: $
|
||||||
*/
|
*/
|
||||||
|
@org.adempiere.base.annotation.Process
|
||||||
public class Export extends SvrProcess
|
public class Export extends SvrProcess
|
||||||
{
|
{
|
||||||
private static final String TOTAL_SEGMENTS = "${totalSegments}";
|
private static final String TOTAL_SEGMENTS = "${totalSegments}";
|
||||||
|
|
|
@ -52,6 +52,7 @@ import org.compiere.util.Msg;
|
||||||
*
|
*
|
||||||
* @author Diego Ruiz - globalqss
|
* @author Diego Ruiz - globalqss
|
||||||
*/
|
*/
|
||||||
|
@org.adempiere.base.annotation.Process
|
||||||
public class HouseKeeping extends SvrProcess{
|
public class HouseKeeping extends SvrProcess{
|
||||||
|
|
||||||
private int p_AD_HouseKeeping_ID = 0;
|
private int p_AD_HouseKeeping_ID = 0;
|
||||||
|
|
|
@ -58,6 +58,7 @@ import org.compiere.util.Env;
|
||||||
* @author Alejandro Falcone
|
* @author Alejandro Falcone
|
||||||
*
|
*
|
||||||
**/
|
**/
|
||||||
|
@org.adempiere.base.annotation.Process
|
||||||
public class ImmediateBankTransfer extends SvrProcess
|
public class ImmediateBankTransfer extends SvrProcess
|
||||||
{
|
{
|
||||||
/** DocAction */
|
/** DocAction */
|
||||||
|
|
|
@ -45,6 +45,7 @@ import org.compiere.util.Env;
|
||||||
*
|
*
|
||||||
* @author Carlos Ruiz
|
* @author Carlos Ruiz
|
||||||
*/
|
*/
|
||||||
|
@org.adempiere.base.annotation.Process
|
||||||
public class ImportPriceList extends SvrProcess
|
public class ImportPriceList extends SvrProcess
|
||||||
{
|
{
|
||||||
/** Client to be imported to */
|
/** Client to be imported to */
|
||||||
|
|
|
@ -46,6 +46,7 @@ import org.compiere.util.Msg;
|
||||||
* <li>BF [ 2818523 ] Invoice and Shipment are not matched in case of RMA
|
* <li>BF [ 2818523 ] Invoice and Shipment are not matched in case of RMA
|
||||||
* https://sourceforge.net/tracker/?func=detail&aid=2818523&group_id=176962&atid=879332
|
* https://sourceforge.net/tracker/?func=detail&aid=2818523&group_id=176962&atid=879332
|
||||||
*/
|
*/
|
||||||
|
@org.adempiere.base.annotation.Process
|
||||||
public class InOutGenerateRMA extends SvrProcess
|
public class InOutGenerateRMA extends SvrProcess
|
||||||
{
|
{
|
||||||
/** Manual Selection */
|
/** Manual Selection */
|
||||||
|
|
|
@ -54,6 +54,7 @@ import org.compiere.util.Util;
|
||||||
* @author Carlos Ruiz
|
* @author Carlos Ruiz
|
||||||
* [ 2598506 ] FR - Implement Initial Client Setup
|
* [ 2598506 ] FR - Implement Initial Client Setup
|
||||||
*/
|
*/
|
||||||
|
@org.adempiere.base.annotation.Process
|
||||||
public class InitialClientSetup extends SvrProcess
|
public class InitialClientSetup extends SvrProcess
|
||||||
{
|
{
|
||||||
|
|
||||||
|
|
|
@ -41,6 +41,7 @@ import org.compiere.util.Msg;
|
||||||
*
|
*
|
||||||
* Based on org.compiere.process.InvoiceGenerate
|
* Based on org.compiere.process.InvoiceGenerate
|
||||||
*/
|
*/
|
||||||
|
@org.adempiere.base.annotation.Process
|
||||||
public class InvoiceGenerateRMA extends SvrProcess
|
public class InvoiceGenerateRMA extends SvrProcess
|
||||||
{
|
{
|
||||||
/** Manual Selection */
|
/** Manual Selection */
|
||||||
|
|
|
@ -45,6 +45,7 @@ import org.compiere.process.SvrProcess;
|
||||||
import org.compiere.util.DB;
|
import org.compiere.util.DB;
|
||||||
import org.compiere.util.Env;
|
import org.compiere.util.Env;
|
||||||
|
|
||||||
|
@org.adempiere.base.annotation.Process
|
||||||
public class PrepareMigrationScripts extends SvrProcess {
|
public class PrepareMigrationScripts extends SvrProcess {
|
||||||
|
|
||||||
String path;
|
String path;
|
||||||
|
|
|
@ -31,6 +31,7 @@ import org.compiere.process.SvrProcess;
|
||||||
* @author Ashley Ramdass
|
* @author Ashley Ramdass
|
||||||
*/
|
*/
|
||||||
|
|
||||||
|
@org.adempiere.base.annotation.Process
|
||||||
public class RMACreateOrder extends SvrProcess
|
public class RMACreateOrder extends SvrProcess
|
||||||
{
|
{
|
||||||
|
|
||||||
|
|
|
@ -10,6 +10,7 @@ import org.compiere.process.ProcessInfoParameter;
|
||||||
import org.compiere.process.SvrProcess;
|
import org.compiere.process.SvrProcess;
|
||||||
import org.compiere.util.DB;
|
import org.compiere.util.DB;
|
||||||
|
|
||||||
|
@org.adempiere.base.annotation.Process
|
||||||
public class UpdateRoleMenu extends SvrProcess
|
public class UpdateRoleMenu extends SvrProcess
|
||||||
{
|
{
|
||||||
private int p_role_id = 0;
|
private int p_role_id = 0;
|
||||||
|
|
|
@ -29,6 +29,7 @@ import org.compiere.process.SvrProcess;
|
||||||
* @author Jorg Janke
|
* @author Jorg Janke
|
||||||
* @version $Id: LanguageMaintenance.java,v 1.3 2006/07/30 00:51:28 jjanke Exp $
|
* @version $Id: LanguageMaintenance.java,v 1.3 2006/07/30 00:51:28 jjanke Exp $
|
||||||
*/
|
*/
|
||||||
|
@org.adempiere.base.annotation.Process
|
||||||
public class LanguageMaintenance extends SvrProcess
|
public class LanguageMaintenance extends SvrProcess
|
||||||
{
|
{
|
||||||
/** The Language ID */
|
/** The Language ID */
|
||||||
|
|
|
@ -27,6 +27,7 @@ import org.compiere.util.DB;
|
||||||
* @author Carlos Ruiz (globalqss)
|
* @author Carlos Ruiz (globalqss)
|
||||||
* @version $Id: AD_PrintPaper_Default.java,v 1.0 2005/09/14 22:29:00 globalqss Exp $
|
* @version $Id: AD_PrintPaper_Default.java,v 1.0 2005/09/14 22:29:00 globalqss Exp $
|
||||||
*/
|
*/
|
||||||
|
@org.adempiere.base.annotation.Process
|
||||||
public class AD_PrintPaper_Default extends SvrProcess
|
public class AD_PrintPaper_Default extends SvrProcess
|
||||||
{
|
{
|
||||||
|
|
||||||
|
|
|
@ -34,6 +34,7 @@ import org.compiere.util.KeyNamePair;
|
||||||
* @author Jorg Janke
|
* @author Jorg Janke
|
||||||
* @version $Id: AcctSchemaCopyAcct.java,v 1.3 2006/07/30 00:51:01 jjanke Exp $
|
* @version $Id: AcctSchemaCopyAcct.java,v 1.3 2006/07/30 00:51:01 jjanke Exp $
|
||||||
*/
|
*/
|
||||||
|
@org.adempiere.base.annotation.Process
|
||||||
public class AcctSchemaCopyAcct extends SvrProcess
|
public class AcctSchemaCopyAcct extends SvrProcess
|
||||||
{
|
{
|
||||||
private int p_SourceAcctSchema_ID = 0;
|
private int p_SourceAcctSchema_ID = 0;
|
||||||
|
|
|
@ -30,6 +30,7 @@ import org.compiere.util.DB;
|
||||||
* @author Jorg Janke
|
* @author Jorg Janke
|
||||||
* @version $Id: AcctSchemaDefaultCopy.java,v 1.2 2006/07/30 00:51:01 jjanke Exp $
|
* @version $Id: AcctSchemaDefaultCopy.java,v 1.2 2006/07/30 00:51:01 jjanke Exp $
|
||||||
*/
|
*/
|
||||||
|
@org.adempiere.base.annotation.Process
|
||||||
public class AcctSchemaDefaultCopy extends SvrProcess
|
public class AcctSchemaDefaultCopy extends SvrProcess
|
||||||
{
|
{
|
||||||
/** Acct Schema */
|
/** Acct Schema */
|
||||||
|
|
|
@ -39,6 +39,7 @@ import org.compiere.util.TimeUtil;
|
||||||
* @see https://sourceforge.net/tracker2/?func=detail&aid=2655587&group_id=176962&atid=879332
|
* @see https://sourceforge.net/tracker2/?func=detail&aid=2655587&group_id=176962&atid=879332
|
||||||
* @version $Id: Aging.java,v 1.5 2006/10/07 00:58:44 jjanke Exp $
|
* @version $Id: Aging.java,v 1.5 2006/10/07 00:58:44 jjanke Exp $
|
||||||
*/
|
*/
|
||||||
|
@org.adempiere.base.annotation.Process
|
||||||
public class Aging extends SvrProcess
|
public class Aging extends SvrProcess
|
||||||
{
|
{
|
||||||
/** The date to calculate the days due from */
|
/** The date to calculate the days due from */
|
||||||
|
|
|
@ -41,6 +41,7 @@ import org.compiere.util.Msg;
|
||||||
* @author Jorg Janke
|
* @author Jorg Janke
|
||||||
* @version $Id: AllocationAuto.java,v 1.2 2006/07/30 00:51:01 jjanke Exp $
|
* @version $Id: AllocationAuto.java,v 1.2 2006/07/30 00:51:01 jjanke Exp $
|
||||||
*/
|
*/
|
||||||
|
@org.adempiere.base.annotation.Process
|
||||||
public class AllocationAuto extends SvrProcess
|
public class AllocationAuto extends SvrProcess
|
||||||
{
|
{
|
||||||
/** BP Group */
|
/** BP Group */
|
||||||
|
|
|
@ -35,6 +35,7 @@ import org.compiere.util.Trx;
|
||||||
* @author Jorg Janke
|
* @author Jorg Janke
|
||||||
* @version $Id: AllocationReset.java,v 1.2 2006/07/30 00:51:01 jjanke Exp $
|
* @version $Id: AllocationReset.java,v 1.2 2006/07/30 00:51:01 jjanke Exp $
|
||||||
*/
|
*/
|
||||||
|
@org.adempiere.base.annotation.Process
|
||||||
public class AllocationReset extends SvrProcess
|
public class AllocationReset extends SvrProcess
|
||||||
{
|
{
|
||||||
/** BP Group */
|
/** BP Group */
|
||||||
|
|
|
@ -39,6 +39,7 @@ import org.compiere.util.EMail;
|
||||||
* @version $Id: AssetDelivery.java,v 1.2 2006/07/30 00:51:02 jjanke Exp $
|
* @version $Id: AssetDelivery.java,v 1.2 2006/07/30 00:51:02 jjanke Exp $
|
||||||
* @author Michael Judd BF [ 2736995 ] - toURL() in java.io.File has been deprecated
|
* @author Michael Judd BF [ 2736995 ] - toURL() in java.io.File has been deprecated
|
||||||
*/
|
*/
|
||||||
|
@org.adempiere.base.annotation.Process
|
||||||
public class AssetDelivery extends SvrProcess
|
public class AssetDelivery extends SvrProcess
|
||||||
{
|
{
|
||||||
private MClient m_client = null;
|
private MClient m_client = null;
|
||||||
|
|
|
@ -10,6 +10,7 @@ import org.compiere.util.DB;
|
||||||
import org.compiere.util.Env;
|
import org.compiere.util.Env;
|
||||||
|
|
||||||
|
|
||||||
|
@org.adempiere.base.annotation.Process
|
||||||
public class BOMFlagValidate extends SvrProcess {
|
public class BOMFlagValidate extends SvrProcess {
|
||||||
|
|
||||||
/** Product Category */
|
/** Product Category */
|
||||||
|
|
|
@ -36,6 +36,7 @@ import org.compiere.util.Env;
|
||||||
* @author Jorg Janke
|
* @author Jorg Janke
|
||||||
* @version $Id: BOMValidate.java,v 1.3 2006/07/30 00:51:01 jjanke Exp $
|
* @version $Id: BOMValidate.java,v 1.3 2006/07/30 00:51:01 jjanke Exp $
|
||||||
*/
|
*/
|
||||||
|
@org.adempiere.base.annotation.Process
|
||||||
public class BOMValidate extends SvrProcess
|
public class BOMValidate extends SvrProcess
|
||||||
{
|
{
|
||||||
/** The Product */
|
/** The Product */
|
||||||
|
|
|
@ -30,6 +30,7 @@ import org.eevolution.model.MPPProductBOMLine;
|
||||||
* @author Jorg Janke
|
* @author Jorg Janke
|
||||||
* @version $Id: BOMVerify.java,v 1.1 2007/07/23 05:34:35 mfuggle Exp $
|
* @version $Id: BOMVerify.java,v 1.1 2007/07/23 05:34:35 mfuggle Exp $
|
||||||
*/
|
*/
|
||||||
|
@org.adempiere.base.annotation.Process
|
||||||
public class BOMVerify extends SvrProcess
|
public class BOMVerify extends SvrProcess
|
||||||
{
|
{
|
||||||
/** The Product */
|
/** The Product */
|
||||||
|
|
|
@ -30,6 +30,7 @@ import org.compiere.util.DB;
|
||||||
* @author Jorg Janke
|
* @author Jorg Janke
|
||||||
* @version $Id: BPGroupAcctCopy.java,v 1.2 2006/07/30 00:51:02 jjanke Exp $
|
* @version $Id: BPGroupAcctCopy.java,v 1.2 2006/07/30 00:51:02 jjanke Exp $
|
||||||
*/
|
*/
|
||||||
|
@org.adempiere.base.annotation.Process
|
||||||
public class BPGroupAcctCopy extends SvrProcess
|
public class BPGroupAcctCopy extends SvrProcess
|
||||||
{
|
{
|
||||||
/** BP Group */
|
/** BP Group */
|
||||||
|
|
|
@ -36,6 +36,7 @@ import org.compiere.util.Msg;
|
||||||
* @author Jorg Janke
|
* @author Jorg Janke
|
||||||
* @version $Id: BPartnerOrgLink.java,v 1.2 2006/07/30 00:51:02 jjanke Exp $
|
* @version $Id: BPartnerOrgLink.java,v 1.2 2006/07/30 00:51:02 jjanke Exp $
|
||||||
*/
|
*/
|
||||||
|
@org.adempiere.base.annotation.Process
|
||||||
public class BPartnerOrgLink extends SvrProcess
|
public class BPartnerOrgLink extends SvrProcess
|
||||||
{
|
{
|
||||||
/** Existing Org */
|
/** Existing Org */
|
||||||
|
|
|
@ -29,6 +29,7 @@ import org.compiere.util.Msg;
|
||||||
* @author Jorg Janke
|
* @author Jorg Janke
|
||||||
* @version $Id: BPartnerOrgUnLink.java,v 1.2 2006/07/30 00:51:02 jjanke Exp $
|
* @version $Id: BPartnerOrgUnLink.java,v 1.2 2006/07/30 00:51:02 jjanke Exp $
|
||||||
*/
|
*/
|
||||||
|
@org.adempiere.base.annotation.Process
|
||||||
public class BPartnerOrgUnLink extends SvrProcess
|
public class BPartnerOrgUnLink extends SvrProcess
|
||||||
{
|
{
|
||||||
/** Business Partner */
|
/** Business Partner */
|
||||||
|
|
|
@ -37,6 +37,7 @@ import org.compiere.util.Msg;
|
||||||
* @version $Id: BPartnerValidate.java,v 1.2 2006/07/30 00:51:02 jjanke Exp $
|
* @version $Id: BPartnerValidate.java,v 1.2 2006/07/30 00:51:02 jjanke Exp $
|
||||||
* FR: [ 2214883 ] Remove SQL code and Replace for Query - red1, teo_sarca
|
* FR: [ 2214883 ] Remove SQL code and Replace for Query - red1, teo_sarca
|
||||||
*/
|
*/
|
||||||
|
@org.adempiere.base.annotation.Process
|
||||||
public class BPartnerValidate extends SvrProcess
|
public class BPartnerValidate extends SvrProcess
|
||||||
{
|
{
|
||||||
/** BPartner ID */
|
/** BPartner ID */
|
||||||
|
|
|
@ -31,6 +31,7 @@ import org.compiere.model.X_I_BankStatement;
|
||||||
* @author Jorg Janke
|
* @author Jorg Janke
|
||||||
* @version $Id: BankStatementMatcher.java,v 1.3 2006/09/25 00:59:41 jjanke Exp $
|
* @version $Id: BankStatementMatcher.java,v 1.3 2006/09/25 00:59:41 jjanke Exp $
|
||||||
*/
|
*/
|
||||||
|
@org.adempiere.base.annotation.Process
|
||||||
public class BankStatementMatcher extends SvrProcess
|
public class BankStatementMatcher extends SvrProcess
|
||||||
{
|
{
|
||||||
/** Matchers */
|
/** Matchers */
|
||||||
|
|
|
@ -35,6 +35,7 @@ import org.compiere.util.Env;
|
||||||
* @author Jorg Janke
|
* @author Jorg Janke
|
||||||
* @version $Id: BankStatementPayment.java,v 1.3 2006/07/30 00:51:01 jjanke Exp $
|
* @version $Id: BankStatementPayment.java,v 1.3 2006/07/30 00:51:01 jjanke Exp $
|
||||||
*/
|
*/
|
||||||
|
@org.adempiere.base.annotation.Process
|
||||||
public class BankStatementPayment extends SvrProcess
|
public class BankStatementPayment extends SvrProcess
|
||||||
{
|
{
|
||||||
|
|
||||||
|
|
|
@ -25,6 +25,7 @@ import org.compiere.util.Env;
|
||||||
* @author Jorg Janke
|
* @author Jorg Janke
|
||||||
* @version $Id: CacheReset.java,v 1.2 2006/07/30 00:51:02 jjanke Exp $
|
* @version $Id: CacheReset.java,v 1.2 2006/07/30 00:51:02 jjanke Exp $
|
||||||
*/
|
*/
|
||||||
|
@org.adempiere.base.annotation.Process
|
||||||
public class CacheReset extends SvrProcess implements ClientProcess
|
public class CacheReset extends SvrProcess implements ClientProcess
|
||||||
{
|
{
|
||||||
/**
|
/**
|
||||||
|
|
|
@ -35,6 +35,7 @@ import org.compiere.util.DisplayType;
|
||||||
* @author Jorg Janke
|
* @author Jorg Janke
|
||||||
* @version $Id: ChangeLogProcess.java,v 1.2 2006/07/30 00:51:01 jjanke Exp $
|
* @version $Id: ChangeLogProcess.java,v 1.2 2006/07/30 00:51:01 jjanke Exp $
|
||||||
*/
|
*/
|
||||||
|
@org.adempiere.base.annotation.Process
|
||||||
public class ChangeLogProcess extends SvrProcess
|
public class ChangeLogProcess extends SvrProcess
|
||||||
{
|
{
|
||||||
/** The Change Log (when applied directly) */
|
/** The Change Log (when applied directly) */
|
||||||
|
|
|
@ -47,6 +47,7 @@ import org.compiere.util.Trx;
|
||||||
* @author Jorg Janke
|
* @author Jorg Janke
|
||||||
* @version $Id: ColumnEncryption.java,v 1.2 2006/07/30 00:51:01 jjanke Exp $
|
* @version $Id: ColumnEncryption.java,v 1.2 2006/07/30 00:51:01 jjanke Exp $
|
||||||
*/
|
*/
|
||||||
|
@org.adempiere.base.annotation.Process
|
||||||
public class ColumnEncryption extends SvrProcess {
|
public class ColumnEncryption extends SvrProcess {
|
||||||
/** Enable/Disable Encryption */
|
/** Enable/Disable Encryption */
|
||||||
private boolean p_IsEncrypted = false;
|
private boolean p_IsEncrypted = false;
|
||||||
|
|
|
@ -44,6 +44,7 @@ import org.compiere.util.ValueNamePair;
|
||||||
* <li>BF [ 2854358 ] SyncColumn should load table in transaction
|
* <li>BF [ 2854358 ] SyncColumn should load table in transaction
|
||||||
* https://sourceforge.net/tracker/?func=detail&aid=2854358&group_id=176962&atid=879332
|
* https://sourceforge.net/tracker/?func=detail&aid=2854358&group_id=176962&atid=879332
|
||||||
*/
|
*/
|
||||||
|
@org.adempiere.base.annotation.Process
|
||||||
public class ColumnSync extends SvrProcess
|
public class ColumnSync extends SvrProcess
|
||||||
{
|
{
|
||||||
/** The Column */
|
/** The Column */
|
||||||
|
|
|
@ -34,6 +34,7 @@ import org.compiere.util.Msg;
|
||||||
* @author Jorg Janke
|
* @author Jorg Janke
|
||||||
* @version $Id: CommissionAPInvoice.java,v 1.2 2006/07/30 00:51:01 jjanke Exp $
|
* @version $Id: CommissionAPInvoice.java,v 1.2 2006/07/30 00:51:01 jjanke Exp $
|
||||||
*/
|
*/
|
||||||
|
@org.adempiere.base.annotation.Process
|
||||||
public class CommissionAPInvoice extends SvrProcess
|
public class CommissionAPInvoice extends SvrProcess
|
||||||
{
|
{
|
||||||
/**
|
/**
|
||||||
|
|
|
@ -43,6 +43,7 @@ import org.compiere.util.Language;
|
||||||
* @author Jorg Janke
|
* @author Jorg Janke
|
||||||
* @version $Id: CommissionCalc.java,v 1.3 2006/09/25 00:59:41 jjanke Exp $
|
* @version $Id: CommissionCalc.java,v 1.3 2006/09/25 00:59:41 jjanke Exp $
|
||||||
*/
|
*/
|
||||||
|
@org.adempiere.base.annotation.Process
|
||||||
public class CommissionCalc extends SvrProcess
|
public class CommissionCalc extends SvrProcess
|
||||||
{
|
{
|
||||||
private Timestamp p_StartDate;
|
private Timestamp p_StartDate;
|
||||||
|
|
|
@ -28,6 +28,7 @@ import org.compiere.util.AdempiereUserError;
|
||||||
* @author Jorg Janke
|
* @author Jorg Janke
|
||||||
* @version $Id: CommissionCopy.java,v 1.2 2006/07/30 00:51:02 jjanke Exp $
|
* @version $Id: CommissionCopy.java,v 1.2 2006/07/30 00:51:02 jjanke Exp $
|
||||||
*/
|
*/
|
||||||
|
@org.adempiere.base.annotation.Process
|
||||||
public class CommissionCopy extends SvrProcess
|
public class CommissionCopy extends SvrProcess
|
||||||
{
|
{
|
||||||
/** From Commission */
|
/** From Commission */
|
||||||
|
|
|
@ -43,6 +43,7 @@ import org.compiere.util.Util;
|
||||||
* @author Paul Bowden, Adaxa Pty Ltd
|
* @author Paul Bowden, Adaxa Pty Ltd
|
||||||
*
|
*
|
||||||
*/
|
*/
|
||||||
|
@org.adempiere.base.annotation.Process
|
||||||
public class ConvertLead extends SvrProcess {
|
public class ConvertLead extends SvrProcess {
|
||||||
|
|
||||||
private boolean p_createOpportunity = true;
|
private boolean p_createOpportunity = true;
|
||||||
|
|
|
@ -31,6 +31,7 @@ import org.compiere.util.Msg;
|
||||||
* @author Carlos Ruiz - globalqss
|
* @author Carlos Ruiz - globalqss
|
||||||
* @version $Id: CopyColumnsFromTable
|
* @version $Id: CopyColumnsFromTable
|
||||||
*/
|
*/
|
||||||
|
@org.adempiere.base.annotation.Process
|
||||||
public class CopyColumnsFromTable extends SvrProcess
|
public class CopyColumnsFromTable extends SvrProcess
|
||||||
{
|
{
|
||||||
/** Target Table */
|
/** Target Table */
|
||||||
|
|
|
@ -40,6 +40,7 @@ import org.compiere.util.Msg;
|
||||||
* @author Diego Ruiz - Bx Service GmbH
|
* @author Diego Ruiz - Bx Service GmbH
|
||||||
* @version $Id: CopyComponentsFromView
|
* @version $Id: CopyComponentsFromView
|
||||||
*/
|
*/
|
||||||
|
@org.adempiere.base.annotation.Process
|
||||||
public class CopyComponentsFromView extends SvrProcess {
|
public class CopyComponentsFromView extends SvrProcess {
|
||||||
|
|
||||||
/** Target Table */
|
/** Target Table */
|
||||||
|
|
|
@ -31,6 +31,7 @@ import org.compiere.util.DB;
|
||||||
*
|
*
|
||||||
* @author Nicolas Micoud - IDEMPIERE 448
|
* @author Nicolas Micoud - IDEMPIERE 448
|
||||||
*/
|
*/
|
||||||
|
@org.adempiere.base.annotation.Process
|
||||||
public class CopyFromBankStmt extends SvrProcess
|
public class CopyFromBankStmt extends SvrProcess
|
||||||
{
|
{
|
||||||
private int m_C_BankStatement_ID = 0;
|
private int m_C_BankStatement_ID = 0;
|
||||||
|
|
|
@ -27,6 +27,7 @@ import org.compiere.model.MInvoice;
|
||||||
* @author Jorg Janke
|
* @author Jorg Janke
|
||||||
* @version $Id: CopyFromInvoice.java,v 1.2 2006/07/30 00:51:02 jjanke Exp $
|
* @version $Id: CopyFromInvoice.java,v 1.2 2006/07/30 00:51:02 jjanke Exp $
|
||||||
*/
|
*/
|
||||||
|
@org.adempiere.base.annotation.Process
|
||||||
public class CopyFromInvoice extends SvrProcess
|
public class CopyFromInvoice extends SvrProcess
|
||||||
{
|
{
|
||||||
private int m_C_Invoice_ID = 0;
|
private int m_C_Invoice_ID = 0;
|
||||||
|
|
|
@ -28,6 +28,7 @@ import org.compiere.model.MJournalBatch;
|
||||||
* @author Jorg Janke
|
* @author Jorg Janke
|
||||||
* @version $Id: CopyFromJournal.java,v 1.2 2006/07/30 00:51:02 jjanke Exp $
|
* @version $Id: CopyFromJournal.java,v 1.2 2006/07/30 00:51:02 jjanke Exp $
|
||||||
*/
|
*/
|
||||||
|
@org.adempiere.base.annotation.Process
|
||||||
public class CopyFromJournal extends SvrProcess
|
public class CopyFromJournal extends SvrProcess
|
||||||
{
|
{
|
||||||
private int m_GL_JournalBatch_ID = 0;
|
private int m_GL_JournalBatch_ID = 0;
|
||||||
|
|
|
@ -24,6 +24,7 @@ import org.compiere.model.MJournal;
|
||||||
*
|
*
|
||||||
* @author Carlos Ruiz
|
* @author Carlos Ruiz
|
||||||
*/
|
*/
|
||||||
|
@org.adempiere.base.annotation.Process
|
||||||
public class CopyFromJournalDoc extends SvrProcess
|
public class CopyFromJournalDoc extends SvrProcess
|
||||||
{
|
{
|
||||||
private int m_GL_Journal_ID = 0;
|
private int m_GL_Journal_ID = 0;
|
||||||
|
|
|
@ -27,6 +27,7 @@ import org.compiere.model.MOrder;
|
||||||
* @author Jorg Janke
|
* @author Jorg Janke
|
||||||
* @version $Id: CopyFromOrder.java,v 1.2 2006/07/30 00:51:02 jjanke Exp $
|
* @version $Id: CopyFromOrder.java,v 1.2 2006/07/30 00:51:02 jjanke Exp $
|
||||||
*/
|
*/
|
||||||
|
@org.adempiere.base.annotation.Process
|
||||||
public class CopyFromOrder extends SvrProcess
|
public class CopyFromOrder extends SvrProcess
|
||||||
{
|
{
|
||||||
/** The Order */
|
/** The Order */
|
||||||
|
|
|
@ -31,6 +31,7 @@ import org.compiere.model.MPackageExp;
|
||||||
/**
|
/**
|
||||||
* Copy Package Details from another Pack Out
|
* Copy Package Details from another Pack Out
|
||||||
*/
|
*/
|
||||||
|
@org.adempiere.base.annotation.Process
|
||||||
public class CopyFromPackOut extends SvrProcess {
|
public class CopyFromPackOut extends SvrProcess {
|
||||||
|
|
||||||
/* Package Exp. */
|
/* Package Exp. */
|
||||||
|
|
|
@ -27,6 +27,7 @@ import org.compiere.model.MProject;
|
||||||
* @author Jorg Janke
|
* @author Jorg Janke
|
||||||
* @version $Id: CopyFromProject.java,v 1.2 2006/07/30 00:51:01 jjanke Exp $
|
* @version $Id: CopyFromProject.java,v 1.2 2006/07/30 00:51:01 jjanke Exp $
|
||||||
*/
|
*/
|
||||||
|
@org.adempiere.base.annotation.Process
|
||||||
public class CopyFromProject extends SvrProcess
|
public class CopyFromProject extends SvrProcess
|
||||||
{
|
{
|
||||||
private int m_C_Project_ID = 0;
|
private int m_C_Project_ID = 0;
|
||||||
|
|
|
@ -38,6 +38,7 @@ import org.compiere.util.AdempiereSystemError;
|
||||||
* @author Hideaki Hagiwara
|
* @author Hideaki Hagiwara
|
||||||
* @version $Id: CopyInfoWindowColumns v 1.0 2013/12/4
|
* @version $Id: CopyInfoWindowColumns v 1.0 2013/12/4
|
||||||
*/
|
*/
|
||||||
|
@org.adempiere.base.annotation.Process
|
||||||
public class CopyInfoWindowColumns extends SvrProcess
|
public class CopyInfoWindowColumns extends SvrProcess
|
||||||
{
|
{
|
||||||
/** Target Info Window */
|
/** Target Info Window */
|
||||||
|
|
|
@ -29,6 +29,7 @@ import org.compiere.model.MOrder;
|
||||||
* @author Jorg Janke
|
* @author Jorg Janke
|
||||||
* @version $Id: CopyOrder.java,v 1.2 2006/07/30 00:51:01 jjanke Exp $
|
* @version $Id: CopyOrder.java,v 1.2 2006/07/30 00:51:01 jjanke Exp $
|
||||||
*/
|
*/
|
||||||
|
@org.adempiere.base.annotation.Process
|
||||||
public class CopyOrder extends SvrProcess
|
public class CopyOrder extends SvrProcess
|
||||||
{
|
{
|
||||||
/** Order to Copy */
|
/** Order to Copy */
|
||||||
|
|
|
@ -20,6 +20,7 @@ import org.compiere.model.X_M_Substitute;
|
||||||
* @author Daniel Tamm (usrdno)
|
* @author Daniel Tamm (usrdno)
|
||||||
*
|
*
|
||||||
*/
|
*/
|
||||||
|
@org.adempiere.base.annotation.Process
|
||||||
public class CopyProduct extends SvrProcess {
|
public class CopyProduct extends SvrProcess {
|
||||||
|
|
||||||
private int m_copyFromId;
|
private int m_copyFromId;
|
||||||
|
|
|
@ -29,6 +29,7 @@ import org.compiere.util.Msg;
|
||||||
* overwrites existing data (including translations)
|
* overwrites existing data (including translations)
|
||||||
*
|
*
|
||||||
*/
|
*/
|
||||||
|
@org.adempiere.base.annotation.Process
|
||||||
public class CopyReportProcess extends SvrProcess {
|
public class CopyReportProcess extends SvrProcess {
|
||||||
|
|
||||||
private int sourceId = 0;
|
private int sourceId = 0;
|
||||||
|
|
|
@ -37,6 +37,7 @@ import org.compiere.util.Env;
|
||||||
*
|
*
|
||||||
*/
|
*/
|
||||||
|
|
||||||
|
@org.adempiere.base.annotation.Process
|
||||||
public class CopyRole extends SvrProcess
|
public class CopyRole extends SvrProcess
|
||||||
{
|
{
|
||||||
private int m_AD_Role_ID_From = 0;
|
private int m_AD_Role_ID_From = 0;
|
||||||
|
|
|
@ -28,6 +28,7 @@ import org.compiere.util.AdempiereUserError;
|
||||||
* @author Jorg Janke
|
* @author Jorg Janke
|
||||||
* @version $Id: CostCreate.java,v 1.2 2006/07/30 00:51:01 jjanke Exp $
|
* @version $Id: CostCreate.java,v 1.2 2006/07/30 00:51:01 jjanke Exp $
|
||||||
*/
|
*/
|
||||||
|
@org.adempiere.base.annotation.Process
|
||||||
public class CostCreate extends SvrProcess
|
public class CostCreate extends SvrProcess
|
||||||
{
|
{
|
||||||
/** Product */
|
/** Product */
|
||||||
|
|
|
@ -47,6 +47,7 @@ import org.compiere.util.Util;
|
||||||
* @author Jorg Janke
|
* @author Jorg Janke
|
||||||
* @version $Id: CostUpdate.java,v 1.3 2006/07/30 00:51:02 jjanke Exp $
|
* @version $Id: CostUpdate.java,v 1.3 2006/07/30 00:51:02 jjanke Exp $
|
||||||
*/
|
*/
|
||||||
|
@org.adempiere.base.annotation.Process
|
||||||
public class CostUpdate extends SvrProcess
|
public class CostUpdate extends SvrProcess
|
||||||
{
|
{
|
||||||
/** Product Category */
|
/** Product Category */
|
||||||
|
|
|
@ -45,6 +45,7 @@ import org.compiere.util.Trx;
|
||||||
* @author Diego Ruiz - BX Service GmbH
|
* @author Diego Ruiz - BX Service GmbH
|
||||||
* @contributor Andreas Sumerauer IDEMPIERE-4745
|
* @contributor Andreas Sumerauer IDEMPIERE-4745
|
||||||
*/
|
*/
|
||||||
|
@org.adempiere.base.annotation.Process
|
||||||
public class CreateWindowFromTable extends SvrProcess
|
public class CreateWindowFromTable extends SvrProcess
|
||||||
{
|
{
|
||||||
/** Table */
|
/** Table */
|
||||||
|
|
|
@ -28,6 +28,7 @@ import org.compiere.util.AdempiereUserError;
|
||||||
* @author Jorg Janke
|
* @author Jorg Janke
|
||||||
* @version $Id: DiscountSchemaReSeq.java,v 1.2 2006/07/30 00:51:01 jjanke Exp $
|
* @version $Id: DiscountSchemaReSeq.java,v 1.2 2006/07/30 00:51:01 jjanke Exp $
|
||||||
*/
|
*/
|
||||||
|
@org.adempiere.base.annotation.Process
|
||||||
public class DiscountSchemaReSeq extends SvrProcess
|
public class DiscountSchemaReSeq extends SvrProcess
|
||||||
{
|
{
|
||||||
/** Discount Schema */
|
/** Discount Schema */
|
||||||
|
|
|
@ -34,6 +34,7 @@ import org.compiere.util.Env;
|
||||||
* @author Jorg Janke
|
* @author Jorg Janke
|
||||||
* @version $Id: DistributionCreate.java,v 1.3 2006/07/30 00:51:01 jjanke Exp $
|
* @version $Id: DistributionCreate.java,v 1.3 2006/07/30 00:51:01 jjanke Exp $
|
||||||
*/
|
*/
|
||||||
|
@org.adempiere.base.annotation.Process
|
||||||
public class DistributionCreate extends SvrProcess
|
public class DistributionCreate extends SvrProcess
|
||||||
{
|
{
|
||||||
/** Product */
|
/** Product */
|
||||||
|
|
|
@ -55,6 +55,7 @@ import org.eevolution.model.MDDOrderLine;
|
||||||
* @see http://sourceforge.net/tracker/index.php?func=detail&aid=2030865&group_id=176962&atid=879335
|
* @see http://sourceforge.net/tracker/index.php?func=detail&aid=2030865&group_id=176962&atid=879335
|
||||||
* @version $Id: DistributionRun.java,v 1.4 2006/07/30 00:51:02 jjanke Exp $
|
* @version $Id: DistributionRun.java,v 1.4 2006/07/30 00:51:02 jjanke Exp $
|
||||||
*/
|
*/
|
||||||
|
@org.adempiere.base.annotation.Process
|
||||||
public class DistributionRun extends SvrProcess
|
public class DistributionRun extends SvrProcess
|
||||||
{
|
{
|
||||||
/** The Run to execute */
|
/** The Run to execute */
|
||||||
|
|
|
@ -29,6 +29,7 @@ import org.compiere.util.AdempiereUserError;
|
||||||
* @author Jorg Janke
|
* @author Jorg Janke
|
||||||
* @version $Id: DistributionVerify.java,v 1.2 2006/07/30 00:51:02 jjanke Exp $
|
* @version $Id: DistributionVerify.java,v 1.2 2006/07/30 00:51:02 jjanke Exp $
|
||||||
*/
|
*/
|
||||||
|
@org.adempiere.base.annotation.Process
|
||||||
public class DistributionVerify extends SvrProcess
|
public class DistributionVerify extends SvrProcess
|
||||||
{
|
{
|
||||||
|
|
||||||
|
|
|
@ -26,6 +26,7 @@ import org.compiere.model.MDocTypeCounter;
|
||||||
* @author Jorg Janke
|
* @author Jorg Janke
|
||||||
* @version $Id: DocTypeCounterValidate.java,v 1.2 2006/07/30 00:51:02 jjanke Exp $
|
* @version $Id: DocTypeCounterValidate.java,v 1.2 2006/07/30 00:51:02 jjanke Exp $
|
||||||
*/
|
*/
|
||||||
|
@org.adempiere.base.annotation.Process
|
||||||
public class DocTypeCounterValidate extends SvrProcess
|
public class DocTypeCounterValidate extends SvrProcess
|
||||||
{
|
{
|
||||||
/** Counter Document */
|
/** Counter Document */
|
||||||
|
|
|
@ -35,6 +35,7 @@ import org.compiere.util.DB;
|
||||||
* @author Jorg Janke
|
* @author Jorg Janke
|
||||||
* @version $Id: DocumentTypeVerify.java,v 1.2 2006/07/30 00:51:01 jjanke Exp $
|
* @version $Id: DocumentTypeVerify.java,v 1.2 2006/07/30 00:51:01 jjanke Exp $
|
||||||
*/
|
*/
|
||||||
|
@org.adempiere.base.annotation.Process
|
||||||
public class DocumentTypeVerify extends SvrProcess
|
public class DocumentTypeVerify extends SvrProcess
|
||||||
{
|
{
|
||||||
/** Static Logger */
|
/** Static Logger */
|
||||||
|
|
|
@ -42,6 +42,7 @@ import org.compiere.util.EMail;
|
||||||
*
|
*
|
||||||
* FR 2872010 - Dunning Run for a complete Dunning (not just level) - Developer: Carlos Ruiz - globalqss - Sponsor: Metas
|
* FR 2872010 - Dunning Run for a complete Dunning (not just level) - Developer: Carlos Ruiz - globalqss - Sponsor: Metas
|
||||||
*/
|
*/
|
||||||
|
@org.adempiere.base.annotation.Process
|
||||||
public class DunningPrint extends SvrProcess
|
public class DunningPrint extends SvrProcess
|
||||||
{
|
{
|
||||||
/** Mail PDF */
|
/** Mail PDF */
|
||||||
|
|
|
@ -41,6 +41,7 @@ import org.compiere.util.Env;
|
||||||
*
|
*
|
||||||
* FR 2872010 - Dunning Run for a complete Dunning (not just level) - Developer: Carlos Ruiz - globalqss - Sponsor: Metas
|
* FR 2872010 - Dunning Run for a complete Dunning (not just level) - Developer: Carlos Ruiz - globalqss - Sponsor: Metas
|
||||||
*/
|
*/
|
||||||
|
@org.adempiere.base.annotation.Process
|
||||||
public class DunningRunCreate extends SvrProcess
|
public class DunningRunCreate extends SvrProcess
|
||||||
{
|
{
|
||||||
private boolean p_IncludeInDispute = false;
|
private boolean p_IncludeInDispute = false;
|
||||||
|
|
|
@ -37,6 +37,7 @@ import org.compiere.util.Util;
|
||||||
* @author Jorg Janke
|
* @author Jorg Janke
|
||||||
* @version $Id: EMailTest.java,v 1.2 2006/07/30 00:51:02 jjanke Exp $
|
* @version $Id: EMailTest.java,v 1.2 2006/07/30 00:51:02 jjanke Exp $
|
||||||
*/
|
*/
|
||||||
|
@org.adempiere.base.annotation.Process
|
||||||
public class EMailTest extends SvrProcess
|
public class EMailTest extends SvrProcess
|
||||||
{
|
{
|
||||||
/** Client Parameter */
|
/** Client Parameter */
|
||||||
|
|
|
@ -28,6 +28,7 @@ import org.compiere.util.AdempiereUserError;
|
||||||
* @author Jorg Janke
|
* @author Jorg Janke
|
||||||
* @version $Id: EntityTypeRegister.java,v 1.2 2006/07/30 00:51:02 jjanke Exp $
|
* @version $Id: EntityTypeRegister.java,v 1.2 2006/07/30 00:51:02 jjanke Exp $
|
||||||
*/
|
*/
|
||||||
|
@org.adempiere.base.annotation.Process
|
||||||
public class EntityTypeRegister extends SvrProcess
|
public class EntityTypeRegister extends SvrProcess
|
||||||
{
|
{
|
||||||
/** Register Entity Type */
|
/** Register Entity Type */
|
||||||
|
|
|
@ -39,6 +39,7 @@ import org.compiere.util.Msg;
|
||||||
* @author Jorg Janke
|
* @author Jorg Janke
|
||||||
* @version $Id: ExpenseAPInvoice.java,v 1.3 2006/07/30 00:51:02 jjanke Exp $
|
* @version $Id: ExpenseAPInvoice.java,v 1.3 2006/07/30 00:51:02 jjanke Exp $
|
||||||
*/
|
*/
|
||||||
|
@org.adempiere.base.annotation.Process
|
||||||
public class ExpenseAPInvoice extends SvrProcess
|
public class ExpenseAPInvoice extends SvrProcess
|
||||||
{
|
{
|
||||||
private int m_C_BPartner_ID = 0;
|
private int m_C_BPartner_ID = 0;
|
||||||
|
|
|
@ -38,6 +38,7 @@ import org.compiere.util.Env;
|
||||||
* @author Jorg Janke
|
* @author Jorg Janke
|
||||||
* @version $Id: ExpenseSOrder.java,v 1.3 2006/07/30 00:51:01 jjanke Exp $
|
* @version $Id: ExpenseSOrder.java,v 1.3 2006/07/30 00:51:01 jjanke Exp $
|
||||||
*/
|
*/
|
||||||
|
@org.adempiere.base.annotation.Process
|
||||||
public class ExpenseSOrder extends SvrProcess
|
public class ExpenseSOrder extends SvrProcess
|
||||||
{
|
{
|
||||||
/** BPartner */
|
/** BPartner */
|
||||||
|
|
|
@ -53,6 +53,7 @@ import org.eevolution.model.X_PP_Order;
|
||||||
* @author Jorg Janke
|
* @author Jorg Janke
|
||||||
* @version $Id: FactAcctReset.java,v 1.5 2006/09/21 21:05:02 jjanke Exp $
|
* @version $Id: FactAcctReset.java,v 1.5 2006/09/21 21:05:02 jjanke Exp $
|
||||||
*/
|
*/
|
||||||
|
@org.adempiere.base.annotation.Process
|
||||||
public class FactAcctReset extends SvrProcess
|
public class FactAcctReset extends SvrProcess
|
||||||
{
|
{
|
||||||
/** Client Parameter */
|
/** Client Parameter */
|
||||||
|
|
|
@ -28,6 +28,7 @@ import org.compiere.model.Query;
|
||||||
* accounting facts, grouped by the dimensions selected in active report cubes.
|
* accounting facts, grouped by the dimensions selected in active report cubes.
|
||||||
* @author Paul Bowden
|
* @author Paul Bowden
|
||||||
*/
|
*/
|
||||||
|
@org.adempiere.base.annotation.Process
|
||||||
public class FactAcctSummary extends SvrProcess {
|
public class FactAcctSummary extends SvrProcess {
|
||||||
|
|
||||||
|
|
||||||
|
|
|
@ -29,6 +29,7 @@ import org.compiere.util.CacheMgt;
|
||||||
* Hash existing passwords
|
* Hash existing passwords
|
||||||
*
|
*
|
||||||
*/
|
*/
|
||||||
|
@org.adempiere.base.annotation.Process
|
||||||
public class HashPasswords extends SvrProcess
|
public class HashPasswords extends SvrProcess
|
||||||
{
|
{
|
||||||
/**
|
/**
|
||||||
|
|
|
@ -37,6 +37,7 @@ import org.compiere.util.Env;
|
||||||
* @author Jorg Janke
|
* @author Jorg Janke
|
||||||
* @version $Id: ImportAccount.java,v 1.2 2006/07/30 00:51:02 jjanke Exp $
|
* @version $Id: ImportAccount.java,v 1.2 2006/07/30 00:51:02 jjanke Exp $
|
||||||
*/
|
*/
|
||||||
|
@org.adempiere.base.annotation.Process
|
||||||
public class ImportAccount extends SvrProcess
|
public class ImportAccount extends SvrProcess
|
||||||
{
|
{
|
||||||
/** Client to be imported to */
|
/** Client to be imported to */
|
||||||
|
|
|
@ -48,6 +48,7 @@ import org.compiere.util.DB;
|
||||||
* <li>FR [ 2788278 ] Data Import Validator - migrate core processes
|
* <li>FR [ 2788278 ] Data Import Validator - migrate core processes
|
||||||
* https://sourceforge.net/tracker/?func=detail&aid=2788278&group_id=176962&atid=879335
|
* https://sourceforge.net/tracker/?func=detail&aid=2788278&group_id=176962&atid=879335
|
||||||
*/
|
*/
|
||||||
|
@org.adempiere.base.annotation.Process
|
||||||
public class ImportBPartner extends SvrProcess
|
public class ImportBPartner extends SvrProcess
|
||||||
implements ImportProcess
|
implements ImportProcess
|
||||||
{
|
{
|
||||||
|
|
|
@ -35,6 +35,7 @@ import org.compiere.util.Env;
|
||||||
* author Eldir Tomassen
|
* author Eldir Tomassen
|
||||||
* @version $Id: ImportBankStatement.java,v 1.2 2006/07/30 00:51:01 jjanke Exp $
|
* @version $Id: ImportBankStatement.java,v 1.2 2006/07/30 00:51:01 jjanke Exp $
|
||||||
*/
|
*/
|
||||||
|
@org.adempiere.base.annotation.Process
|
||||||
public class ImportBankStatement extends SvrProcess
|
public class ImportBankStatement extends SvrProcess
|
||||||
{
|
{
|
||||||
/** Client to be imported to */
|
/** Client to be imported to */
|
||||||
|
|
|
@ -32,6 +32,7 @@ import org.compiere.util.DB;
|
||||||
* @author Jorg Janke
|
* @author Jorg Janke
|
||||||
* @version $Id: ImportConversionRate.java,v 1.2 2006/07/30 00:51:01 jjanke Exp $
|
* @version $Id: ImportConversionRate.java,v 1.2 2006/07/30 00:51:01 jjanke Exp $
|
||||||
*/
|
*/
|
||||||
|
@org.adempiere.base.annotation.Process
|
||||||
public class ImportConversionRate extends SvrProcess
|
public class ImportConversionRate extends SvrProcess
|
||||||
{
|
{
|
||||||
|
|
||||||
|
|
|
@ -29,6 +29,7 @@ import org.compiere.util.Msg;
|
||||||
* @author Jorg Janke
|
* @author Jorg Janke
|
||||||
* @version $Id: ImportDelete.java,v 1.2 2006/07/30 00:51:01 jjanke Exp $
|
* @version $Id: ImportDelete.java,v 1.2 2006/07/30 00:51:01 jjanke Exp $
|
||||||
*/
|
*/
|
||||||
|
@org.adempiere.base.annotation.Process
|
||||||
public class ImportDelete extends SvrProcess
|
public class ImportDelete extends SvrProcess
|
||||||
{
|
{
|
||||||
/** Table be deleted */
|
/** Table be deleted */
|
||||||
|
|
|
@ -39,6 +39,7 @@ import org.compiere.util.TimeUtil;
|
||||||
* @author Jorg Janke
|
* @author Jorg Janke
|
||||||
* @version $Id: ImportGLJournal.java,v 1.2 2006/07/30 00:51:02 jjanke Exp $
|
* @version $Id: ImportGLJournal.java,v 1.2 2006/07/30 00:51:02 jjanke Exp $
|
||||||
*/
|
*/
|
||||||
|
@org.adempiere.base.annotation.Process
|
||||||
public class ImportGLJournal extends SvrProcess
|
public class ImportGLJournal extends SvrProcess
|
||||||
{
|
{
|
||||||
/** Client to be imported to */
|
/** Client to be imported to */
|
||||||
|
|
|
@ -32,6 +32,7 @@ import org.compiere.util.DB;
|
||||||
* @author Jorg Janke
|
* @author Jorg Janke
|
||||||
* @version $Id: ImportInOutConfirm.java,v 1.2 2006/07/30 00:51:02 jjanke Exp $
|
* @version $Id: ImportInOutConfirm.java,v 1.2 2006/07/30 00:51:02 jjanke Exp $
|
||||||
*/
|
*/
|
||||||
|
@org.adempiere.base.annotation.Process
|
||||||
public class ImportInOutConfirm extends SvrProcess
|
public class ImportInOutConfirm extends SvrProcess
|
||||||
{
|
{
|
||||||
/** Client to be imported to */
|
/** Client to be imported to */
|
||||||
|
|
|
@ -55,6 +55,7 @@ import org.compiere.util.ValueNamePair;
|
||||||
* Carlos Ruiz - globalqss - IDEMPIERE-281 Extend Import Inventory to support also internal use
|
* Carlos Ruiz - globalqss - IDEMPIERE-281 Extend Import Inventory to support also internal use
|
||||||
* Deepak Pansheriya - logilite - IDEMPIERE-2314 Making import inventory process extendible
|
* Deepak Pansheriya - logilite - IDEMPIERE-2314 Making import inventory process extendible
|
||||||
*/
|
*/
|
||||||
|
@org.adempiere.base.annotation.Process
|
||||||
public class ImportInventory extends SvrProcess implements ImportProcess
|
public class ImportInventory extends SvrProcess implements ImportProcess
|
||||||
{
|
{
|
||||||
/** Client to be imported to */
|
/** Client to be imported to */
|
||||||
|
|
|
@ -39,6 +39,7 @@ import org.compiere.util.Env;
|
||||||
* @author Jorg Janke
|
* @author Jorg Janke
|
||||||
* @version $Id: ImportInvoice.java,v 1.1 2007/09/05 09:27:31 cruiz Exp $
|
* @version $Id: ImportInvoice.java,v 1.1 2007/09/05 09:27:31 cruiz Exp $
|
||||||
*/
|
*/
|
||||||
|
@org.adempiere.base.annotation.Process
|
||||||
public class ImportInvoice extends SvrProcess
|
public class ImportInvoice extends SvrProcess
|
||||||
{
|
{
|
||||||
/** Client to be imported to */
|
/** Client to be imported to */
|
||||||
|
|
|
@ -41,6 +41,7 @@ import org.compiere.util.Env;
|
||||||
* @author Jorg Janke
|
* @author Jorg Janke
|
||||||
* @version $Id: ImportOrder.java,v 1.2 2006/07/30 00:51:02 jjanke Exp $
|
* @version $Id: ImportOrder.java,v 1.2 2006/07/30 00:51:02 jjanke Exp $
|
||||||
*/
|
*/
|
||||||
|
@org.adempiere.base.annotation.Process
|
||||||
public class ImportOrder extends SvrProcess
|
public class ImportOrder extends SvrProcess
|
||||||
{
|
{
|
||||||
/** Client to be imported to */
|
/** Client to be imported to */
|
||||||
|
|
|
@ -38,6 +38,7 @@ import org.compiere.util.Env;
|
||||||
* Contributor(s):
|
* Contributor(s):
|
||||||
* Carlos Ruiz - globalqss - FR [ 1992542 ] Import Payment doesn't have DocAction parameter
|
* Carlos Ruiz - globalqss - FR [ 1992542 ] Import Payment doesn't have DocAction parameter
|
||||||
*/
|
*/
|
||||||
|
@org.adempiere.base.annotation.Process
|
||||||
public class ImportPayment extends SvrProcess
|
public class ImportPayment extends SvrProcess
|
||||||
{
|
{
|
||||||
/** Organization to be imported to */
|
/** Organization to be imported to */
|
||||||
|
|
|
@ -41,6 +41,7 @@ import org.compiere.util.DB;
|
||||||
* <li>FR [ 2788278 ] Data Import Validator - migrate core processes
|
* <li>FR [ 2788278 ] Data Import Validator - migrate core processes
|
||||||
* https://sourceforge.net/tracker/?func=detail&aid=2788278&group_id=176962&atid=879335
|
* https://sourceforge.net/tracker/?func=detail&aid=2788278&group_id=176962&atid=879335
|
||||||
*/
|
*/
|
||||||
|
@org.adempiere.base.annotation.Process
|
||||||
public class ImportProduct extends SvrProcess implements ImportProcess
|
public class ImportProduct extends SvrProcess implements ImportProcess
|
||||||
{
|
{
|
||||||
/** Client to be imported to */
|
/** Client to be imported to */
|
||||||
|
|
|
@ -32,6 +32,7 @@ import org.compiere.util.DB;
|
||||||
* @author Jorg Janke
|
* @author Jorg Janke
|
||||||
* @version $Id: ImportReportLine.java,v 1.2 2006/07/30 00:51:01 jjanke Exp $
|
* @version $Id: ImportReportLine.java,v 1.2 2006/07/30 00:51:01 jjanke Exp $
|
||||||
*/
|
*/
|
||||||
|
@org.adempiere.base.annotation.Process
|
||||||
public class ImportReportLine extends SvrProcess
|
public class ImportReportLine extends SvrProcess
|
||||||
{
|
{
|
||||||
/** Client to be imported to */
|
/** Client to be imported to */
|
||||||
|
|
|
@ -27,6 +27,7 @@ import org.compiere.model.MInOutConfirm;
|
||||||
* @author Jorg Janke
|
* @author Jorg Janke
|
||||||
* @version $Id: InOutCreateConfirm.java,v 1.2 2006/07/30 00:51:01 jjanke Exp $
|
* @version $Id: InOutCreateConfirm.java,v 1.2 2006/07/30 00:51:01 jjanke Exp $
|
||||||
*/
|
*/
|
||||||
|
@org.adempiere.base.annotation.Process
|
||||||
public class InOutCreateConfirm extends SvrProcess
|
public class InOutCreateConfirm extends SvrProcess
|
||||||
{
|
{
|
||||||
/** Shipment */
|
/** Shipment */
|
||||||
|
|
|
@ -37,6 +37,7 @@ import org.compiere.util.Env;
|
||||||
* @author Jorg Janke
|
* @author Jorg Janke
|
||||||
* @version $Id: InOutCreateInvoice.java,v 1.2 2006/07/30 00:51:02 jjanke Exp $
|
* @version $Id: InOutCreateInvoice.java,v 1.2 2006/07/30 00:51:02 jjanke Exp $
|
||||||
*/
|
*/
|
||||||
|
@org.adempiere.base.annotation.Process
|
||||||
public class InOutCreateInvoice extends SvrProcess
|
public class InOutCreateInvoice extends SvrProcess
|
||||||
{
|
{
|
||||||
/** Shipment */
|
/** Shipment */
|
||||||
|
|
|
@ -48,6 +48,7 @@ import org.compiere.util.Msg;
|
||||||
* @author Jorg Janke
|
* @author Jorg Janke
|
||||||
* @version $Id: InOutGenerate.java,v 1.2 2006/07/30 00:51:01 jjanke Exp $
|
* @version $Id: InOutGenerate.java,v 1.2 2006/07/30 00:51:01 jjanke Exp $
|
||||||
*/
|
*/
|
||||||
|
@org.adempiere.base.annotation.Process
|
||||||
public class InOutGenerate extends SvrProcess
|
public class InOutGenerate extends SvrProcess
|
||||||
{
|
{
|
||||||
/** Manual Selection */
|
/** Manual Selection */
|
||||||
|
|
|
@ -36,6 +36,7 @@ import org.eevolution.model.MPPProductBOMLine;
|
||||||
* @author pbowden@adaxa.com modified for manufacturing light
|
* @author pbowden@adaxa.com modified for manufacturing light
|
||||||
*
|
*
|
||||||
*/
|
*/
|
||||||
|
@org.adempiere.base.annotation.Process
|
||||||
public class IndentedBOM extends SvrProcess
|
public class IndentedBOM extends SvrProcess
|
||||||
{
|
{
|
||||||
//
|
//
|
||||||
|
|
|
@ -24,6 +24,7 @@ import org.compiere.model.MInfoWindow;
|
||||||
* @author Jorg Janke
|
* @author Jorg Janke
|
||||||
* @version $Id: InfoWindowValidate.java,v 1.2 2006/07/30 00:51:01 jjanke Exp $
|
* @version $Id: InfoWindowValidate.java,v 1.2 2006/07/30 00:51:01 jjanke Exp $
|
||||||
*/
|
*/
|
||||||
|
@org.adempiere.base.annotation.Process
|
||||||
public class InfoWindowValidate extends SvrProcess
|
public class InfoWindowValidate extends SvrProcess
|
||||||
{
|
{
|
||||||
/** Info Window */
|
/** Info Window */
|
||||||
|
|
|
@ -40,6 +40,7 @@ import org.compiere.util.Env;
|
||||||
* @author Jorg Janke
|
* @author Jorg Janke
|
||||||
* @version $Id: InventoryCountCreate.java,v 1.2 2006/07/30 00:51:02 jjanke Exp $
|
* @version $Id: InventoryCountCreate.java,v 1.2 2006/07/30 00:51:02 jjanke Exp $
|
||||||
*/
|
*/
|
||||||
|
@org.adempiere.base.annotation.Process
|
||||||
public class InventoryCountCreate extends SvrProcess
|
public class InventoryCountCreate extends SvrProcess
|
||||||
{
|
{
|
||||||
|
|
||||||
|
|
Some files were not shown because too many files have changed in this diff Show More
Loading…
Reference in New Issue