You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@ofbiz.apache.org by mo...@apache.org on 2008/07/18 08:14:38 UTC

svn commit: r677832 - /ofbiz/trunk/applications/accounting/script/org/ofbiz/accounting/payment/PaymentMapProcs.xml

Author: mor
Date: Thu Jul 17 23:14:37 2008
New Revision: 677832

URL: http://svn.apache.org/viewvc?rev=677832&view=rev
Log:
Fix: credit card number should be checked against empty value

Modified:
    ofbiz/trunk/applications/accounting/script/org/ofbiz/accounting/payment/PaymentMapProcs.xml

Modified: ofbiz/trunk/applications/accounting/script/org/ofbiz/accounting/payment/PaymentMapProcs.xml
URL: http://svn.apache.org/viewvc/ofbiz/trunk/applications/accounting/script/org/ofbiz/accounting/payment/PaymentMapProcs.xml?rev=677832&r1=677831&r2=677832&view=diff
==============================================================================
--- ofbiz/trunk/applications/accounting/script/org/ofbiz/accounting/payment/PaymentMapProcs.xml (original)
+++ ofbiz/trunk/applications/accounting/script/org/ofbiz/accounting/payment/PaymentMapProcs.xml Thu Jul 17 23:14:37 2008
@@ -39,7 +39,7 @@
     <process field="lastNameOnCard"><copy/><not-empty><fail-message message="Last Name on Card is missing"/></not-empty></process>
     <process field="suffixOnCard"><copy/></process>    
     <process field="cardType"><copy/><not-empty><fail-message message="Card Type is missing"/></not-empty></process>
-    <process field="cardNumber"><copy/></process>
+    <process field="cardNumber"><copy/><not-empty><fail-message message="Card Number is missing"/></not-empty></process>
     <process field="contactMechId"><copy/></process>
     <process field="description"><copy/></process>
     <process field="expMonth"><not-empty><fail-message message="Expiration Month is missing"/></not-empty></process>