forked from Mapan/odoo17e
19 lines
606 B
Python
19 lines
606 B
Python
# -*- coding: utf-8 -*-
|
|
# Part of Odoo. See LICENSE file for full copyright and licensing details.
|
|
|
|
from odoo import models, _
|
|
|
|
class HelpdeskTicket(models.Model):
|
|
_inherit = 'helpdesk.ticket'
|
|
|
|
def action_convert_to_task(self):
|
|
return {
|
|
'name': _('Convert to Task'),
|
|
'view_mode': 'form',
|
|
'res_model': 'helpdesk.ticket.convert.wizard',
|
|
'views': [(False, 'form')],
|
|
'type': 'ir.actions.act_window',
|
|
'target': 'new',
|
|
'context': {**self.env.context, 'to_convert': self.ids, 'dialog_size': 'medium',},
|
|
}
|