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.
@@ -7,7 +7,7 @@ Return Merchandise Authorization Management
7
7
  !! This file is generated by oca-gen-addon-readme !!
8
8
  !! changes will be overwritten. !!
9
9
  !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
10
- !! source digest: sha256:fc1ebcf484947c613431d205e84ea341b3dfb003b0d988afd52854643ff91259
10
+ !! source digest: sha256:62d0c2b19f67175025b621f74656297363fe9b028799723026166ed8d24b7b8b
11
11
  !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
12
12
 
13
13
  .. |badge1| image:: https://img.shields.io/badge/maturity-Production%2FStable-green.png
@@ -134,6 +134,9 @@ Known issues / Roadmap
134
134
  * As soon as the picking is selected, the user should select the move,
135
135
  but perhaps stock.move _rec_name could be improved to better show what
136
136
  the product of that move is.
137
+ * Add RMA reception and/or RMA delivery on several steps - 2 or 3 - like
138
+ normal receptions/deliveries. It should be a separate option inside the
139
+ warehouse definition.
137
140
 
138
141
  Bug Tracker
139
142
  ===========
@@ -165,6 +168,7 @@ Contributors
165
168
 
166
169
  * Chafique Delli <chafique.delli@akretion.com>
167
170
  * Giovanni Serra - Ooops <giovanni@ooops404.com>
171
+ * Michael Tietz (MT Software) <mtietz@mt-software.de>
168
172
 
169
173
  Maintainers
170
174
  ~~~~~~~~~~~
