Skip to content

Commit b35379a

Browse files
Adding Purchase Order as a valid PaymentType in support for Punchout2Go payment finalization.
Fixes BroadleafCommerce/QA#1206
1 parent d0815c6 commit b35379a

File tree

1 file changed

+1
-0
lines changed

1 file changed

+1
-0
lines changed

common/src/main/java/org/broadleafcommerce/common/payment/PaymentType.java

+1
Original file line numberDiff line numberDiff line change
@@ -48,6 +48,7 @@ public class PaymentType implements Serializable, BroadleafEnumerationType {
4848
public static final PaymentType CUSTOMER_CREDIT = new PaymentType("CUSTOMER_CREDIT", "Customer Credit", false);
4949
public static final PaymentType COD = new PaymentType("COD", "Collect On Delivery", false);
5050
public static final PaymentType CUSTOMER_PAYMENT = new PaymentType("CUSTOMER_PAYMENT", "Customer Payment", true);
51+
public static final PaymentType PURCHASE_ORDER = new PaymentType("PURCHASE_ORDER", "Purchase Order", false);
5152
/**
5253
* Intended for modules like PayPal Express Checkout
5354
*

0 commit comments

Comments
 (0)