Skip to Content
Menu
This question has been flagged
1 Reply
4655 Views

Anyone tel clear concept

Avatar
Discard
Best Answer

Hello,

delegate is set it to True to make fields of the target model accessible from the current model (corresponds to _inherits)

for example

journal_id = fields.Many2one('account.journal', delegate=True, required=True)


this will make all journal's fields available in your model.


Hope this could help

Avatar
Discard