- Issue created by @fsiemens
- Status changed to Postponed: needs info
about 1 year ago 1:41pm 2 February 2024 - 🇩🇪Germany jurgenhaas Gottmadingen
I can't reproduce this unfortunately. ECA Tamper doesn't verify the data type as far as I can tell. And the only data type validation can be found in the tamper module, which does something like this:
if (!is_numeric($data)) { throw new TamperException('Math plugin failed because data was not numeric.'); }
So, can you please provide an example to reproduce the problem, and also let us know the exact error message and when it is being displayed.
- 🇩🇪Germany fsiemens
Clean Installation Drupal Core 10.2
Installed moduls Tamper 8.x-1.0-alpha4; ECA: Event - Condition - Action 1.1.4; ECA Tamper Integration 1.0.5; BPMN.iO 1.1.3Simple model with math operation addition.
The error is displayed when saving the model with a non-integer numerical value i.e. '5.99'.Two Error messages:
Model contains error(s) and can not be saved.
action "Manipulation: Math" (): Value must be a number. - Status changed to Active
about 1 year ago 9:40am 26 February 2024 - 🇩🇪Germany jurgenhaas Gottmadingen
Ah, this is a field value validation on number fields. Here is what the tamper module uses for their math plugin:
$form[self::SETTING_VALUE] = [ '#type' => 'number', '#title' => $this->t('Value'), '#required' => TRUE, '#description' => $this->t('A numerical value.'), '#default_value' => $this->getSetting(self::SETTING_VALUE), ];
This generates a HTML number field, and they define number as integer. On submission, Drupal core is validating number field such that they have to be integers.
Not sure if the tamper module wants to change that field type, moving it over there for review.
- Assigned to megachriz
- 🇳🇱Netherlands megachriz
Yes, this should be fixed in the Tamper module indeed. The Math plugin should be able to accept decimal values. It looks like that it can be fixed by setting the 'step' attribute to 'any'. I found that answer here: https://stackoverflow.com/questions/34057595/allow-2-decimal-places-in-i...
I'm working on a fix.
- Merge request !21Allow Math plugin to accept a decimal value on the settings form. → (Merged) created by megachriz
- last update
about 1 year ago 534 pass - Issue was unassigned.
- Status changed to Needs review
about 1 year ago 3:52pm 27 February 2024 - 🇳🇱Netherlands megachriz
A fix is ready for review. Let me know if this fixes the issue for you. :)
- 🇧🇪Belgium ttnt
Was looking for the same - tested it on a dev site and this seems to solve the issue. It would be awesome if this could be bumped to dev so I don't need to apply a patch just for one line :).
- last update
about 1 year ago 534 pass -
MegaChriz →
committed fbe7f24e on 8.x-1.x
Issue #3418803 by MegaChriz: Allow Math plugin to accept decimal values...
-
MegaChriz →
committed fbe7f24e on 8.x-1.x
- Status changed to Fixed
about 1 year ago 10:31am 5 April 2024 - 🇳🇱Netherlands megachriz
Thanks for testing @TTNT! I merged the code.
Automatically closed - issue fixed for 2 weeks with no activity.