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:
hengsin 2021-10-22 18:38:10 +08:00 committed by GitHub
parent 4b923f4d03
commit 4759ae5c2b
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
295 changed files with 755 additions and 65 deletions

View File

@ -25,6 +25,11 @@
<arguments>
</arguments>
</buildCommand>
<buildCommand>
<name>org.eclipse.pde.ds.core.builder</name>
<arguments>
</arguments>
</buildCommand>
</buildSpec>
<natures>
<nature>org.eclipse.m2e.core.maven2Nature</nature>

View File

@ -13,8 +13,11 @@ Import-Package: javax.mail;version="1.5",
javax.mail.internet;version="1.5",
javax.servlet;version="2.5.0",
javax.servlet.http;version="2.5.0",
org.apache.commons.collections.keyvalue;version="3.2.0"
Eclipse-RegisterBuddy: org.adempiere.base
org.apache.commons.collections.keyvalue;version="3.2.0",
org.osgi.framework;version="1.10.0",
org.osgi.service.component.annotations;version="1.3.0"
Bundle-ClassPath: .
Automatic-Module-Name: org.adempiere.base.process
Bundle-Vendor: iDempiere Community
Bundle-ActivationPolicy: lazy
Service-Component: OSGI-INF/org.adempiere.base.process.factory.BaseProcessFactoryImpl.xml

View File

@ -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>

View File

@ -1,4 +1,5 @@
bin.includes = META-INF/,\
.
.,\
OSGI-INF/
output.. = target/classes/
source.. = src/

View File

