summaryrefslogtreecommitdiff
path: root/addons/account_edi/models/account_payment.py
blob: 8b8a691d63e71aef1b75ab38581254f54fa9baeb (plain)
1
2
3
4
5
6
7
8
9
10
11
# -*- coding: utf-8 -*-
# Part of Odoo. See LICENSE file for full copyright and licensing details.

from odoo import models, fields, api, _


class AccountPayment(models.Model):
    _inherit = 'account.payment'

    def action_process_edi_web_services(self):
        return self.move_id.action_process_edi_web_services()