10 lines
191 B
Python
10 lines
191 B
Python
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'
|