@ -21,6 +21,7 @@ import org.compiere.util.Util;
* @author hengsin
*
*/
@org.adempiere.base.annotation.Process
public class AcceptCtxHelpSuggestion extends SvrProcess {
private boolean p_isSaveAsTenantCustomization;

View File

@ -20,6 +20,7 @@ import org.compiere.util.Util;
* @author hengsin
*
*/
@org.adempiere.base.annotation.Process
public class AcceptFieldSuggestion extends SvrProcess {
private boolean p_updateBaseLanguage;

View File

@ -11,6 +11,7 @@ import org.compiere.util.Env;
* @author hengsin
*
*/
@org.adempiere.base.annotation.Process
public class RejectCtxHelpSuggestion extends SvrProcess {
/**

View File

@ -11,6 +11,7 @@ import org.compiere.util.Env;
* @author hengsin
*
*/
@org.adempiere.base.annotation.Process
public class RejectFieldSuggestion extends SvrProcess {
/**

View File

@ -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"};
}
}

View File

@ -52,6 +52,7 @@ import org.compiere.wf.MWorkflow;
*
* @author Carlos Ruiz
*/
@org.adempiere.base.annotation.Process
public class ASPGenerateFields extends SvrProcess
{
private String p_ASP_Status;

View File

@ -65,6 +65,7 @@ import org.compiere.wf.MWorkflow;
*
* @author Carlos Ruiz
*/
@org.adempiere.base.annotation.Process
public class ASPGenerateLevel extends SvrProcess
{
private String p_ASP_Status;

View File

@ -42,6 +42,7 @@ import org.compiere.process.SvrProcess;
import org.compiere.util.CLogger;
import org.compiere.util.DB;
@org.adempiere.base.annotation.Process
public class ApplyMigrationScripts extends SvrProcess {
/** Logger */

View File

@ -55,6 +55,7 @@ import org.compiere.util.Trx;
*
* @author Carlos Ruiz
*/
@org.adempiere.base.annotation.Process
public class ClientAcctProcessor extends SvrProcess
{
/* The Accounting Schema */

View File

@ -60,6 +60,7 @@ import org.compiere.util.Env;
*
* @author Daniel Tamm
*/
@org.adempiere.base.annotation.Process
public class ExpenseTypesFromAccounts extends SvrProcess {
private int m_clientId;

View File

@ -62,6 +62,7 @@ import org.w3c.dom.Text;
* @author Trifon Trifonov
* @version $Id: $
*/
@org.adempiere.base.annotation.Process
public class Export extends SvrProcess
{
private static final String TOTAL_SEGMENTS = "${totalSegments}";

View File

@ -52,6 +52,7 @@ import org.compiere.util.Msg;
*
* @author Diego Ruiz - globalqss
*/
@org.adempiere.base.annotation.Process
public class HouseKeeping extends SvrProcess{
private int p_AD_HouseKeeping_ID = 0;

View File

@ -58,6 +58,7 @@ import org.compiere.util.Env;
* @author Alejandro Falcone
*
**/
@org.adempiere.base.annotation.Process
public class ImmediateBankTransfer extends SvrProcess
{
/** DocAction */

View File

@ -45,6 +45,7 @@ import org.compiere.util.Env;
*
* @author Carlos Ruiz
*/
@org.adempiere.base.annotation.Process
public class ImportPriceList extends SvrProcess
{
/** Client to be imported to */

View File

@ -46,6 +46,7 @@ import org.compiere.util.Msg;
* <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
*/
@org.adempiere.base.annotation.Process
public class InOutGenerateRMA extends SvrProcess
{
/** Manual Selection */

View File

@ -54,6 +54,7 @@ import org.compiere.util.Util;
* @author Carlos Ruiz
* [ 2598506 ] FR - Implement Initial Client Setup
*/
@org.adempiere.base.annotation.Process
public class InitialClientSetup extends SvrProcess
{

View File

@ -41,6 +41,7 @@ import org.compiere.util.Msg;
*
* Based on org.compiere.process.InvoiceGenerate
*/
@org.adempiere.base.annotation.Process
public class InvoiceGenerateRMA extends SvrProcess
{
/** Manual Selection */

View File

@ -45,6 +45,7 @@ import org.compiere.process.SvrProcess;
import org.compiere.util.DB;
import org.compiere.util.Env;
@org.adempiere.base.annotation.Process
public class PrepareMigrationScripts extends SvrProcess {
String path;

View File

@ -31,6 +31,7 @@ import org.compiere.process.SvrProcess;
* @author Ashley Ramdass
*/
@org.adempiere.base.annotation.Process
public class RMACreateOrder extends SvrProcess
{

View File

@ -10,6 +10,7 @@ import org.compiere.process.ProcessInfoParameter;
import org.compiere.process.SvrProcess;
import org.compiere.util.DB;
@org.adempiere.base.annotation.Process
public class UpdateRoleMenu extends SvrProcess
{
private int p_role_id = 0;

View File

@ -29,6 +29,7 @@ import org.compiere.process.SvrProcess;
* @author Jorg Janke
* @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
{
/** The Language ID */

View File

@ -27,6 +27,7 @@ import org.compiere.util.DB;
* @author Carlos Ruiz (globalqss)
* @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
{

View File

@ -34,6 +34,7 @@ import org.compiere.util.KeyNamePair;
* @author Jorg Janke
* @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
{
private int p_SourceAcctSchema_ID = 0;

View File

@ -30,6 +30,7 @@ import org.compiere.util.DB;
* @author Jorg Janke
* @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
{
/** Acct Schema */

View File

@ -39,6 +39,7 @@ import org.compiere.util.TimeUtil;
* @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 $
*/
@org.adempiere.base.annotation.Process
public class Aging extends SvrProcess
{
/** The date to calculate the days due from */

View File

@ -41,6 +41,7 @@ import org.compiere.util.Msg;
* @author Jorg Janke
* @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
{
/** BP Group */

View File

@ -35,6 +35,7 @@ import org.compiere.util.Trx;
* @author Jorg Janke
* @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
{
/** BP Group */

View File

@ -39,6 +39,7 @@ import org.compiere.util.EMail;
* @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
*/
@org.adempiere.base.annotation.Process
public class AssetDelivery extends SvrProcess
{
private MClient m_client = null;

View File

@ -10,6 +10,7 @@ import org.compiere.util.DB;
import org.compiere.util.Env;
@org.adempiere.base.annotation.Process
public class BOMFlagValidate extends SvrProcess {
/** Product Category */

View File

@ -36,6 +36,7 @@ import org.compiere.util.Env;
* @author Jorg Janke
* @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
{
/** The Product */

View File

@ -30,6 +30,7 @@ import org.eevolution.model.MPPProductBOMLine;
* @author Jorg Janke
* @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
{
/** The Product */

View File

@ -30,6 +30,7 @@ import org.compiere.util.DB;
* @author Jorg Janke
* @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
{
/** BP Group */

View File

@ -36,6 +36,7 @@ import org.compiere.util.Msg;
* @author Jorg Janke
* @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
{
/** Existing Org */

View File

@ -29,6 +29,7 @@ import org.compiere.util.Msg;
* @author Jorg Janke
* @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
{
/** Business Partner */

View File

@ -37,6 +37,7 @@ import org.compiere.util.Msg;
* @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
*/
@org.adempiere.base.annotation.Process
public class BPartnerValidate extends SvrProcess
{
/** BPartner ID */

View File

@ -31,6 +31,7 @@ import org.compiere.model.X_I_BankStatement;
* @author Jorg Janke
* @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
{
/** Matchers */

View File

@ -35,6 +35,7 @@ import org.compiere.util.Env;
* @author Jorg Janke
* @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
{

View File

@ -25,6 +25,7 @@ import org.compiere.util.Env;
* @author Jorg Janke
* @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
{
/**

View File

@ -35,6 +35,7 @@ import org.compiere.util.DisplayType;
* @author Jorg Janke
* @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
{
/** The Change Log (when applied directly) */

View File

@ -47,6 +47,7 @@ import org.compiere.util.Trx;
* @author Jorg Janke
* @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 {
/** Enable/Disable Encryption */
private boolean p_IsEncrypted = false;

View File

@ -44,6 +44,7 @@ import org.compiere.util.ValueNamePair;
* <li>BF [ 2854358 ] SyncColumn should load table in transaction
* https://sourceforge.net/tracker/?func=detail&aid=2854358&group_id=176962&atid=879332
*/
@org.adempiere.base.annotation.Process
public class ColumnSync extends SvrProcess
{
/** The Column */

View File

@ -34,6 +34,7 @@ import org.compiere.util.Msg;
* @author Jorg Janke
* @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
{
/**

View File

@ -43,6 +43,7 @@ import org.compiere.util.Language;
* @author Jorg Janke
* @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
{
private Timestamp p_StartDate;

View File

@ -28,6 +28,7 @@ import org.compiere.util.AdempiereUserError;
* @author Jorg Janke
* @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
{
/** From Commission */

View File

@ -43,6 +43,7 @@ import org.compiere.util.Util;
* @author Paul Bowden, Adaxa Pty Ltd
*
*/
@org.adempiere.base.annotation.Process
public class ConvertLead extends SvrProcess {
private boolean p_createOpportunity = true;

View File

@ -31,6 +31,7 @@ import org.compiere.util.Msg;
* @author Carlos Ruiz - globalqss
* @version $Id: CopyColumnsFromTable
*/
@org.adempiere.base.annotation.Process
public class CopyColumnsFromTable extends SvrProcess
{
/** Target Table */

View File

@ -40,6 +40,7 @@ import org.compiere.util.Msg;
* @author Diego Ruiz - Bx Service GmbH
* @version $Id: CopyComponentsFromView
*/
@org.adempiere.base.annotation.Process
public class CopyComponentsFromView extends SvrProcess {
/** Target Table */

View File

@ -31,6 +31,7 @@ import org.compiere.util.DB;
*
* @author Nicolas Micoud - IDEMPIERE 448
*/
@org.adempiere.base.annotation.Process
public class CopyFromBankStmt extends SvrProcess
{
private int m_C_BankStatement_ID = 0;

View File

@ -27,6 +27,7 @@ import org.compiere.model.MInvoice;
* @author Jorg Janke
* @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
{
private int m_C_Invoice_ID = 0;

View File

@ -28,6 +28,7 @@ import org.compiere.model.MJournalBatch;
* @author Jorg Janke
* @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
{
private int m_GL_JournalBatch_ID = 0;

View File

@ -24,6 +24,7 @@ import org.compiere.model.MJournal;
*
* @author Carlos Ruiz
*/
@org.adempiere.base.annotation.Process
public class CopyFromJournalDoc extends SvrProcess
{
private int m_GL_Journal_ID = 0;

View File

@ -27,6 +27,7 @@ import org.compiere.model.MOrder;
* @author Jorg Janke
* @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
{
/** The Order */

View File

@ -31,6 +31,7 @@ import org.compiere.model.MPackageExp;
/**
* Copy Package Details from another Pack Out
*/
@org.adempiere.base.annotation.Process
public class CopyFromPackOut extends SvrProcess {
/* Package Exp. */

View File

@ -27,6 +27,7 @@ import org.compiere.model.MProject;
* @author Jorg Janke
* @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
{
private int m_C_Project_ID = 0;

View File

@ -38,6 +38,7 @@ import org.compiere.util.AdempiereSystemError;
* @author Hideaki Hagiwara
* @version $Id: CopyInfoWindowColumns v 1.0 2013/12/4
*/
@org.adempiere.base.annotation.Process
public class CopyInfoWindowColumns extends SvrProcess
{
/** Target Info Window */

View File

@ -29,6 +29,7 @@ import org.compiere.model.MOrder;
* @author Jorg Janke
* @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
{
/** Order to Copy */

View File

@ -20,6 +20,7 @@ import org.compiere.model.X_M_Substitute;
* @author Daniel Tamm (usrdno)
*
*/
@org.adempiere.base.annotation.Process
public class CopyProduct extends SvrProcess {
private int m_copyFromId;

View File

@ -29,6 +29,7 @@ import org.compiere.util.Msg;
* overwrites existing data (including translations)
*
*/
@org.adempiere.base.annotation.Process
public class CopyReportProcess extends SvrProcess {
private int sourceId = 0;

View File

@ -37,6 +37,7 @@ import org.compiere.util.Env;
*
*/
@org.adempiere.base.annotation.Process
public class CopyRole extends SvrProcess
{
private int m_AD_Role_ID_From = 0;

View File

@ -28,6 +28,7 @@ import org.compiere.util.AdempiereUserError;
* @author Jorg Janke
* @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
{
/** Product */

View File

@ -47,6 +47,7 @@ import org.compiere.util.Util;
* @author Jorg Janke
* @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
{
/** Product Category */

View File

@ -45,6 +45,7 @@ import org.compiere.util.Trx;
* @author Diego Ruiz - BX Service GmbH
* @contributor Andreas Sumerauer IDEMPIERE-4745
*/
@org.adempiere.base.annotation.Process
public class CreateWindowFromTable extends SvrProcess
{
/** Table */

View File

@ -28,6 +28,7 @@ import org.compiere.util.AdempiereUserError;
* @author Jorg Janke
* @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
{
/** Discount Schema */

View File

@ -34,6 +34,7 @@ import org.compiere.util.Env;
* @author Jorg Janke
* @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
{
/** Product */

View File

@ -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
* @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
{
/** The Run to execute */

View File

@ -29,6 +29,7 @@ import org.compiere.util.AdempiereUserError;
* @author Jorg Janke
* @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
{

View File

@ -26,6 +26,7 @@ import org.compiere.model.MDocTypeCounter;
* @author Jorg Janke
* @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
{
/** Counter Document */

View File

@ -35,6 +35,7 @@ import org.compiere.util.DB;
* @author Jorg Janke
* @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
{
/** Static Logger */

View File

@ -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
*/
@org.adempiere.base.annotation.Process
public class DunningPrint extends SvrProcess
{
/** Mail PDF */

View File

@ -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
*/
@org.adempiere.base.annotation.Process
public class DunningRunCreate extends SvrProcess
{
private boolean p_IncludeInDispute = false;

View File

@ -37,6 +37,7 @@ import org.compiere.util.Util;
* @author Jorg Janke
* @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
{
/** Client Parameter */

View File

@ -28,6 +28,7 @@ import org.compiere.util.AdempiereUserError;
* @author Jorg Janke
* @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
{
/** Register Entity Type */

View File

@ -39,6 +39,7 @@ import org.compiere.util.Msg;
* @author Jorg Janke
* @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
{
private int m_C_BPartner_ID = 0;

View File

@ -38,6 +38,7 @@ import org.compiere.util.Env;
* @author Jorg Janke
* @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
{
/** BPartner */

View File

@ -53,6 +53,7 @@ import org.eevolution.model.X_PP_Order;
* @author Jorg Janke
* @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
{
/** Client Parameter */

View File

@ -28,6 +28,7 @@ import org.compiere.model.Query;
* accounting facts, grouped by the dimensions selected in active report cubes.
* @author Paul Bowden
*/
@org.adempiere.base.annotation.Process
public class FactAcctSummary extends SvrProcess {

View File

@ -29,6 +29,7 @@ import org.compiere.util.CacheMgt;
* Hash existing passwords
*
*/
@org.adempiere.base.annotation.Process
public class HashPasswords extends SvrProcess
{
/**

View File

@ -37,6 +37,7 @@ import org.compiere.util.Env;
* @author Jorg Janke
* @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
{
/** Client to be imported to */

View File

@ -48,6 +48,7 @@ import org.compiere.util.DB;
* <li>FR [ 2788278 ] Data Import Validator - migrate core processes
* https://sourceforge.net/tracker/?func=detail&aid=2788278&group_id=176962&atid=879335
*/
@org.adempiere.base.annotation.Process
public class ImportBPartner extends SvrProcess
implements ImportProcess
{

View File

@ -35,6 +35,7 @@ import org.compiere.util.Env;
* author Eldir Tomassen
* @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
{
/** Client to be imported to */

View File

@ -32,6 +32,7 @@ import org.compiere.util.DB;
* @author Jorg Janke
* @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
{

View File

@ -29,6 +29,7 @@ import org.compiere.util.Msg;
* @author Jorg Janke
* @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
{
/** Table be deleted */

View File

@ -39,6 +39,7 @@ import org.compiere.util.TimeUtil;
* @author Jorg Janke
* @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
{
/** Client to be imported to */

View File

@ -32,6 +32,7 @@ import org.compiere.util.DB;
* @author Jorg Janke
* @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
{
/** Client to be imported to */

View File

@ -55,6 +55,7 @@ import org.compiere.util.ValueNamePair;
* Carlos Ruiz - globalqss - IDEMPIERE-281 Extend Import Inventory to support also internal use
* Deepak Pansheriya - logilite - IDEMPIERE-2314 Making import inventory process extendible
*/
@org.adempiere.base.annotation.Process
public class ImportInventory extends SvrProcess implements ImportProcess
{
/** Client to be imported to */

View File

@ -39,6 +39,7 @@ import org.compiere.util.Env;
* @author Jorg Janke
* @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
{
/** Client to be imported to */

View File

@ -41,6 +41,7 @@ import org.compiere.util.Env;
* @author Jorg Janke
* @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
{
/** Client to be imported to */

View File

@ -38,6 +38,7 @@ import org.compiere.util.Env;
* Contributor(s):
* Carlos Ruiz - globalqss - FR [ 1992542 ] Import Payment doesn't have DocAction parameter
*/
@org.adempiere.base.annotation.Process
public class ImportPayment extends SvrProcess
{
/** Organization to be imported to */

View File

@ -41,6 +41,7 @@ import org.compiere.util.DB;
* <li>FR [ 2788278 ] Data Import Validator - migrate core processes
* 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
{
/** Client to be imported to */

View File

@ -32,6 +32,7 @@ import org.compiere.util.DB;
* @author Jorg Janke
* @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
{
/** Client to be imported to */

View File

@ -27,6 +27,7 @@ import org.compiere.model.MInOutConfirm;
* @author Jorg Janke
* @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
{
/** Shipment */

View File

@ -37,6 +37,7 @@ import org.compiere.util.Env;
* @author Jorg Janke
* @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
{
/** Shipment */

View File

@ -48,6 +48,7 @@ import org.compiere.util.Msg;
* @author Jorg Janke
* @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
{
/** Manual Selection */

View File

@ -36,6 +36,7 @@ import org.eevolution.model.MPPProductBOMLine;
* @author pbowden@adaxa.com modified for manufacturing light
*
*/
@org.adempiere.base.annotation.Process
public class IndentedBOM extends SvrProcess
{
//

View File

@ -24,6 +24,7 @@ import org.compiere.model.MInfoWindow;
* @author Jorg Janke
* @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
{
/** Info Window */

View File

@ -40,6 +40,7 @@ import org.compiere.util.Env;
* @author Jorg Janke
* @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
{

Some files were not shown because too many files have changed in this diff Show More