10 lines
204 B
Python
10 lines
204 B
Python
from odoo import models
|
|
|
|
|
|
class StockMove(models.Model):
|
|
_inherit = "stock.move"
|
|
|
|
def _get_stock_valuation_layer_ids(self):
|
|
self.ensure_one()
|
|
return self.stock_valuation_layer_ids
|