Enhance substitution handling in ir.actions.report with value_type support
Compare changes
Files
20+ 20
− 9
@@ -22,7 +22,7 @@
@@ -31,13 +31,13 @@
@@ -38,10 +38,10 @@
@@ -78,10 +78,10 @@
@@ -82,10 +82,19 @@
@@ -98,7 +107,9 @@
Refactor converter building functionality for improved maintainability.
Added substitution_mixin.py
with the new SubstitutionMixin
abstract model.
Updated ir.actions.report
to inherit from SubstitutionMixin
and implement _get_template
to return redner_tmpl_id
.
Updated mail.template
to inherit from SubstitutionMixin
,
replacing its simpler action_get_substitutions
with the
mixin's implementation, and added _get_template
.