odoo-addon-rma 16.0.1.3.0.1__py3-none-any.whl → 16.0.2.0.0.1__py3-none-any.whl

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -1490,11 +1490,21 @@ msgstr ""
1490
1490
  msgid "RMA draft notification Email"
1491
1491
  msgstr ""
1492
1492
 
1493
+ #. module: rma
1494
+ #: model:ir.model.fields,field_description:rma.field_stock_warehouse__rma_in_route_id
1495
+ msgid "RMA in Route"
1496
+ msgstr ""
1497
+
1493
1498
  #. module: rma
1494
1499
  #: model:mail.message.subtype,description:rma.mt_rma_draft
1495
1500
  msgid "RMA in draft state"
1496
1501
  msgstr ""
1497
1502
 
1503
+ #. module: rma
1504
+ #: model:ir.model.fields,field_description:rma.field_stock_warehouse__rma_out_route_id
1505
+ msgid "RMA out Route"
1506
+ msgstr ""
1507
+
1498
1508
  #. module: rma
1499
1509
  #: model:ir.model.fields,field_description:rma.field_stock_move__rma_receiver_ids
1500
1510
  msgid "RMA receivers"
@@ -1691,6 +1701,11 @@ msgstr ""
1691
1701
  msgid "Return Picking"
1692
1702
  msgstr ""
1693
1703
 
1704
+ #. module: rma
1705
+ #: model:ir.model,name:rma.model_stock_return_picking_line
1706
+ msgid "Return Picking Line"
1707
+ msgstr ""
1708
+
1694
1709
  #. module: rma
1695
1710
  #: model:ir.actions.act_window,name:rma.rma_delivery_wizard_action
1696
1711
  #: model:ir.model.fields.selection,name:rma.selection__rma_delivery_wizard__type__return
@@ -1712,6 +1727,13 @@ msgstr ""
1712
1727
  msgid "Returned"
1713
1728
  msgstr ""
1714
1729
 
1730
+ #. module: rma
1731
+ #. odoo-python
1732
+ #: code:addons/rma/wizard/stock_picking_return.py:0
1733
+ #, python-format
1734
+ msgid "Returned Picking"
1735
+ msgstr ""
1736
+
1715
1737
  #. module: rma
1716
1738
  #: model:ir.model.fields,field_description:rma.field_rma_tag__rma_ids
1717
1739
  msgid "Rma"
@@ -1469,11 +1469,21 @@ msgstr ""
1469
1469
  msgid "RMA draft notification Email"
1470
1470
  msgstr ""
1471
1471
 
1472
+ #. module: rma
1473
+ #: model:ir.model.fields,field_description:rma.field_stock_warehouse__rma_in_route_id
1474
+ msgid "RMA in Route"
1475
+ msgstr ""
1476
+
1472
1477
  #. module: rma
1473
1478
  #: model:mail.message.subtype,description:rma.mt_rma_draft
1474
1479
  msgid "RMA in draft state"
1475
1480
  msgstr ""
1476
1481
 
1482
+ #. module: rma
1483
+ #: model:ir.model.fields,field_description:rma.field_stock_warehouse__rma_out_route_id
1484
+ msgid "RMA out Route"
1485
+ msgstr ""
1486
+
1477
1487
  #. module: rma
1478
1488
  #: model:ir.model.fields,field_description:rma.field_stock_move__rma_receiver_ids
1479
1489
  msgid "RMA receivers"
@@ -1670,6 +1680,11 @@ msgstr ""
1670
1680
  msgid "Return Picking"
1671
1681
  msgstr ""
1672
1682
 
1683
+ #. module: rma
1684
+ #: model:ir.model,name:rma.model_stock_return_picking_line
1685
+ msgid "Return Picking Line"
1686
+ msgstr ""
1687
+
1673
1688
  #. module: rma
1674
1689
  #: model:ir.actions.act_window,name:rma.rma_delivery_wizard_action
1675
1690
  #: model:ir.model.fields.selection,name:rma.selection__rma_delivery_wizard__type__return
@@ -1691,6 +1706,13 @@ msgstr ""
1691
1706
  msgid "Returned"
1692
1707
  msgstr ""
1693
1708
 
1709
+ #. module: rma
1710
+ #. odoo-python
1711
+ #: code:addons/rma/wizard/stock_picking_return.py:0
1712
+ #, python-format
1713
+ msgid "Returned Picking"
1714
+ msgstr ""
1715
+
1694
1716
  #. module: rma
1695
1717
  #: model:ir.model.fields,field_description:rma.field_rma_tag__rma_ids
1696
1718
  msgid "Rma"
@@ -0,0 +1,14 @@
1
+ # Copyright 2024 Tecnativa - Víctor Martínez
2
+ # License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl.html).
3
+
4
+ from openupgradelib import openupgrade
5
+
6
+
7
+ @openupgrade.migrate()
8
+ def migrate(env, version):
9
+ """Similar behavior to create_rma_routes of post_init_hook."""
10
+ warehouses = env["stock.warehouse"].search([])
11
+ warehouses = warehouses.with_context(rma_post_init_hook=True)
12
+ for wh in warehouses:
13
+ route_vals = wh._create_or_update_route()
14
+ wh.write(route_vals)