mirror of
https://gitlab.com/flectra-community/partner-contact.git
synced 2024-11-15 02:32:04 +00:00
19 lines
511 B
Python
19 lines
511 B
Python
|
# Copyright 2020 Tecnativa - Jairo Llopis
|
||
|
# License AGPL-3.0 or later (https://www.gnu.org/licenses/agpl).
|
||
|
|
||
|
from flectra import models
|
||
|
|
||
|
|
||
|
class ResPartner(models.Model):
|
||
|
_inherit = "res.partner"
|
||
|
|
||
|
def open_child_form(self):
|
||
|
"""Open child contact form from the parent partner form view"""
|
||
|
return {
|
||
|
"type": "ir.actions.act_window",
|
||
|
"res_model": "res.partner",
|
||
|
"res_id": self.id,
|
||
|
"view_mode": "form",
|
||
|
"target": "current",
|
||
|
}
|