mirror of
https://github.com/OCA/stock-logistics-warehouse.git
synced 2025-01-21 14:27:28 +02:00
8 lines
168 B
Python
8 lines
168 B
Python
from odoo import fields, models
|
|
|
|
|
|
class StockMoveLine(models.Model):
|
|
_inherit = "stock.move.line"
|
|
|
|
inventory_adjustment_id = fields.Many2one("stock.inventory")
|