Class PurchaseOrderPaymentForm

java.lang.Object
org.apache.struts.action.ActionForm
com.softslate.commerce.customer.core.BaseForm
com.softslate.commerce.customer.payment.PurchaseOrderPaymentForm
All Implemented Interfaces:
Serializable

public class PurchaseOrderPaymentForm extends BaseForm
Struts form class for users electing to send the store payment by purchase order. This form corresponds to the PurchaseOrderPaymentProcessor payment processor.

Stores can use this form and the corresponding processor to offer payment by purchase order as an option for their customers. Payment will be marked "Pending". Once the payment is received, the store administrator can look up and process the order.

The database settings "activePaymentProcessors", "activePaymentForms", and "activePaymentFormTemplate" represent the various payment methods available to users. During checkout, each of the "activePaymentForms" will be instantiated and prepared for display on the checkout payment screen. When the user submits payment information the validate method of the corresponding payment form is invoked.

The validate method of this class simply returns a success result.

Author:
Jason McWilliams
See Also:
  • Field Details

    • serialVersionUID

      private static final long serialVersionUID
      See Also:
    • log

      static org.apache.commons.logging.Log log
    • purchaseOrderNumber

      private String purchaseOrderNumber
    • purchaseOrderNotes

      private String purchaseOrderNotes
  • Constructor Details

    • PurchaseOrderPaymentForm

      public PurchaseOrderPaymentForm()
  • Method Details

    • getPurchaseOrderNumber

      public String getPurchaseOrderNumber()
    • setPurchaseOrderNumber

      public void setPurchaseOrderNumber(String purchaseOrderNumber)
    • getPurchaseOrderNotes

      public String getPurchaseOrderNotes()
    • setPurchaseOrderNotes

      public void setPurchaseOrderNotes(String purchaseOrderNotes)
    • validate

      public org.apache.struts.action.ActionErrors validate(org.apache.struts.action.ActionMapping mapping, javax.servlet.http.HttpServletRequest request)
      Overrides:
      validate in class org.apache.struts.action.ActionForm