mirror of
https://github.com/OCA/stock-logistics-warehouse.git
synced 2025-01-21 14:27:28 +02:00
16 lines
471 B
Python
16 lines
471 B
Python
# Copyright 2024 ForgeFlow S.L.
|
|
# (http://www.forgeflow.com)
|
|
# License AGPL-3.0 or later (https://www.gnu.org/licenses/agpl.html).
|
|
from odoo import fields, models
|
|
|
|
|
|
class StockMoveLine(models.Model):
|
|
_inherit = "stock.move.line"
|
|
|
|
line_accuracy = fields.Float(
|
|
string="Accuracy",
|
|
store=True,
|
|
)
|
|
theoretical_qty = fields.Float(string="Theoretical Quantity", store=True)
|
|
counted_qty = fields.Float(string="Counted Quantity", store=True)
|