mirror of
https://github.com/bringout/oca-purchase.git
synced 2026-04-24 18:22:04 +02:00
🤖 Generated with [Claude Code](https://claude.ai/code) Co-Authored-By: Claude <noreply@anthropic.com>
12 lines
326 B
Python
12 lines
326 B
Python
# Copyright 2020 ForgeFlow S.L.
|
|
# License LGPL-3.0 or later (https://www.gnu.org/licenses/agpl).
|
|
|
|
from odoo import fields, models
|
|
|
|
|
|
class ProductSupplierInfo(models.Model):
|
|
_inherit = "product.supplierinfo"
|
|
|
|
delay_calendar_type = fields.Selection(
|
|
related="partner_id.delay_calendar_type", readonly=True
|
|
)
|