11 lines
297 B
Python
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.",
|
|
)
|