Skip to content

Commit f64d82c

Browse files
[IMP] account_payment_mode: change type of payment_mode.note field from Text to Html
1 parent 2d5685e commit f64d82c

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

account_payment_mode/models/account_payment_mode.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -67,7 +67,7 @@ class AccountPaymentMode(models.Model):
6767
related="payment_method_id.code", readonly=True, store=True
6868
)
6969
active = fields.Boolean(default=True)
70-
note = fields.Text(translate=True)
70+
note = fields.Html(translate=True)
7171
sequence = fields.Integer(default=10)
7272

7373
@api.onchange("company_id")

0 commit comments

Comments
 (0)