forked from Mapan/odoo17e
14 lines
450 B
Python
14 lines
450 B
Python
# -*- coding: utf-8 -*-
|
|
# Part of Odoo. See LICENSE file for full copyright and licensing details.
|
|
|
|
from odoo import api, models
|
|
|
|
|
|
class ResCompany(models.Model):
|
|
_inherit = "res.company"
|
|
|
|
@api.model
|
|
def account_saft_import_action(self):
|
|
""" This action is triggered when the Configuration > SAF-T Import menu button is pressed."""
|
|
return self.env['ir.actions.act_window']._for_xml_id('account_saft_import.import_action')
|