blob: 56e2e82bccebccfcf0d9e782c0ba6cbfc4447bd6 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
# -*- coding: utf-8 -*-
# Part of Odoo. See LICENSE file for full copyright and licensing details.
from odoo import fields, models
class StockValuationLayer(models.Model):
"""Stock Valuation Layer"""
_inherit = 'stock.valuation.layer'
stock_landed_cost_id = fields.Many2one('stock.landed.cost', 'Landed Cost')
|