forked from Mapan/odoo17e
13 lines
495 B
Python
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")
|