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

13 lines
307 B
Python

# coding: utf-8
from odoo import models, fields
class ResPartner(models.Model):
_inherit = "res.partner"
box_1099_id = fields.Many2one(
"l10n_us.1099_box",
string="1099 Box",
help="Journal items of this vendor will be summed in the selected box of the 1099 report."
)