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

13 lines
495 B
Python

# -*- coding: utf-8 -*-
# Part of Odoo. See LICENSE file for full copyright and licensing details.
from odoo import api, fields, models
class AccountMoveLine(models.Model):
_inherit = 'account.move.line'
# technical field used to reconcile the journal items in Odoo as they were in Winbooks
winbooks_matching_number = fields.Char(help="Matching number that was used in Winbooks") # DEPRECATED in 17.0
winbooks_line_id = fields.Char(help="Line ID that was used in Winbooks")