mirror of
https://github.com/OCA/stock-logistics-reporting.git
synced 2025-02-16 17:13:21 +02:00
The module `sale_order_line_position` is on `sale_reporting`. First one `delivery_line_sale_line_position` adds the position number on the delivery report. And the second one `delivery_line_sale_line_position` is a glue module with `stock_picking_group_by_partner_by_carrier` and adds the position number on the remaining to deliver information.
13 lines
307 B
Python
13 lines
307 B
Python
# Copyright 2021 Camptocamp SA
|
|
# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl.html)
|
|
|
|
from odoo import fields, models
|
|
|
|
|
|
class StockMove(models.Model):
|
|
_inherit = "stock.move"
|
|
|
|
position_sale_line = fields.Char(
|
|
related="sale_line_id.position_formatted", string="Position"
|
|
)
|