License Type field shows disabled options when set as required

Created on 14 October 2024, 6 months ago

We have installed commerce_license_access_control and implemented our own custom license plugin. We have disabled "AccessControl" license plugin in the product variation, but the option to choose Access Control is still shown when creating new product variations.

I believe I can see the issue:

If the license type field is required, the commerce PluginSelectWidget automatically adds the first value as default.

    // The element is required, default to the first plugin.
    if (!$target_plugin_id && $this->fieldDefinition->isRequired()) {
      $plugin_ids = array_keys($plugins);
      $target_plugin_id = reset($plugin_ids);
    }

In `commerce_license_field_widget_single_element_form_alter` we filter the available options for the field. But we always maintain the default value to avoid removing an option for an existing entity.

      // Ensure we don't remove the default value from the options, in case
      // the product variation references a license type that's no longer
      // "allowed".
      if (!isset($license_types[$default_value])) {
        $license_types[$default_value] = $default_value;
      }
🐛 Bug report
Status

Active

Version

3.0

Component

Code

Created by

🇦🇷Argentina weemondo

Live updates comments and jobs are added and updated live.
Sign in to follow issues

Comments & Activities

  • Issue created by @weemondo
  • 🇦🇷Argentina weemondo

    I haven't tested this yet but I propose in `commerce_license_field_widget_single_element_form_alter` we "maintain the default value" ONLY if the form is editing an existing entity. If the form is for a new item we ignore the default value.

    I will try to create a patch when I can.

  • 🇦🇷Argentina weemondo

    Adding patch for v3.0

  • 🇦🇷Argentina weemondo

    Above patch is broken. It correctly fixes the license select options but the license type form below still shows the form for the previous default.

  • 🇦🇷Argentina weemondo

    For now, we are manually disabling the access control plugin.

    function my_module_commerce_license_type_info_alter(array &$plugins) {
      if (isset($plugins["commerce_license_access_control"])) {
        unset $plugins["commerce_license_access_control"];
      }
    }
    
Production build 0.71.5 2024