Error when attempting to Add Strategy

Created on 20 January 2025, 3 months ago

Problem/Motivation

Going to /admin/commerce/config/xero/strategy and clicking Add Strategy produces the error:

Warning: foreach() argument must be of type array|object, null given in Drupal\commerce_xero\Form\StrategyForm->buildForm() (line 287 of modules/contrib/commerce_xero/src/Form/StrategyForm.php).

This problem may be related to incomplete configuration of the module or the API.

The relevant code is:

    // Assembles processor settings for enabled processors.
    $plugins = $this->entity->getEnabledPlugins();
    foreach ($plugins as $weight => $info) {
    ...

It looks like there are no enabled processors, but the code is assuming that there always will be at least 1.

Proposed resolution

The code should check the value of $plugins before entering the foreach loop. If the absence of any plugins indicates that something has gone wrong somewhere else, it would be nice to have a helpful error message to explain.

🐛 Bug report
Status

Active

Version

2.0

Component

Code

Created by

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

Merge Requests

Comments & Activities

  • Issue created by @dabley
  • First commit to issue fork.
  • Pipeline finished with Success
    3 months ago
    Total: 164s
    #401353
  • 🇮🇳India priti197 Mumbai - India

    Created MR !3 to fix the issue.

  • 🇺🇸United States mradcliffe USA

    I think rather than do that, we can just change getEnabledPlugins to always return an array rather than be nullable.

  • This seems to be covering up the problem rather than solving it. It looks to me as if there ought to always be at least one processor.

    By default the "Posts to Xero" processor is toggled on (and cannot be toggled off) - so the "Posts to Xero" processor ought to be always shown in the list - shouldn't it?

    If I enable the "Invoice lookup" toggle, then the list of Processors is updated to show "Posts to Xero" and also "Invoice lookup". When I then disable the "Invoice lookup" toggle, the list of Processors is updated to show "Posts to Xero" on its own. So why doesn't the "Posts to Xero" processor appear in the list of processors at the outset?

  • 🇺🇸United States mradcliffe USA

    Testing locally and writing a test reveals that the plugins are listed appropriately on a new install and Posts to Xero is checked by default.

    The warning still needed to be fixed though.

  • Pipeline finished with Skipped
    2 months ago
    #411224
  • 🇺🇸United States mradcliffe USA
  • Thanks for fixing. The patch works for me.

    I think my earlier message wasn't clear. "Post to Xero" is shown in the list of processors, and is toggled on. But "Post to Xero" does not initially appear in the "Processor Order" list. It only appears in the Processor Order list after another processor has been selected. I guess this doesn't matter, since when only 1 processor is selected, is isn't necessary to specify the ordering.

  • Sorry, didn't mean to change the status.

  • Automatically closed - issue fixed for 2 weeks with no activity.

Production build 0.71.5 2024