odoo-addon-rma 16.0.2.0.3__py3-none-any.whl → 16.0.3.0.0__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.
- odoo/addons/rma/README.rst +3 -1
- odoo/addons/rma/__manifest__.py +1 -1
- odoo/addons/rma/i18n/rma.pot +6 -0
- odoo/addons/rma/models/rma.py +1 -0
- odoo/addons/rma/readme/CONTRIBUTORS.rst +2 -0
- odoo/addons/rma/static/description/index.html +10 -5
- odoo/addons/rma/tests/test_rma.py +22 -6
- odoo/addons/rma/wizard/stock_picking_return.py +19 -0
- odoo/addons/rma/wizard/stock_picking_return_views.xml +11 -1
- {odoo_addon_rma-16.0.2.0.3.dist-info → odoo_addon_rma-16.0.3.0.0.dist-info}/METADATA +4 -5
- {odoo_addon_rma-16.0.2.0.3.dist-info → odoo_addon_rma-16.0.3.0.0.dist-info}/RECORD +13 -13
- {odoo_addon_rma-16.0.2.0.3.dist-info → odoo_addon_rma-16.0.3.0.0.dist-info}/WHEEL +0 -0
- {odoo_addon_rma-16.0.2.0.3.dist-info → odoo_addon_rma-16.0.3.0.0.dist-info}/top_level.txt +0 -0
odoo/addons/rma/README.rst
CHANGED
@@ -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:
|
10
|
+
!! source digest: sha256:9c2ee7741ea3bc40321ec64b162a9c87030246d4bf54c2bd1eb6de8e8f8fd385
|
11
11
|
!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
|
12
12
|
|
13
13
|
.. |badge1| image:: https://img.shields.io/badge/maturity-Production%2FStable-green.png
|
@@ -169,6 +169,8 @@ Contributors
|
|
169
169
|
* Chafique Delli <chafique.delli@akretion.com>
|
170
170
|
* Giovanni Serra - Ooops <giovanni@ooops404.com>
|
171
171
|
* Michael Tietz (MT Software) <mtietz@mt-software.de>
|
172
|
+
* Jacques-Etienne Baudoux - BCIM <je@bcim.be>
|
173
|
+
* Souheil Bejaoui - ACSONE SA/NV <souheil.bejaoui@acsone.eu>
|
172
174
|
|
173
175
|
Maintainers
|
174
176
|
~~~~~~~~~~~
|
odoo/addons/rma/__manifest__.py
CHANGED
@@ -5,7 +5,7 @@
|
|
5
5
|
{
|
6
6
|
"name": "Return Merchandise Authorization Management",
|
7
7
|
"summary": "Return Merchandise Authorization (RMA)",
|
8
|
-
"version": "16.0.
|
8
|
+
"version": "16.0.3.0.0",
|
9
9
|
"development_status": "Production/Stable",
|
10
10
|
"category": "RMA",
|
11
11
|
"website": "https://github.com/OCA/rma",
|
odoo/addons/rma/i18n/rma.pot
CHANGED
@@ -1136,6 +1136,11 @@ msgstr ""
|
|
1136
1136
|
msgid "Number of messages with delivery error"
|
1137
1137
|
msgstr ""
|
1138
1138
|
|
1139
|
+
#. module: rma
|
1140
|
+
#: model:ir.model.fields,field_description:rma.field_stock_return_picking_line__rma_operation_id
|
1141
|
+
msgid "Operation"
|
1142
|
+
msgstr ""
|
1143
|
+
|
1139
1144
|
#. module: rma
|
1140
1145
|
#: model:ir.model.fields,help:rma.field_rma_team__alias_force_thread_id
|
1141
1146
|
msgid ""
|
@@ -1639,6 +1644,7 @@ msgstr ""
|
|
1639
1644
|
|
1640
1645
|
#. module: rma
|
1641
1646
|
#: model:ir.model.fields,field_description:rma.field_rma__operation_id
|
1647
|
+
#: model:ir.model.fields,field_description:rma.field_stock_return_picking__rma_operation_id
|
1642
1648
|
msgid "Requested operation"
|
1643
1649
|
msgstr ""
|
1644
1650
|
|
odoo/addons/rma/models/rma.py
CHANGED
@@ -8,10 +8,11 @@
|
|
8
8
|
|
9
9
|
/*
|
10
10
|
:Author: David Goodger (goodger@python.org)
|
11
|
-
:Id: $Id: html4css1.css
|
11
|
+
:Id: $Id: html4css1.css 9511 2024-01-13 09:50:07Z milde $
|
12
12
|
:Copyright: This stylesheet has been placed in the public domain.
|
13
13
|
|
14
14
|
Default cascading style sheet for the HTML output of Docutils.
|
15
|
+
Despite the name, some widely supported CSS2 features are used.
|
15
16
|
|
16
17
|
See https://docutils.sourceforge.io/docs/howto/html-stylesheets.html for how to
|
17
18
|
customize this style sheet.
|
@@ -274,7 +275,7 @@ pre.literal-block, pre.doctest-block, pre.math, pre.code {
|
|
274
275
|
margin-left: 2em ;
|
275
276
|
margin-right: 2em }
|
276
277
|
|
277
|
-
pre.code .ln { color:
|
278
|
+
pre.code .ln { color: gray; } /* line numbers */
|
278
279
|
pre.code, code { background-color: #eeeeee }
|
279
280
|
pre.code .comment, code .comment { color: #5C6576 }
|
280
281
|
pre.code .keyword, code .keyword { color: #3B0D06; font-weight: bold }
|
@@ -300,7 +301,7 @@ span.option {
|
|
300
301
|
span.pre {
|
301
302
|
white-space: pre }
|
302
303
|
|
303
|
-
span.problematic {
|
304
|
+
span.problematic, pre.problematic {
|
304
305
|
color: red }
|
305
306
|
|
306
307
|
span.section-subtitle {
|
@@ -366,7 +367,7 @@ ul.auto-toc {
|
|
366
367
|
!! This file is generated by oca-gen-addon-readme !!
|
367
368
|
!! changes will be overwritten. !!
|
368
369
|
!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
|
369
|
-
!! source digest: sha256:
|
370
|
+
!! source digest: sha256:9c2ee7741ea3bc40321ec64b162a9c87030246d4bf54c2bd1eb6de8e8f8fd385
|
370
371
|
!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! -->
|
371
372
|
<p><a class="reference external image-reference" href="https://odoo-community.org/page/development-status"><img alt="Production/Stable" src="https://img.shields.io/badge/maturity-Production%2FStable-green.png" /></a> <a class="reference external image-reference" href="http://www.gnu.org/licenses/agpl-3.0-standalone.html"><img alt="License: AGPL-3" src="https://img.shields.io/badge/licence-AGPL--3-blue.png" /></a> <a class="reference external image-reference" href="https://github.com/OCA/rma/tree/16.0/rma"><img alt="OCA/rma" src="https://img.shields.io/badge/github-OCA%2Frma-lightgray.png?logo=github" /></a> <a class="reference external image-reference" href="https://translation.odoo-community.org/projects/rma-16-0/rma-16-0-rma"><img alt="Translate me on Weblate" src="https://img.shields.io/badge/weblate-Translate%20me-F47D42.png" /></a> <a class="reference external image-reference" href="https://runboat.odoo-community.org/builds?repo=OCA/rma&target_branch=16.0"><img alt="Try me on Runboat" src="https://img.shields.io/badge/runboat-Try%20me-875A7B.png" /></a></p>
|
372
373
|
<p>This module allows you to manage <a class="reference external" href="https://en.wikipedia.org/wiki/Return_merchandise_authorization">Return Merchandise Authorization (RMA)</a>.
|
@@ -522,12 +523,16 @@ If you spotted it first, help us to smash it by providing a detailed and welcome
|
|
522
523
|
<li>Chafique Delli <<a class="reference external" href="mailto:chafique.delli@akretion.com">chafique.delli@akretion.com</a>></li>
|
523
524
|
<li>Giovanni Serra - Ooops <<a class="reference external" href="mailto:giovanni@ooops404.com">giovanni@ooops404.com</a>></li>
|
524
525
|
<li>Michael Tietz (MT Software) <<a class="reference external" href="mailto:mtietz@mt-software.de">mtietz@mt-software.de</a>></li>
|
526
|
+
<li>Jacques-Etienne Baudoux - BCIM <<a class="reference external" href="mailto:je@bcim.be">je@bcim.be</a>></li>
|
527
|
+
<li>Souheil Bejaoui - ACSONE SA/NV <<a class="reference external" href="mailto:souheil.bejaoui@acsone.eu">souheil.bejaoui@acsone.eu</a>></li>
|
525
528
|
</ul>
|
526
529
|
</div>
|
527
530
|
<div class="section" id="maintainers">
|
528
531
|
<h2><a class="toc-backref" href="#toc-entry-8">Maintainers</a></h2>
|
529
532
|
<p>This module is maintained by the OCA.</p>
|
530
|
-
<a class="reference external image-reference" href="https://odoo-community.org"
|
533
|
+
<a class="reference external image-reference" href="https://odoo-community.org">
|
534
|
+
<img alt="Odoo Community Association" src="https://odoo-community.org/logo.png" />
|
535
|
+
</a>
|
531
536
|
<p>OCA, or the Odoo Community Association, is a nonprofit organization whose
|
532
537
|
mission is to support the collaborative development of Odoo features and
|
533
538
|
promote its widespread use.</p>
|
@@ -79,8 +79,11 @@ class TestRma(TransactionCase):
|
|
79
79
|
cls.warehouse = cls.env.ref("stock.warehouse0")
|
80
80
|
# Ensure grouping
|
81
81
|
cls.env.company.rma_return_grouping = True
|
82
|
+
cls.operation = cls.env.ref("rma.rma_operation_replace")
|
82
83
|
|
83
|
-
def _create_rma(
|
84
|
+
def _create_rma(
|
85
|
+
self, partner=None, product=None, qty=None, location=None, operation=None
|
86
|
+
):
|
84
87
|
vals = {}
|
85
88
|
if partner:
|
86
89
|
vals["partner_id"] = partner.id
|
@@ -90,12 +93,16 @@ class TestRma(TransactionCase):
|
|
90
93
|
vals["product_uom_qty"] = qty
|
91
94
|
if location:
|
92
95
|
vals["location_id"] = location.id
|
96
|
+
if operation:
|
97
|
+
vals["operation_id"] = operation.id
|
98
|
+
elif operation is None:
|
99
|
+
vals["operation_id"] = self.operation.id
|
93
100
|
return self.env["rma"].create(vals)
|
94
101
|
|
95
102
|
def _create_confirm_receive(
|
96
|
-
self, partner=None, product=None, qty=None, location=None
|
103
|
+
self, partner=None, product=None, qty=None, location=None, operation=None
|
97
104
|
):
|
98
|
-
rma = self._create_rma(partner, product, qty, location)
|
105
|
+
rma = self._create_rma(partner, product, qty, location, operation)
|
99
106
|
rma.action_confirm()
|
100
107
|
rma.reception_move_id.quantity_done = rma.product_uom_qty
|
101
108
|
rma.reception_move_id.picking_id._action_done()
|
@@ -227,19 +234,26 @@ class TestRmaCase(TestRma):
|
|
227
234
|
self.assertEqual(rma.product_uom, self.product.uom_id)
|
228
235
|
|
229
236
|
def test_ensure_required_fields_on_confirm(self):
|
230
|
-
rma = self._create_rma()
|
237
|
+
rma = self._create_rma(operation=False)
|
231
238
|
with self.assertRaises(ValidationError) as e:
|
232
239
|
rma.action_confirm()
|
233
240
|
self.assertEqual(
|
234
241
|
e.exception.args[0],
|
235
|
-
"Required field(s):\nCustomer\nShipping Address\nInvoice Address\nProduct"
|
242
|
+
"Required field(s):\nCustomer\nShipping Address\nInvoice Address\nProduct"
|
243
|
+
"\nRequested operation",
|
236
244
|
)
|
237
245
|
rma.partner_id = self.partner.id
|
238
246
|
with self.assertRaises(ValidationError) as e:
|
239
247
|
rma.action_confirm()
|
240
|
-
self.assertEqual(
|
248
|
+
self.assertEqual(
|
249
|
+
e.exception.args[0], "Required field(s):\nProduct\nRequested operation"
|
250
|
+
)
|
241
251
|
rma.product_id = self.product.id
|
242
252
|
rma.location_id = self.rma_loc.id
|
253
|
+
with self.assertRaises(ValidationError) as e:
|
254
|
+
rma.action_confirm()
|
255
|
+
self.assertEqual(e.exception.args[0], "Required field(s):\nRequested operation")
|
256
|
+
rma.operation_id = self.operation
|
243
257
|
rma.action_confirm()
|
244
258
|
self.assertEqual(rma.state, "confirmed")
|
245
259
|
|
@@ -687,6 +701,7 @@ class TestRmaCase(TestRma):
|
|
687
701
|
)
|
688
702
|
)
|
689
703
|
stock_return_picking_form.create_rma = True
|
704
|
+
stock_return_picking_form.rma_operation_id = self.operation
|
690
705
|
return_wizard = stock_return_picking_form.save()
|
691
706
|
picking_action = return_wizard.create_returns()
|
692
707
|
# Each origin move is linked to a different RMA
|
@@ -715,6 +730,7 @@ class TestRmaCase(TestRma):
|
|
715
730
|
rma_form.move_id = origin_delivery.move_ids.filtered(
|
716
731
|
lambda r: r.product_id == self.product
|
717
732
|
)
|
733
|
+
rma_form.operation_id = self.operation
|
718
734
|
rma = rma_form.save()
|
719
735
|
rma.action_confirm()
|
720
736
|
rma.reception_move_id.quantity_done = 10
|
@@ -11,6 +11,20 @@ from odoo.tools import float_compare
|
|
11
11
|
class ReturnPickingLine(models.TransientModel):
|
12
12
|
_inherit = "stock.return.picking.line"
|
13
13
|
|
14
|
+
rma_operation_id = fields.Many2one(
|
15
|
+
comodel_name="rma.operation",
|
16
|
+
string="Operation",
|
17
|
+
compute="_compute_rma_operation_id",
|
18
|
+
store=True,
|
19
|
+
readonly=False,
|
20
|
+
)
|
21
|
+
|
22
|
+
@api.depends("wizard_id.rma_operation_id")
|
23
|
+
def _compute_rma_operation_id(self):
|
24
|
+
for rec in self:
|
25
|
+
if rec.wizard_id.rma_operation_id:
|
26
|
+
rec.rma_operation_id = rec.wizard_id.rma_operation_id
|
27
|
+
|
14
28
|
def _prepare_rma_vals(self):
|
15
29
|
self.ensure_one()
|
16
30
|
return {
|
@@ -19,6 +33,7 @@ class ReturnPickingLine(models.TransientModel):
|
|
19
33
|
"product_uom_qty": self.quantity,
|
20
34
|
"product_uom": self.product_id.uom_id.id,
|
21
35
|
"location_id": self.wizard_id.location_id.id or self.move_id.location_id.id,
|
36
|
+
"operation_id": self.rma_operation_id.id,
|
22
37
|
}
|
23
38
|
|
24
39
|
|
@@ -30,6 +45,10 @@ class ReturnPicking(models.TransientModel):
|
|
30
45
|
rma_location_ids = fields.Many2many(
|
31
46
|
comodel_name="stock.location", compute="_compute_rma_location_id"
|
32
47
|
)
|
48
|
+
rma_operation_id = fields.Many2one(
|
49
|
+
comodel_name="rma.operation",
|
50
|
+
string="Requested operation",
|
51
|
+
)
|
33
52
|
# Expand domain for RMAs
|
34
53
|
location_id = fields.Many2one(
|
35
54
|
domain="create_rma and [('id', 'child_of', rma_location_ids)]"
|
@@ -8,12 +8,22 @@
|
|
8
8
|
<field name="model">stock.return.picking</field>
|
9
9
|
<field name="inherit_id" ref="stock.view_stock_return_picking_form" />
|
10
10
|
<field name="arch" type="xml">
|
11
|
-
<field
|
11
|
+
<xpath expr="//field[@name='product_return_moves']//tree" position="inside">
|
12
|
+
<field
|
13
|
+
name="rma_operation_id"
|
14
|
+
attrs="{'column_invisible': [('parent.create_rma', '=', False)], 'required': [('parent.create_rma', '=', True), ('quantity', '>', 0)]}"
|
15
|
+
/>
|
16
|
+
</xpath>
|
17
|
+
<field name="product_return_moves" position="before">
|
12
18
|
<group name="group_rma">
|
13
19
|
<field
|
14
20
|
name="create_rma"
|
15
21
|
attrs="{'invisible': [('picking_type_code', '!=', 'outgoing')]}"
|
16
22
|
/>
|
23
|
+
<field
|
24
|
+
name="rma_operation_id"
|
25
|
+
attrs="{'invisible': [('create_rma', '=', False)]}"
|
26
|
+
/>
|
17
27
|
<field name="rma_location_ids" invisible="1" />
|
18
28
|
<field name="picking_id" invisible="1" />
|
19
29
|
<field name="picking_type_code" invisible="1" />
|
@@ -1,12 +1,11 @@
|
|
1
1
|
Metadata-Version: 2.1
|
2
2
|
Name: odoo-addon-rma
|
3
|
-
Version: 16.0.
|
3
|
+
Version: 16.0.3.0.0
|
4
4
|
Summary: Return Merchandise Authorization (RMA)
|
5
5
|
Home-page: https://github.com/OCA/rma
|
6
6
|
Author: Tecnativa, Odoo Community Association (OCA)
|
7
7
|
Author-email: support@odoo-community.org
|
8
8
|
License: AGPL-3
|
9
|
-
Platform: UNKNOWN
|
10
9
|
Classifier: Programming Language :: Python
|
11
10
|
Classifier: Framework :: Odoo
|
12
11
|
Classifier: Framework :: Odoo :: 16.0
|
@@ -24,7 +23,7 @@ Return Merchandise Authorization Management
|
|
24
23
|
!! This file is generated by oca-gen-addon-readme !!
|
25
24
|
!! changes will be overwritten. !!
|
26
25
|
!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
|
27
|
-
!! source digest: sha256:
|
26
|
+
!! source digest: sha256:9c2ee7741ea3bc40321ec64b162a9c87030246d4bf54c2bd1eb6de8e8f8fd385
|
28
27
|
!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
|
29
28
|
|
30
29
|
.. |badge1| image:: https://img.shields.io/badge/maturity-Production%2FStable-green.png
|
@@ -186,6 +185,8 @@ Contributors
|
|
186
185
|
* Chafique Delli <chafique.delli@akretion.com>
|
187
186
|
* Giovanni Serra - Ooops <giovanni@ooops404.com>
|
188
187
|
* Michael Tietz (MT Software) <mtietz@mt-software.de>
|
188
|
+
* Jacques-Etienne Baudoux - BCIM <je@bcim.be>
|
189
|
+
* Souheil Bejaoui - ACSONE SA/NV <souheil.bejaoui@acsone.eu>
|
189
190
|
|
190
191
|
Maintainers
|
191
192
|
~~~~~~~~~~~
|
@@ -214,5 +215,3 @@ Current `maintainers <https://odoo-community.org/page/maintainer-role>`__:
|
|
214
215
|
This module is part of the `OCA/rma <https://github.com/OCA/rma/tree/16.0/rma>`_ project on GitHub.
|
215
216
|
|
216
217
|
You are welcome to contribute. To learn how please visit https://odoo-community.org/page/Contribute.
|
217
|
-
|
218
|
-
|
@@ -1,6 +1,6 @@
|
|
1
|
-
odoo/addons/rma/README.rst,sha256=
|
1
|
+
odoo/addons/rma/README.rst,sha256=4II4w1oSgDyBAfNRgJLr582fNgNSuuunGbrqe0ZUqSw,8237
|
2
2
|
odoo/addons/rma/__init__.py,sha256=KD8ElbTlUwRgGDQzvMIqp-WeEXGTuHqQT352BCbK2I0,168
|
3
|
-
odoo/addons/rma/__manifest__.py,sha256=
|
3
|
+
odoo/addons/rma/__manifest__.py,sha256=dLCUT1BHQ4zWj1oznlCLxDKxSSensc3-rgIOLwxLZPM,1527
|
4
4
|
odoo/addons/rma/hooks.py,sha256=Zd5KcqVj_ONKV-GyrZiXOAmdRGBRRczJGdhrgUrzY_s,3320
|
5
5
|
odoo/addons/rma/controllers/__init__.py,sha256=ZAYSY9pxyJjumL2QVLuxqtBzjLwKPiQsVXMBAWvNGGY,85
|
6
6
|
odoo/addons/rma/controllers/main.py,sha256=ye0OSKRPZ6YhQzRt_Gv1W0Owd9_gdDScLhUu6ISvAps,5406
|
@@ -15,7 +15,7 @@ odoo/addons/rma/i18n/it.po,sha256=DGNyMGKxLSpdrd006yO9hRjP1juAVoZg4tXucJAEC2k,88
|
|
15
15
|
odoo/addons/rma/i18n/nl.po,sha256=viIY6wu3KnK8eePHIz3dAoMZj2jSxm1Ar6QQmTcvJI8,63935
|
16
16
|
odoo/addons/rma/i18n/pt.po,sha256=c4rCQtFc-e4WvZuDyW4y-xUuilnmbkmGw-Z9QCGu6Fc,75571
|
17
17
|
odoo/addons/rma/i18n/pt_BR.po,sha256=nDFEBoD4f8ObsDlUoSt0d6-gkd32HXFqAzRmImKggkY,74824
|
18
|
-
odoo/addons/rma/i18n/rma.pot,sha256=
|
18
|
+
odoo/addons/rma/i18n/rma.pot,sha256=LdmerEVC23aNqsMTLE4-jic1E5SR8od1U8VLVTUPgwg,64176
|
19
19
|
odoo/addons/rma/i18n/ro.po,sha256=PSjUZ7vJ72opzUMul9DzgUKCljHAio1BlXSUUdYNffY,71510
|
20
20
|
odoo/addons/rma/i18n/zh_CN.po,sha256=mUG-1x-_yweNm35JXbRwRXwE8rOkFp9pzxAPADrIvXU,64046
|
21
21
|
odoo/addons/rma/migrations/16.0.1.4.0/post-migration.py,sha256=jQn_F-J2amiqJZQZ33nQZeb_hOebJBXJMHdYbgiakd4,654
|
@@ -25,7 +25,7 @@ odoo/addons/rma/models/res_company.py,sha256=46aercxmY3p3t0JoIzlSSP_pjkvjaQb1pHR
|
|
25
25
|
odoo/addons/rma/models/res_config_settings.py,sha256=-X3NWCfEG1LJ2iE2dYl3Ut-suDskrHMkp0D597EFhIw,1493
|
26
26
|
odoo/addons/rma/models/res_partner.py,sha256=hwa0H6OIniUcTp5xjsRGmtkDHb1rMbZXRo7IsRqL-4U,1217
|
27
27
|
odoo/addons/rma/models/res_users.py,sha256=43A5IHYXEXe9M4G0cONf1l7EZ1AWl5mhWJ24EdtAfhI,351
|
28
|
-
odoo/addons/rma/models/rma.py,sha256=
|
28
|
+
odoo/addons/rma/models/rma.py,sha256=l4uecK3l2-LPhHOiFBPof1a1vJv9izuQVtQaKU-pILE,52072
|
29
29
|
odoo/addons/rma/models/rma_finalization.py,sha256=kgJ6EFWBXJKGCwKy7bbWRUynExsCMQyjqcflDpvwtaE,681
|
30
30
|
odoo/addons/rma/models/rma_operation.py,sha256=xbDjthojPoZpSpqKg3eNyYcctv40hPsmrFcUHV3BUyg,460
|
31
31
|
odoo/addons/rma/models/rma_tag.py,sha256=RVFLyo8XmgjK_ftrRHWiEtzUQGs4b-OMhg0hwr-5Rzw,833
|
@@ -34,7 +34,7 @@ odoo/addons/rma/models/stock_move.py,sha256=DZVdsMTcXGKjkrTVOHfd4Ul8YMpLxlskVXK8
|
|
34
34
|
odoo/addons/rma/models/stock_picking.py,sha256=z9FcgyEjzQDk4Cptk_b6A4LjY-4J3E7JHF8jFeFnWvw,1413
|
35
35
|
odoo/addons/rma/models/stock_warehouse.py,sha256=GLxl9DsFfGEWpdycWx89fiyZ55xmHiJds7lzz35UARU,8129
|
36
36
|
odoo/addons/rma/readme/CONFIGURE.rst,sha256=18sDF1e6lSdLnaWb6R1MVCgqT1-5QTaazG9HQKySdlg,796
|
37
|
-
odoo/addons/rma/readme/CONTRIBUTORS.rst,sha256=
|
37
|
+
odoo/addons/rma/readme/CONTRIBUTORS.rst,sha256=vKdnk5HjyNpvwgPgTA_fpkueu-vsVYeoaVZ82aRiHmQ,378
|
38
38
|
odoo/addons/rma/readme/DESCRIPTION.rst,sha256=JFh4vDgsX1CaV8ea4m8rYCqC-1XOMzI-jTkwMg6WJ68,557
|
39
39
|
odoo/addons/rma/readme/ROADMAP.rst,sha256=N5rbfhqXZst4V7v13g7vLpa_OlsW2-YtcoYZnkTDOtM,346
|
40
40
|
odoo/addons/rma/readme/USAGE.rst,sha256=r2DE4kuLoeGsbOCFxLaxmFBUppVBFxpqxmH2zPdy6zU,2965
|
@@ -42,9 +42,9 @@ odoo/addons/rma/report/report.xml,sha256=rMg9_lccL-dJClHvMCmRI1Feh499gnExeskIylc
|
|
42
42
|
odoo/addons/rma/security/ir.model.access.csv,sha256=zACDkLgOfICGiJGb4A9RNKbtlpBcFIC4rDZxESyBzbQ,1724
|
43
43
|
odoo/addons/rma/security/rma_security.xml,sha256=_tz_MXqW8bWfzGhgQ3pDI7xdx6tX321DrkIaRAd2W6E,5374
|
44
44
|
odoo/addons/rma/static/description/icon.png,sha256=0VH8J6xmJMYW0dBaW-Ts-Gm5oRvbf9mOglT4vqUKxdU,7450
|
45
|
-
odoo/addons/rma/static/description/index.html,sha256=
|
45
|
+
odoo/addons/rma/static/description/index.html,sha256=9fykyZx6h-FI4tolzB8EkAqgO2huNeKyu00ZvKkrN_w,19205
|
46
46
|
odoo/addons/rma/tests/__init__.py,sha256=Q2ntkew4ZtzTd3zhA1Ly6e-C1NrU6zIPUVEr7hDD-CY,89
|
47
|
-
odoo/addons/rma/tests/test_rma.py,sha256=
|
47
|
+
odoo/addons/rma/tests/test_rma.py,sha256=h0vJN3MKYTnPs1EBo6bNk3kBNVQQ523k78Q4qVuNa5Q,37855
|
48
48
|
odoo/addons/rma/views/menus.xml,sha256=KWrTOvwY6IB-liNjRvBxTkdCSkes-CMTFI0iakxoavE,603
|
49
49
|
odoo/addons/rma/views/report_rma.xml,sha256=84Q7vXyUoMnUgJsf_V5SMqiVT1iD8lEpD9v0-hszN4s,6683
|
50
50
|
odoo/addons/rma/views/res_config_settings_views.xml,sha256=_sx48_VPrggfHmO0nIedaM_NRQ0YSQNjlyq5omer0l8,7729
|
@@ -63,9 +63,9 @@ odoo/addons/rma/wizard/rma_finalization_wizard.py,sha256=nT5Gb_Itl4289pIsN7h7vNa
|
|
63
63
|
odoo/addons/rma/wizard/rma_finalization_wizard_views.xml,sha256=q0rKm6iQum0P73muhWo_CxisVv5rExesPbR_FExV8fg,1346
|
64
64
|
odoo/addons/rma/wizard/rma_split.py,sha256=PZuVAGCXzRkycxJQIgfbPY__EPRXGPAkiKaGXLsnPbM,2099
|
65
65
|
odoo/addons/rma/wizard/rma_split_views.xml,sha256=jtrUmgS9rsUfbgx6y77cUXPnmd1ObY7lmQ_8XZDxxuo,1581
|
66
|
-
odoo/addons/rma/wizard/stock_picking_return.py,sha256=
|
67
|
-
odoo/addons/rma/wizard/stock_picking_return_views.xml,sha256=
|
68
|
-
odoo_addon_rma-16.0.
|
69
|
-
odoo_addon_rma-16.0.
|
70
|
-
odoo_addon_rma-16.0.
|
71
|
-
odoo_addon_rma-16.0.
|
66
|
+
odoo/addons/rma/wizard/stock_picking_return.py,sha256=vGV5hSettscItmDRA8xmpuPE0v0r8q8uOSTiSy6El8E,7119
|
67
|
+
odoo/addons/rma/wizard/stock_picking_return_views.xml,sha256=NNnHzPR419GuIikwmJym4YZ-EVoPS6lG2G0XNX_4vLc,1677
|
68
|
+
odoo_addon_rma-16.0.3.0.0.dist-info/METADATA,sha256=MC2FTnY_h3-gUGdNaZAL0CMLkfwFfcon84Rg1pVYS0Y,8800
|
69
|
+
odoo_addon_rma-16.0.3.0.0.dist-info/WHEEL,sha256=GJ7t_kWBFywbagK5eo9IoUwLW6oyOeTKmQ-9iHFVNxQ,92
|
70
|
+
odoo_addon_rma-16.0.3.0.0.dist-info/top_level.txt,sha256=qBj40grFkGOfDZ2WDSw3y1RnDlgG0u8rP8pvGNdbz4w,5
|
71
|
+
odoo_addon_rma-16.0.3.0.0.dist-info/RECORD,,
|
File without changes
|
File without changes
|