From 281cd20e6f9fa78df9db71948f6b2a93db049ce8 Mon Sep 17 00:00:00 2001 From: Elaine Tan Date: Thu, 1 Nov 2012 20:59:59 +0800 Subject: [PATCH] Fix merge with 28f0ff5b4ae2e8ae3565045da5ed334120e2965f --- .../compiere/model/X_C_PaymentProcessor.java | 32 +++++++++++++++++++ 1 file changed, 32 insertions(+) diff --git a/org.adempiere.base/src/org/compiere/model/X_C_PaymentProcessor.java b/org.adempiere.base/src/org/compiere/model/X_C_PaymentProcessor.java index 4817ecf84e..5104efdab7 100644 --- a/org.adempiere.base/src/org/compiere/model/X_C_PaymentProcessor.java +++ b/org.adempiere.base/src/org/compiere/model/X_C_PaymentProcessor.java @@ -736,6 +736,38 @@ public class X_C_PaymentProcessor extends PO implements I_C_PaymentProcessor, I_ return false; } + /** TrxType AD_Reference_ID=215 */ + public static final int TRXTYPE_AD_Reference_ID=215; + /** Sales = S */ + public static final String TRXTYPE_Sales = "S"; + /** Delayed Capture = D */ + public static final String TRXTYPE_DelayedCapture = "D"; + /** Credit (Payment) = C */ + public static final String TRXTYPE_CreditPayment = "C"; + /** Voice Authorization = F */ + public static final String TRXTYPE_VoiceAuthorization = "F"; + /** Authorization = A */ + public static final String TRXTYPE_Authorization = "A"; + /** Void = V */ + public static final String TRXTYPE_Void = "V"; + /** Set Transaction Type. + @param TrxType + Type of credit card transaction + */ + public void setTrxType (String TrxType) + { + + set_Value (COLUMNNAME_TrxType, TrxType); + } + + /** Get Transaction Type. + @return Type of credit card transaction + */ + public String getTrxType () + { + return (String)get_Value(COLUMNNAME_TrxType); + } + /** Set User ID. @param UserID User ID or account number