addons-cm/purchase_price_review_status/models/purchase_order.py

11 lines
297 B
Python

from odoo import fields, models
class PurchaseOrder(models.Model):
_inherit = "purchase.order"
prices_reviewed = fields.Boolean(
string="Purchase Prices Reviewed",
default=False,
help="Indicates whether purchase prices were reviewed against the receipt.",
)