add purchase_price_review_status
This commit is contained in:
parent
d9a0eeb878
commit
f586c99df9
10 changed files with 260 additions and 0 deletions
12
purchase_price_review_status/models/stock_picking.py
Normal file
12
purchase_price_review_status/models/stock_picking.py
Normal file
|
|
@ -0,0 +1,12 @@
|
|||
from odoo import fields, models
|
||||
|
||||
|
||||
class StockPicking(models.Model):
|
||||
_inherit = "stock.picking"
|
||||
|
||||
purchase_prices_reviewed = fields.Boolean(
|
||||
related="purchase_id.prices_reviewed",
|
||||
string="Purchase Prices Reviewed",
|
||||
readonly=True,
|
||||
store=False,
|
||||
)
|
||||
Loading…
Add table
Add a link
Reference in a new issue