Hi,
The field in attachment is mandatory to go through next status. But by default, the value of this field is 0, and it seems i'm not able to change that. It means that even if i setup that field as mandatory, each user can go through next status by letting 0 value in the field which is incorrect.
Could you please help ?
No, this is not normal.
This comes from PHP 7.1 compatibility.
Before numeric values could be null (nothing, not evben zero)
So setting to zero was like filling the value.
Now, because of PHP 7.1 requirements, numeric values are set by default to zero.
So there is no cange between null and zero.
Possibly we may enforce the control , but we must check that this will not have unexpected side effects
Ticket #4179