跳至内容
菜单
此问题已终结
1 回复
1438 查看

I am trying to upgrade a custom module from odoo 13 to 14 , while installing it , this error is showing up : 
AssertionError: account.payment.payment_difference_handling: selection_add=[('reconcile_multi_deduct', 'Mark invoice as fully paid (multi deduct)')] on non-list selection None

形象
丢弃
最佳答案

Hi,

In Odoo 13, the field payment_difference_handling is defined within the account.payment model, but while coming to Odoo 14, it is defined in the account.payment.register model.
So you have to change the model in which you are inheriting the field and adding new values into the selection list.


class AccountPaymentRegister(models.TransientModel):
_inherit = 'account.payment.register'
payment_difference_handling = usage = fields.Selection(selection_add=[('reconcile_multi_deduct', 'Mark invoice as fully paid (multi deduct)')],ondelete={'reconcile_multi_deduct': 'cascade'})

Hope it helps

形象
丢弃
相关帖文 回复 查看 活动
3
9月 25
3328
0
8月 25
852
1
8月 25
3093
2
7月 25
8736
2
7月 25
5088