mirror of
https://github.com/bringout/odoomates.git
synced 2026-04-23 00:32:06 +02:00
11 lines
216 B
Python
11 lines
216 B
Python
# -*- coding: utf-8 -*-
|
|
|
|
from odoo import fields, models, api
|
|
|
|
|
|
class AccountMove(models.Model):
|
|
_inherit = "account.move"
|
|
|
|
@api.model
|
|
def _get_invoice_in_payment_state(self):
|
|
return 'in_payment'
|