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

14 lines
327 B
Python

# Part of Odoo. See LICENSE file for full copyright and licensing details.
from odoo import fields, models
class AccountMoveLine(models.Model):
_name = "account.move.line"
_inherit = "account.move.line"
check_number = fields.Char(
string="Check Number",
related='payment_id.check_number',
)