Skip to content

Commit

Permalink
[MIG] cb_helpdesk: migration to 16.0
Browse files Browse the repository at this point in the history
  • Loading branch information
kluna1998 authored and etobella committed Feb 13, 2025
1 parent db4b43f commit 804ea59
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
2 changes: 1 addition & 1 deletion cb_helpdesk/__manifest__.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
"name": "Cb Helpdesk",
"summary": """
Helpdesk from OCA with some modifications""",
"version": "14.0.1.0.0",
"version": "16.0.1.0.0",
"license": "AGPL-3",
"author": "CreuBlanca,Odoo Community Association (OCA)",
"website": "https://github.com/tegin/cb-addons",
Expand Down
3 changes: 2 additions & 1 deletion cb_helpdesk/models/helpdesk_ticket.py
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,7 @@ def send_partner_mail(self):

@api.onchange("partner_id")
def _onchange_partner_id(self):
super()._onchange_partner_id()
res = super()._onchange_partner_id()
if self.partner_id:
self.partner_phone = self.partner_id.phone
return res

0 comments on commit 804ea59

Please sign in to comment.