1
0
forked from Mapan/odoo17e
odoo17e-kedaikipas58/addons/sale_loyalty_taxcloud/models/account_move.py
2024-12-10 09:04:09 +07:00

13 lines
356 B
Python

# -*- coding: utf-8 -*-
# Part of Odoo. See LICENSE file for full copyright and licensing details.
from .taxcloud_request import TaxCloudRequest
from odoo import api, models
class AccountMove(models.Model):
_inherit = 'account.move'
@api.model
def _get_TaxCloudRequest(self, api_id, api_key):
return TaxCloudRequest(api_id, api_key)