Skip to content
Snippets Groups Projects
Commit e2d40d51 authored by J P's avatar J P Committed by Jonathan Sacksick
Browse files

Issue #2890837 by czigor, loze: Order item type being ignored by the widget.

parent 7b862caf
No related branches found
Tags 8.x-2.37
7 merge requests!418Issue #3511232 by ccjjmartin: Fix add to cart dropdown when only one non-default variation type is provided,!379Issue #3491248 Validation is breaking the amount number format decimal point,!375Issue #3413020 by czigor: Using a translatable string as a category for field...,!357Issue #2914933: Add service tags to order-related interfaces,!344Resolve #3107602 "Product attributes do not update visually when switching variations",!343Resolve #3107602 "Product attributes do not update visually when switching variations",!342Issue #3476581 by josephr5000: add OrderItemLabelEvent
Pipeline #69951 passed
...@@ -2,6 +2,7 @@ ...@@ -2,6 +2,7 @@
namespace Drupal\commerce_order\Form; namespace Drupal\commerce_order\Form;
use Drupal\commerce_order\Entity\OrderItemType;
use Drupal\Component\Datetime\TimeInterface; use Drupal\Component\Datetime\TimeInterface;
use Drupal\Core\Datetime\DateFormatterInterface; use Drupal\Core\Datetime\DateFormatterInterface;
use Drupal\Core\Entity\ContentEntityForm; use Drupal\Core\Entity\ContentEntityForm;
...@@ -60,6 +61,16 @@ class OrderForm extends ContentEntityForm { ...@@ -60,6 +61,16 @@ class OrderForm extends ContentEntityForm {
$order = $this->entity; $order = $this->entity;
$form = parent::form($form, $form_state); $form = parent::form($form, $form_state);
// Narrow down order item types for the complex IEF widget.
if (isset($form['order_items']['widget']['actions'], $form['order_items']['widget']['actions']['bundle']) && !empty($form['order_items']['widget']['actions']['bundle']['#options'])) {
foreach ($form['order_items']['widget']['actions']['bundle']['#options'] as $order_item_type_id => $label) {
$order_item_type = OrderItemType::load($order_item_type_id);
if ($order_item_type->getOrderTypeId() !== $order->bundle()) {
unset($form['order_items']['widget']['actions']['bundle']['#options'][$order_item_type_id]);
}
}
}
$form['#tree'] = TRUE; $form['#tree'] = TRUE;
$form['#theme'] = 'commerce_order_edit_form'; $form['#theme'] = 'commerce_order_edit_form';
$form['#attached']['library'][] = 'commerce_order/form'; $form['#attached']['library'][] = 'commerce_order/form';
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment