Drupal Commerce alter checkout form and custom validate

来源:互联网 发布:nginx 启动不了windows 编辑:程序博客网 时间:2024/05/22 00:46

Drupal Commerce: How to alter the checkout form and how to add the custom validation

Commerce has its own API http://api.drupalcommerce.org/, that we have used it to adapt the checkout form to our requirements.

Description of the required functionality

In the billing information of an order we have added the fields “Request invoice” and “NIF/CIF” (ID). By default the field “Request invoice” is not checked and “NIF/CIF” is hidden and not required. When the buyer checks the field “Request invoice” the field “NIF/CIF” becomes visible and required.

Proposed solution

  1. Adding the code that changes the field “NIF/CIF” when the user checks “Request invoice”. By using hook_form_FORM_ID_alter(&$form, &$form_state, $form_id)
  2. Adding a callback to validate the form hook_commerce_checkout_pane_info_alter(&$checkout_panes)
  3. Adding the validation function commerce_billing_pane_validate(&$form, &$form_state, $checkout_pane, $order)

Step 1. Adding the alter form to add the behavior of the field. field_request_invoice

?
1
2
3
4
5
6
7
8
9
10
11
functionexample_form_commerce_checkout_form_checkout_alter(&$form, &$form_state, $form_id) {
  global $user;
  $form['customer_profile_billing']['field_cif_nif']['#states'] = array(
    'visible'=> array(
      ':input[name="customer_profile_billing[field_request_invoice][und]"]'=> array('checked'=> TRUE),
    ),
    'required'=> array(
      ':input[name="customer_profile_billing[field_request_invoice][und]"]'=> array('checked'=> TRUE),
    ),
  );
}

Step 2. Alter the customer_profile_billing panel to add the callback to the validation function

?
1
2
3
4
5
functionexample_commerce_checkout_pane_info_alter(&$checkout_panes) {
  if(isset($checkout_panes['customer_profile_billing'])) {
    $checkout_panes['customer_profile_billing']['callbacks']['checkout_form_validate'] = 'example_commerce_billing_pane_validate';
  }
}

Step 3. Adding the custom validation function

?
1
2
3
4
5
6
7
functionexample_commerce_billing_pane_validate(&$form, &$form_state, $checkout_pane, $order) {
  if($form_state['values']['customer_profile_billing']['field_request_invoice']['und'][0]['value'] == 1&& empty($form_state['values']['customer_profile_billing']['field_cif_nif']['und'][0]['value'])) {
    form_set_error($checkout_pane['pane_id'] . '][field_cif_nif][und][0][value', t('DNI/CIF/NIF field is required.'));
    returnFALSE;
  }
  returnTRUE;
}

Now, the billing panel in the checkout form shows this

Commerce checkout validation

 

We hope this is of help. If you know another way to do this or you have another idea you can write a comment. Thanks!

0 0
原创粉丝点击