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