forked from Mapan/odoo17e
13 lines
365 B
Python
13 lines
365 B
Python
# -*- coding: utf-8 -*-
|
|
# Part of Odoo. See LICENSE file for full copyright and licensing details.
|
|
|
|
from odoo import api, fields, models, _
|
|
|
|
|
|
class ResCompany(models.Model):
|
|
_inherit = 'res.company'
|
|
|
|
@api.model
|
|
def winbooks_import_action(self):
|
|
return self.env["ir.actions.actions"]._for_xml_id("account_winbooks_import.winbooks_import_action")
|