Odoo18-Base/addons/l10n_pl/models/res_partner.py
2025-01-06 10:57:38 +07:00

15 lines
433 B
Python

# coding: utf-8
# Part of Odoo. See LICENSE file for full copyright and licensing details.
from odoo import fields, models
class ResPartner(models.Model):
"""Inherited to add the information needed for the JPK"""
_inherit = 'res.partner'
l10n_pl_links_with_customer = fields.Boolean(
string='Links With Company',
help='TP: Existing connection or influence between the customer and the supplier'
)