mirror of
https://github.com/bringout/oca-purchase.git
synced 2026-04-23 05:42:06 +02:00
🤖 Generated with [Claude Code](https://claude.ai/code) Co-Authored-By: Claude <noreply@anthropic.com>
15 lines
506 B
Python
15 lines
506 B
Python
# Copyright 2019 Elico Corp, Dominique K. <dominique.k@elico-corp.com.sg>
|
|
# Copyright 2019 Ecosoft Co., Ltd., Kitti U. <kittiu@ecosoft.co.th>
|
|
# Copyright 2023 Quartile Limited
|
|
# License AGPL-3.0 or later (https://www.gnu.org/licenses/agpl.html).
|
|
|
|
from odoo import fields, models
|
|
|
|
|
|
class ResConfigSettings(models.TransientModel):
|
|
_inherit = "res.config.settings"
|
|
|
|
purchase_deposit_product_id = fields.Many2one(
|
|
related="company_id.purchase_deposit_product_id",
|
|
readonly=False,
|
|
)
|