@@ -5,7 +5,7 @@
5
5
  {
6
6
  "name": "Return Merchandise Authorization Management",
7
7
  "summary": "Return Merchandise Authorization (RMA)",
8
- "version": "16.0.1.3.0",
8
+ "version": "16.0.2.0.0",
9
9
  "development_status": "Production/Stable",
10
10
  "category": "RMA",
11
11
  "website": "https://github.com/OCA/rma",
odoo/addons/rma/hooks.py CHANGED
@@ -1,4 +1,5 @@
1
1
  # Copyright 2020 Tecnativa - Ernesto Tejeda
2
+ # Copyright 2023 Michael Tietz (MT Software) <mtietz@mt-software.de>
2
3
  # License AGPL-3.0 or later (https://www.gnu.org/licenses/agpl).
3
4
 
4
5
  from odoo import SUPERUSER_ID, api
@@ -24,7 +25,9 @@ def post_init_hook(cr, registry):
24
25
  def create_rma_locations(warehouse):
25
26
  stock_location = env["stock.location"]
26
27
  if not warehouse.rma_loc_id:
27
- rma_location_vals = warehouse._get_rma_location_values()
28
+ rma_location_vals = warehouse._get_rma_location_values(
29
+ {"company_id": warehouse.company_id.id}, warehouse.code
30
+ )
28
31
  warehouse.rma_loc_id = (
29
32
  stock_location.with_context(active_test=False)
30
33
  .create(rma_location_vals)
@@ -61,11 +64,19 @@ def post_init_hook(cr, registry):
61
64
  whs.rma_in_type_id.return_picking_type_id = whs.rma_out_type_id.id
62
65
  whs.rma_out_type_id.return_picking_type_id = whs.rma_in_type_id.id
63
66
 
67
+ def create_rma_routes(warehouses):
68
+ """Create initially rma in/out stock.location.routes and stock.rules"""
69
+ warehouses = warehouses.with_context(rma_post_init_hook=True)
70
+ for wh in warehouses:
71
+ route_vals = wh._create_or_update_route()
72
+ wh.write(route_vals)
73
+
64
74
  # Create rma locations and picking types
65
75
  warehouses = env["stock.warehouse"].search([])
66
76
  for warehouse in warehouses:
67
77
  create_rma_locations(warehouse)
68
78
  create_rma_picking_types(warehouse)
79
+ create_rma_routes(warehouses)
69
80
  # Create rma sequence per company
70
81
  for company in env["res.company"].search([]):
71
82
  company.create_rma_index()
@@ -1555,11 +1555,21 @@ msgstr "RMA-Zählung"
1555
1555
  msgid "RMA draft notification Email"
1556
1556
  msgstr "Benachrichtigungs-E-Mail zum RMA-Entwurf"
1557
1557
 
1558
+ #. module: rma
1559
+ #: model:ir.model.fields,field_description:rma.field_stock_warehouse__rma_in_route_id
1560
+ msgid "RMA in Route"
1561
+ msgstr ""
1562
+
1558
1563
  #. module: rma
1559
1564
  #: model:mail.message.subtype,description:rma.mt_rma_draft
1560
1565
  msgid "RMA in draft state"
1561
1566
  msgstr "RMA im Entwurfszustand"
1562
1567
 
1568
+ #. module: rma
1569
+ #: model:ir.model.fields,field_description:rma.field_stock_warehouse__rma_out_route_id
1570
+ msgid "RMA out Route"
1571
+ msgstr ""
1572
+
1563
1573
  #. module: rma
1564
1574
  #: model:ir.model.fields,field_description:rma.field_stock_move__rma_receiver_ids
1565
1575
  msgid "RMA receivers"
@@ -1764,6 +1774,11 @@ msgstr ""
1764
1774
  msgid "Return Picking"
1765
1775
  msgstr "Inbound Kommissionierung"
1766
1776
 
1777
+ #. module: rma
1778
+ #: model:ir.model,name:rma.model_stock_return_picking_line
1779
+ msgid "Return Picking Line"
1780
+ msgstr ""
1781
+
1767
1782
  #. module: rma
1768
1783
  #: model:ir.actions.act_window,name:rma.rma_delivery_wizard_action
1769
1784
  #: model:ir.model.fields.selection,name:rma.selection__rma_delivery_wizard__type__return
@@ -1787,6 +1802,13 @@ msgstr ""
1787
1802
  msgid "Returned"
1788
1803
  msgstr "Ist zurückgekommen"
1789
1804
 
1805
+ #. module: rma
1806
+ #. odoo-python
1807
+ #: code:addons/rma/wizard/stock_picking_return.py:0
1808
+ #, python-format
1809
+ msgid "Returned Picking"
1810
+ msgstr ""
1811
+
1790
1812
  #. module: rma
1791
1813
  #: model:ir.model.fields,field_description:rma.field_rma_tag__rma_ids
1792
1814
  msgid "Rma"
@@ -1467,11 +1467,21 @@ msgstr ""
1467
1467
  msgid "RMA draft notification Email"
1468
1468
  msgstr ""
1469
1469
 
1470
+ #. module: rma
1471
+ #: model:ir.model.fields,field_description:rma.field_stock_warehouse__rma_in_route_id
1472
+ msgid "RMA in Route"
1473
+ msgstr ""
1474
+
1470
1475
  #. module: rma
1471
1476
  #: model:mail.message.subtype,description:rma.mt_rma_draft
1472
1477
  msgid "RMA in draft state"
1473
1478
  msgstr ""
1474
1479
 
1480
+ #. module: rma
1481
+ #: model:ir.model.fields,field_description:rma.field_stock_warehouse__rma_out_route_id
1482
+ msgid "RMA out Route"
1483
+ msgstr ""
1484
+
1475
1485
  #. module: rma
1476
1486
  #: model:ir.model.fields,field_description:rma.field_stock_move__rma_receiver_ids
1477
1487
  msgid "RMA receivers"
@@ -1668,6 +1678,11 @@ msgstr ""
1668
1678
  msgid "Return Picking"
1669
1679
  msgstr ""
1670
1680
 
1681
+ #. module: rma
1682
+ #: model:ir.model,name:rma.model_stock_return_picking_line
1683
+ msgid "Return Picking Line"
1684
+ msgstr ""
1685
+
1671
1686
  #. module: rma
1672
1687
  #: model:ir.actions.act_window,name:rma.rma_delivery_wizard_action
1673
1688
  #: model:ir.model.fields.selection,name:rma.selection__rma_delivery_wizard__type__return
@@ -1689,6 +1704,13 @@ msgstr ""
1689
1704
  msgid "Returned"
1690
1705
  msgstr ""
1691
1706
 
1707
+ #. module: rma
1708
+ #. odoo-python
1709
+ #: code:addons/rma/wizard/stock_picking_return.py:0
1710
+ #, python-format
1711
+ msgid "Returned Picking"
1712
+ msgstr ""
1713
+
1692
1714
  #. module: rma
1693
1715
  #: model:ir.model.fields,field_description:rma.field_rma_tag__rma_ids
1694
1716
  msgid "Rma"
@@ -1622,11 +1622,21 @@ msgstr "Cantidad de RMAs"
1622
1622
  msgid "RMA draft notification Email"
1623
1623
  msgstr "Correo de notificación de borrador de RMA"
1624
1624
 
1625
+ #. module: rma
1626
+ #: model:ir.model.fields,field_description:rma.field_stock_warehouse__rma_in_route_id
1627
+ msgid "RMA in Route"
1628
+ msgstr ""
1629
+
1625
1630
  #. module: rma
1626
1631
  #: model:mail.message.subtype,description:rma.mt_rma_draft
1627
1632
  msgid "RMA in draft state"
1628
1633
  msgstr "RMA en estado borrador"
1629
1634
 
1635
+ #. module: rma
1636
+ #: model:ir.model.fields,field_description:rma.field_stock_warehouse__rma_out_route_id
1637
+ msgid "RMA out Route"
1638
+ msgstr ""
1639
+
1630
1640
  #. module: rma
1631
1641
  #: model:ir.model.fields,field_description:rma.field_stock_move__rma_receiver_ids
1632
1642
  msgid "RMA receivers"
@@ -1832,6 +1842,11 @@ msgstr "Lugar de devolución"
1832
1842
  msgid "Return Picking"
1833
1843
  msgstr "Albarán de devolución"
1834
1844
 
1845
+ #. module: rma
1846
+ #: model:ir.model,name:rma.model_stock_return_picking_line
1847
+ msgid "Return Picking Line"
1848
+ msgstr ""
1849
+
1835
1850
  #. module: rma
1836
1851
  #: model:ir.actions.act_window,name:rma.rma_delivery_wizard_action
1837
1852
  #: model:ir.model.fields.selection,name:rma.selection__rma_delivery_wizard__type__return
@@ -1855,6 +1870,13 @@ msgstr ""
1855
1870
  msgid "Returned"
1856
1871
  msgstr "Devuelto"
1857
1872
 
1873
+ #. module: rma
1874
+ #. odoo-python
1875
+ #: code:addons/rma/wizard/stock_picking_return.py:0
1876
+ #, python-format
1877
+ msgid "Returned Picking"
1878
+ msgstr ""
1879
+
1858
1880
  #. module: rma
1859
1881
  #: model:ir.model.fields,field_description:rma.field_rma_tag__rma_ids
1860
1882
  msgid "Rma"
@@ -1608,11 +1608,21 @@ msgstr "Nombre de RMA"
1608
1608
  msgid "RMA draft notification Email"
1609
1609
  msgstr "Email de notification brouillon RMA"
1610
1610
 
1611
+ #. module: rma
1612
+ #: model:ir.model.fields,field_description:rma.field_stock_warehouse__rma_in_route_id
1613
+ msgid "RMA in Route"
1614
+ msgstr ""
1615
+
1611
1616
  #. module: rma
1612
1617
  #: model:mail.message.subtype,description:rma.mt_rma_draft
1613
1618
  msgid "RMA in draft state"
1614
1619
  msgstr "RMA au statut brouillon"
1615
1620
 
1621
+ #. module: rma
1622
+ #: model:ir.model.fields,field_description:rma.field_stock_warehouse__rma_out_route_id
1623
+ msgid "RMA out Route"
1624
+ msgstr ""
1625
+
1616
1626
  #. module: rma
1617
1627
  #: model:ir.model.fields,field_description:rma.field_stock_move__rma_receiver_ids
1618
1628
  msgid "RMA receivers"
@@ -1818,6 +1828,11 @@ msgstr "Emplacement de retour"
1818
1828
  msgid "Return Picking"
1819
1829
  msgstr "Ordres de retour"
1820
1830
 
1831
+ #. module: rma
1832
+ #: model:ir.model,name:rma.model_stock_return_picking_line
1833
+ msgid "Return Picking Line"
1834
+ msgstr ""
1835
+
1821
1836
  #. module: rma
1822
1837
  #: model:ir.actions.act_window,name:rma.rma_delivery_wizard_action
1823
1838
  #: model:ir.model.fields.selection,name:rma.selection__rma_delivery_wizard__type__return
@@ -1833,14 +1848,21 @@ msgid ""
1833
1848
  "Return: <a href=\"#\" data-oe-model=\"stock.picking\" data-oe-id=\"%(id)d\">"
1834
1849
  "%(name)s</a> has been created."
1835
1850
  msgstr ""
1836
- "Retour : <a href=\"#\" data-oe-model=\"stock.picking\" data-oe-id=\"%(id)d\""
1837
- ">%(name)s</a> a été créé."
1851
+ "Retour : <a href=\"#\" data-oe-model=\"stock.picking\" data-oe-id=\"%(id)d\">"
1852
+ "%(name)s</a> a été créé."
1838
1853
 
1839
1854
  #. module: rma
1840
1855
  #: model:ir.model.fields.selection,name:rma.selection__rma__state__returned
1841
1856
  msgid "Returned"
1842
1857
  msgstr "Retourné"
1843
1858
 
1859
+ #. module: rma
1860
+ #. odoo-python
1861
+ #: code:addons/rma/wizard/stock_picking_return.py:0
1862
+ #, python-format
1863
+ msgid "Returned Picking"
1864
+ msgstr ""
1865
+
1844
1866
  #. module: rma
1845
1867
  #: model:ir.model.fields,field_description:rma.field_rma_tag__rma_ids
1846
1868
  msgid "Rma"
@@ -1980,8 +2002,8 @@ msgid ""
1980
2002
  "Split: <a href=\"#\" data-oe-model=\"rma\" data-oe-id=\"%(id)d\">%(name)s</"
1981
2003
  "a> has been created."
1982
2004
  msgstr ""
1983
- "Division : <a href=\"#\" data-oe-model=\"rma\" data-oe-id=\"%(id)d\""
1984
- ">%(name)s</a> a été créé."
2005
+ "Division : <a href=\"#\" data-oe-model=\"rma\" data-oe-id=\"%(id)d\">"
2006
+ "%(name)s</a> a été créé."
1985
2007
 
1986
2008
  #. module: rma
1987
2009
  #: model:ir.model.fields,field_description:rma.field_rma__state
@@ -2259,7 +2281,8 @@ msgstr ""
2259
2281
  #. module: rma
2260
2282
  #: model_terms:ir.ui.view,arch_db:rma.res_config_settings_view_form
2261
2283
  msgid "When the RMA is confirmed, send an automatic information email."
2262
- msgstr "Quand la RMA est confirmée, envoyer un email d'information automatique."
2284
+ msgstr ""
2285
+ "Quand la RMA est confirmée, envoyer un email d'information automatique."
2263
2286
 
2264
2287
  #. module: rma
2265
2288
  #: model_terms:ir.ui.view,arch_db:rma.res_config_settings_view_form
@@ -2361,5 +2384,5 @@ msgid ""
2361
2384
  "{{object.company_id.name}} Your RMA has been succesfully created (Ref "
2362
2385
  "{{object.name or 'n/a' }})"
2363
2386
  msgstr ""
2364
- "{{object.company_id.name}} Votre RMA a été crée avec succès(Ref {{"
2365
- "object.name or 'n/a' }})"
2387
+ "{{object.company_id.name}} Votre RMA a été crée avec succès(Ref {{object."
2388
+ "name or 'n/a' }})"
@@ -35,8 +35,8 @@ msgstr "(object._get_report_base_filename())"
35
35
  msgid ""
36
36
  "<b>E-mail subject:</b> %(subject)s<br/><br/><b>E-mail body:</b><br/>%(body)s"
37
37
  msgstr ""
38
- "<b>Soggetto e-mail:</b> %(subject)s<br/><br/><b>Corpo e-mail:</b><br/"
39
- ">%(body)s"
38
+ "<b>Soggetto e-mail:</b> %(subject)s<br/><br/><b>Corpo e-mail:</b><br/>"
39
+ "%(body)s"
40
40
 
41
41
  #. module: rma
42
42
  #: model:mail.template,body_html:rma.mail_template_rma_notification
@@ -178,8 +178,8 @@ msgstr ""
178
178
  " </strong>\n"
179
179
  " on\n"
180
180
  " <t t-out=\"object.company_id.name\"></t>\n"
181
- " . Il nostro team la controllerà e validerà quanto prima."
182
- "\n"
181
+ " . Il nostro team la controllerà e validerà quanto "
182
+ "prima.\n"
183
183
  " <br>\n"
184
184
  " <br>\n"
185
185
  " Non esistate a contattarci in caso di dubbi.\n"
@@ -242,8 +242,8 @@ msgid ""
242
242
  " </span>"
243
243
  msgstr ""
244
244
  "<span class=\"badge badge-danger label-text-align\">\n"
245
- " <i class=\"fa fa-fw fa-times\"/>"
246
- "\n"
245
+ " <i class=\"fa fa-fw fa-times\"/"
246
+ ">\n"
247
247
  " Annullata\n"
248
248
  " </span>"
249
249
 
@@ -270,8 +270,8 @@ msgid ""
270
270
  " </span>"
271
271
  msgstr ""
272
272
  "<span class=\"badge badge-info label-text-align\">\n"
273
- " <i class=\"fa fa-fw fa-clock-o\""
274
- "/>\n"
273
+ " <i class=\"fa fa-fw fa-clock-o\"/"
274
+ ">\n"
275
275
  " Preparazione\n"
276
276
  " </span>"
277
277
 
@@ -298,8 +298,8 @@ msgid ""
298
298
  " </span>"
299
299
  msgstr ""
300
300
  "<span class=\"badge badge-success label-text-align\">\n"
301
- " <i class=\"fa fa-fw fa-truck\"/>"
302
- "\n"
301
+ " <i class=\"fa fa-fw fa-truck\"/"
302
+ ">\n"
303
303
  " Spedita\n"
304
304
  " </span>"
305
305
 
@@ -326,8 +326,8 @@ msgid ""
326
326
  " </span>"
327
327
  msgstr ""
328
328
  "<span class=\"badge badge-warning label-text-align\">\n"
329
- " <i class=\"fa fa-fw fa-clock-o\""
330
- "/>\n"
329
+ " <i class=\"fa fa-fw fa-clock-o\"/"
330
+ ">\n"
331
331
  " Parzialmente disponibile\n"
332
332
  " </span>"
333
333
 
@@ -1615,11 +1615,21 @@ msgstr "Conteggio RMA"
1615
1615
  msgid "RMA draft notification Email"
1616
1616
  msgstr "E-mail di notifica bozza RMA"
1617
1617
 
1618
+ #. module: rma
1619
+ #: model:ir.model.fields,field_description:rma.field_stock_warehouse__rma_in_route_id
1620
+ msgid "RMA in Route"
1621
+ msgstr ""
1622
+
1618
1623
  #. module: rma
1619
1624
  #: model:mail.message.subtype,description:rma.mt_rma_draft
1620
1625
  msgid "RMA in draft state"
1621
1626
  msgstr "RMA in stato bozza"
1622
1627
 
1628
+ #. module: rma
1629
+ #: model:ir.model.fields,field_description:rma.field_stock_warehouse__rma_out_route_id
1630
+ msgid "RMA out Route"
1631
+ msgstr ""
1632
+
1623
1633
  #. module: rma
1624
1634
  #: model:ir.model.fields,field_description:rma.field_stock_move__rma_receiver_ids
1625
1635
  msgid "RMA receivers"
@@ -1824,6 +1834,11 @@ msgstr "Ubicazione di reso"
1824
1834
  msgid "Return Picking"
1825
1835
  msgstr "Prelievo di reso"
1826
1836
 
1837
+ #. module: rma
1838
+ #: model:ir.model,name:rma.model_stock_return_picking_line
1839
+ msgid "Return Picking Line"
1840
+ msgstr ""
1841
+
1827
1842
  #. module: rma
1828
1843
  #: model:ir.actions.act_window,name:rma.rma_delivery_wizard_action
1829
1844
  #: model:ir.model.fields.selection,name:rma.selection__rma_delivery_wizard__type__return
@@ -1839,14 +1854,21 @@ msgid ""
1839
1854
  "Return: <a href=\"#\" data-oe-model=\"stock.picking\" data-oe-id=\"%(id)d\">"
1840
1855
  "%(name)s</a> has been created."
1841
1856
  msgstr ""
1842
- "Reso: <a href=\"#\" data-oe-model=\"stock.picking\" data-oe-id=\"%(id)d\""
1843
- ">%(name)s</a> creato."
1857
+ "Reso: <a href=\"#\" data-oe-model=\"stock.picking\" data-oe-id=\"%(id)d\">"
1858
+ "%(name)s</a> creato."
1844
1859
 
1845
1860
  #. module: rma
1846
1861
  #: model:ir.model.fields.selection,name:rma.selection__rma__state__returned
1847
1862
  msgid "Returned"
1848
1863
  msgstr "Restituito"
1849
1864
 
1865
+ #. module: rma
1866
+ #. odoo-python
1867
+ #: code:addons/rma/wizard/stock_picking_return.py:0
1868
+ #, python-format
1869
+ msgid "Returned Picking"
1870
+ msgstr ""
1871
+
1850
1872
  #. module: rma
1851
1873
  #: model:ir.model.fields,field_description:rma.field_rma_tag__rma_ids
1852
1874
  msgid "Rma"
@@ -1984,8 +2006,8 @@ msgid ""
1984
2006
  "Split: <a href=\"#\" data-oe-model=\"rma\" data-oe-id=\"%(id)d\">%(name)s</"
1985
2007
  "a> has been created."
1986
2008
  msgstr ""
1987
- "Divisione: <a href=\"#\" data-oe-model=\"rma\" data-oe-id=\"%(id)d\""
1988
- ">%(name)s</a> creata."
2009
+ "Divisione: <a href=\"#\" data-oe-model=\"rma\" data-oe-id=\"%(id)d\">"
2010
+ "%(name)s</a> creata."
1989
2011
 
1990
2012
  #. module: rma
1991
2013
  #: model:ir.model.fields,field_description:rma.field_rma__state
@@ -2374,8 +2396,8 @@ msgid ""
2374
2396
  "{{object.company_id.name}} Your RMA has been succesfully created (Ref "
2375
2397
  "{{object.name or 'n/a' }})"
2376
2398
  msgstr ""
2377
- "{{object.company_id.name}} La vostra RMA è stata creata con successo (rif. {{"
2378
- "object.name or 'n/a' }})"
2399
+ "{{object.company_id.name}} La vostra RMA è stata creata con successo (rif. "
2400
+ "{{object.name or 'n/a' }})"
2379
2401
 
2380
2402
  #~ msgid "${(object.name or '')}"
2381
2403
  #~ msgstr "${(object.name or '')}"
@@ -1467,11 +1467,21 @@ msgstr ""
1467
1467
  msgid "RMA draft notification Email"
1468
1468
  msgstr ""
1469
1469
 
1470
+ #. module: rma
1471
+ #: model:ir.model.fields,field_description:rma.field_stock_warehouse__rma_in_route_id
1472
+ msgid "RMA in Route"
1473
+ msgstr ""
1474
+
1470
1475
  #. module: rma
1471
1476
  #: model:mail.message.subtype,description:rma.mt_rma_draft
1472
1477
  msgid "RMA in draft state"
1473
1478
  msgstr ""
1474
1479
 
1480
+ #. module: rma
1481
+ #: model:ir.model.fields,field_description:rma.field_stock_warehouse__rma_out_route_id
1482
+ msgid "RMA out Route"
1483
+ msgstr ""
1484
+
1475
1485
  #. module: rma
1476
1486
  #: model:ir.model.fields,field_description:rma.field_stock_move__rma_receiver_ids
1477
1487
  msgid "RMA receivers"
@@ -1668,6 +1678,11 @@ msgstr ""
1668
1678
  msgid "Return Picking"
1669
1679
  msgstr ""
1670
1680
 
1681
+ #. module: rma
1682
+ #: model:ir.model,name:rma.model_stock_return_picking_line
1683
+ msgid "Return Picking Line"
1684
+ msgstr ""
1685
+
1671
1686
  #. module: rma
1672
1687
  #: model:ir.actions.act_window,name:rma.rma_delivery_wizard_action
1673
1688
  #: model:ir.model.fields.selection,name:rma.selection__rma_delivery_wizard__type__return
@@ -1689,6 +1704,13 @@ msgstr ""
1689
1704
  msgid "Returned"
1690
1705
  msgstr ""
1691
1706
 
1707
+ #. module: rma
1708
+ #. odoo-python
1709
+ #: code:addons/rma/wizard/stock_picking_return.py:0
1710
+ #, python-format
1711
+ msgid "Returned Picking"
1712
+ msgstr ""
1713
+
1692
1714
  #. module: rma
1693
1715
  #: model:ir.model.fields,field_description:rma.field_rma_tag__rma_ids
1694
1716
  msgid "Rma"
@@ -1494,11 +1494,21 @@ msgstr "Contagem de RMA"
1494
1494
  msgid "RMA draft notification Email"
1495
1495
  msgstr ""
1496
1496
 
1497
+ #. module: rma
1498
+ #: model:ir.model.fields,field_description:rma.field_stock_warehouse__rma_in_route_id
1499
+ msgid "RMA in Route"
1500
+ msgstr ""
1501
+
1497
1502
  #. module: rma
1498
1503
  #: model:mail.message.subtype,description:rma.mt_rma_draft
1499
1504
  msgid "RMA in draft state"
1500
1505
  msgstr "RMA em estado de rascunho"
1501
1506
 
1507
+ #. module: rma
1508
+ #: model:ir.model.fields,field_description:rma.field_stock_warehouse__rma_out_route_id
1509
+ msgid "RMA out Route"
1510
+ msgstr ""
1511
+
1502
1512
  #. module: rma
1503
1513
  #: model:ir.model.fields,field_description:rma.field_stock_move__rma_receiver_ids
1504
1514
  msgid "RMA receivers"
@@ -1695,6 +1705,11 @@ msgstr ""
1695
1705
  msgid "Return Picking"
1696
1706
  msgstr "Operação de Devolução"
1697
1707
 
1708
+ #. module: rma
1709
+ #: model:ir.model,name:rma.model_stock_return_picking_line
1710
+ msgid "Return Picking Line"
1711
+ msgstr ""
1712
+
1698
1713
  #. module: rma
1699
1714
  #: model:ir.actions.act_window,name:rma.rma_delivery_wizard_action
1700
1715
  #: model:ir.model.fields.selection,name:rma.selection__rma_delivery_wizard__type__return
@@ -1716,6 +1731,13 @@ msgstr ""
1716
1731
  msgid "Returned"
1717
1732
  msgstr "Devolvido"
1718
1733
 
1734
+ #. module: rma
1735
+ #. odoo-python
1736
+ #: code:addons/rma/wizard/stock_picking_return.py:0
1737
+ #, python-format
1738
+ msgid "Returned Picking"
1739
+ msgstr ""
1740
+
1719
1741
  #. module: rma
1720
1742
  #: model:ir.model.fields,field_description:rma.field_rma_tag__rma_ids
1721
1743
  msgid "Rma"
@@ -1493,11 +1493,21 @@ msgstr "Contagem de RMA"
1493
1493
  msgid "RMA draft notification Email"
1494
1494
  msgstr ""
1495
1495
 
1496
+ #. module: rma
1497
+ #: model:ir.model.fields,field_description:rma.field_stock_warehouse__rma_in_route_id
1498
+ msgid "RMA in Route"
1499
+ msgstr ""
1500
+
1496
1501
  #. module: rma
1497
1502
  #: model:mail.message.subtype,description:rma.mt_rma_draft
1498
1503
  msgid "RMA in draft state"
1499
1504
  msgstr ""
1500
1505
 
1506
+ #. module: rma
1507
+ #: model:ir.model.fields,field_description:rma.field_stock_warehouse__rma_out_route_id
1508
+ msgid "RMA out Route"
1509
+ msgstr ""
1510
+
1501
1511
  #. module: rma
1502
1512
  #: model:ir.model.fields,field_description:rma.field_stock_move__rma_receiver_ids
1503
1513
  msgid "RMA receivers"
@@ -1694,6 +1704,11 @@ msgstr ""
1694
1704
  msgid "Return Picking"
1695
1705
  msgstr "Retorno de Coleta"
1696
1706
 
1707
+ #. module: rma
1708
+ #: model:ir.model,name:rma.model_stock_return_picking_line
1709
+ msgid "Return Picking Line"
1710
+ msgstr ""
1711
+
1697
1712
  #. module: rma
1698
1713
  #: model:ir.actions.act_window,name:rma.rma_delivery_wizard_action
1699
1714
  #: model:ir.model.fields.selection,name:rma.selection__rma_delivery_wizard__type__return
@@ -1715,6 +1730,13 @@ msgstr ""
1715
1730
  msgid "Returned"
1716
1731
  msgstr "Retornado(a)"
1717
1732
 
1733
+ #. module: rma
1734
+ #. odoo-python
1735
+ #: code:addons/rma/wizard/stock_picking_return.py:0
1736
+ #, python-format
1737
+ msgid "Returned Picking"
1738
+ msgstr ""
1739
+
1718
1740
  #. module: rma
1719
1741
  #: model:ir.model.fields,field_description:rma.field_rma_tag__rma_ids
1720
1742
  msgid "Rma"
@@ -1459,11 +1459,21 @@ msgstr ""
1459
1459
  msgid "RMA draft notification Email"
1460
1460
  msgstr ""
1461
1461
 
1462
+ #. module: rma
1463
+ #: model:ir.model.fields,field_description:rma.field_stock_warehouse__rma_in_route_id
1464
+ msgid "RMA in Route"
1465
+ msgstr ""
1466
+
1462
1467
  #. module: rma
1463
1468
  #: model:mail.message.subtype,description:rma.mt_rma_draft
1464
1469
  msgid "RMA in draft state"
1465
1470
  msgstr ""
1466
1471
 
1472
+ #. module: rma
1473
+ #: model:ir.model.fields,field_description:rma.field_stock_warehouse__rma_out_route_id
1474
+ msgid "RMA out Route"
1475
+ msgstr ""
1476
+
1467
1477
  #. module: rma
1468
1478
  #: model:ir.model.fields,field_description:rma.field_stock_move__rma_receiver_ids
1469
1479
  msgid "RMA receivers"
@@ -1660,6 +1670,11 @@ msgstr ""
1660
1670
  msgid "Return Picking"
1661
1671
  msgstr ""
1662
1672
 
1673
+ #. module: rma
1674
+ #: model:ir.model,name:rma.model_stock_return_picking_line
1675
+ msgid "Return Picking Line"
1676
+ msgstr ""
1677
+
1663
1678
  #. module: rma
1664
1679
  #: model:ir.actions.act_window,name:rma.rma_delivery_wizard_action
1665
1680
  #: model:ir.model.fields.selection,name:rma.selection__rma_delivery_wizard__type__return
@@ -1681,6 +1696,13 @@ msgstr ""
1681
1696
  msgid "Returned"
1682
1697
  msgstr ""
1683
1698
 
1699
+ #. module: rma
1700
+ #. odoo-python
1701
+ #: code:addons/rma/wizard/stock_picking_return.py:0
1702
+ #, python-format
1703
+ msgid "Returned Picking"
1704
+ msgstr ""
1705
+
1684
1706
  #. module: rma
1685
1707
  #: model:ir.model.fields,field_description:rma.field_rma_tag__rma_ids
1686
1708
  msgid "Rma"