odoo-addon-rma 17.0.2.1.0__py3-none-any.whl → 17.0.2.2.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.
@@ -856,6 +856,7 @@ class Rma(models.Model):
856
856
  "partner_invoice_id",
857
857
  "product_id",
858
858
  "location_id",
859
+ "operation_id",
859
860
  ]
860
861
  for record in self:
861
862
  desc = ""
@@ -26,9 +26,7 @@ class StockMove(models.Model):
26
26
  )
27
27
  # RMA that creates the out move
28
28
  rma_id = fields.Many2one(
29
- comodel_name="rma",
30
- string="RMA return",
31
- copy=False,
29
+ comodel_name="rma", string="RMA return", copy=False, index=True
32
30
  )
33
31
 
34
32
  def unlink(self):
@@ -8,3 +8,5 @@
8
8
  - [APSL-Nagarro](https://www.apsl.tech):
9
9
  - Antoni Marroig \<<amarroig@apsl.net>\>
10
10
  - Michael Tietz (MT Software) <mtietz@mt-software.de>
11
+ - Jacques-Etienne Baudoux - BCIM <je@bcim.be>
12
+ - Souheil Bejaoui - ACSONE SA/NV <souheil.bejaoui@acsone.eu>
@@ -367,7 +367,7 @@ ul.auto-toc {
367
367
  !! This file is generated by oca-gen-addon-readme !!
368
368
  !! changes will be overwritten. !!
369
369
  !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
370
- !! source digest: sha256:ed0186c1b1c6a13851afd390ffec85f8d907d167dfdefd525057f63f8e5aa96e
370
+ !! source digest: sha256:332aee253ea006150dd84367588b401c225d097053614131e9c2f1ff01fef4cc
371
371
  !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! -->
372
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/17.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-17-0/rma-17-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&amp;target_branch=17.0"><img alt="Try me on Runboat" src="https://img.shields.io/badge/runboat-Try%20me-875A7B.png" /></a></p>
373
373
  <p>This module allows you to manage <a class="reference external" href="https://en.wikipedia.org/wiki/Return_merchandise_authorization">Return Merchandise Authorization
@@ -532,6 +532,8 @@ If you spotted it first, help us to smash it by providing a detailed and welcome
532
532
  </ul>
533
533
  </li>
534
534
  <li>Michael Tietz (MT Software) <a class="reference external" href="mailto:mtietz&#64;mt-software.de">mtietz&#64;mt-software.de</a></li>
535
+ <li>Jacques-Etienne Baudoux - BCIM <a class="reference external" href="mailto:je&#64;bcim.be">je&#64;bcim.be</a></li>
536
+ <li>Souheil Bejaoui - ACSONE SA/NV <a class="reference external" href="mailto:souheil.bejaoui&#64;acsone.eu">souheil.bejaoui&#64;acsone.eu</a></li>
535
537
  </ul>
536
538
  </div>
537
539
  <div class="section" id="maintainers">
@@ -71,8 +71,11 @@ class TestRma(BaseCommon):
71
71
  cls.warehouse = cls.env.ref("stock.warehouse0")
72
72
  # Ensure grouping
73
73
  cls.env.company.rma_return_grouping = True
74
+ cls.operation = cls.env.ref("rma.rma_operation_replace")
74
75
 
75
- def _create_rma(self, partner=None, product=None, qty=None, location=None):
76
+ def _create_rma(
77
+ self, partner=None, product=None, qty=None, location=None, operation=None
78
+ ):
76
79
  vals = {}
77
80
  if partner:
78
81
  vals["partner_id"] = partner.id
@@ -82,14 +85,17 @@ class TestRma(BaseCommon):
82
85
  vals["product_uom_qty"] = qty
83
86
  if location:
84
87
  vals["location_id"] = location.id
85
-
88
+ if operation:
89
+ vals["operation_id"] = operation.id
90
+ elif operation is None:
91
+ vals["operation_id"] = self.operation.id
86
92
  vals["user_id"] = self.env.user.id
87
93
  return self.env["rma"].create(vals)
88
94
 
89
95
  def _create_confirm_receive(
90
- self, partner=None, product=None, qty=None, location=None
96
+ self, partner=None, product=None, qty=None, location=None, operation=None
91
97
  ):
92
- rma = self._create_rma(partner, product, qty, location)
98
+ rma = self._create_rma(partner, product, qty, location, operation)
93
99
  rma.action_confirm()
94
100
  rma.reception_move_id.quantity = rma.product_uom_qty
95
101
  rma.reception_move_id.picking_id.button_validate()
@@ -221,19 +227,26 @@ class TestRmaCase(TestRma):
221
227
  self.assertEqual(rma.product_uom, self.product.uom_id)
222
228
 
223
229
  def test_ensure_required_fields_on_confirm(self):
224
- rma = self._create_rma()
230
+ rma = self._create_rma(operation=False)
225
231
  with self.assertRaises(ValidationError) as e:
226
232
  rma.action_confirm()
227
233
  self.assertEqual(
228
234
  e.exception.args[0],
229
- "Required field(s):\nCustomer\nShipping Address\nInvoice Address\nProduct",
235
+ "Required field(s):\nCustomer\nShipping Address\nInvoice Address\nProduct"
236
+ "\nRequested operation",
230
237
  )
231
238
  rma.partner_id = self.partner.id
232
239
  with self.assertRaises(ValidationError) as e:
233
240
  rma.action_confirm()
234
- self.assertEqual(e.exception.args[0], "Required field(s):\nProduct")
241
+ self.assertEqual(
242
+ e.exception.args[0], "Required field(s):\nProduct\nRequested operation"
243
+ )
235
244
  rma.product_id = self.product.id
236
245
  rma.location_id = self.rma_loc.id
246
+ with self.assertRaises(ValidationError) as e:
247
+ rma.action_confirm()
248
+ self.assertEqual(e.exception.args[0], "Required field(s):\nRequested operation")
249
+ rma.operation_id = self.operation
237
250
  rma.action_confirm()
238
251
  self.assertEqual(rma.state, "confirmed")
239
252
 
@@ -670,6 +683,7 @@ class TestRmaCase(TestRma):
670
683
  )
671
684
  )
672
685
  stock_return_picking_form.create_rma = True
686
+ stock_return_picking_form.rma_operation_id = self.operation
673
687
  return_wizard = stock_return_picking_form.save()
674
688
  picking_action = return_wizard.create_returns()
675
689
  # Each origin move is linked to a different RMA
@@ -698,6 +712,7 @@ class TestRmaCase(TestRma):
698
712
  rma_form.move_id = origin_delivery.move_ids.filtered(
699
713
  lambda r: r.product_id == self.product
700
714
  )
715
+ rma_form.operation_id = self.operation
701
716
  rma = rma_form.save()
702
717
  rma.action_confirm()
703
718
  rma.reception_move_id.quantity = 10
@@ -2,89 +2,184 @@
2
2
  <odoo>
3
3
  <record id="res_config_settings_view_form" model="ir.ui.view">
4
4
  <field name="model">res.config.settings</field>
5
- <field name="inherit_id" ref="stock.res_config_settings_view_form" />
5
+ <field name="inherit_id" ref="base.res_config_settings_view_form" />
6
6
  <field name="arch" type="xml">
7
- <xpath
8
- expr="//block[@name='operations_setting_container']"
9
- position="inside"
10
- >
11
- <setting
12
- title="Finish RMAs manually"
13
- help=" When the RMA is receive, allow to finsish it manually choosing a finalization reason."
14
- >
15
- <field name="group_rma_manual_finalization" />
16
- </setting>
17
- <setting
18
- title="Values set here are company-specific."
19
- help="Group RMA returns by customer and warehouse."
20
- >
21
- <field name="rma_return_grouping" />
22
- </setting>
23
- <setting
24
- title="Send automatic RMA info to customer"
25
- help="When the RMA is confirmed, send an automatic information email."
26
- >
27
- <field name="send_rma_confirmation" />
28
- <div class="row mt16" invisible="not send_rma_confirmation">
29
- <label
30
- for="rma_mail_confirmation_template_id"
31
- string="Email Template"
32
- class="col-lg-4 o_light_label"
33
- />
34
- <field
35
- name="rma_mail_confirmation_template_id"
36
- class="oe_inline"
37
- required="send_rma_confirmation"
38
- context="{'default_model': 'rma'}"
39
- />
7
+ <xpath expr="//form" position="inside">
8
+ <app string="RMA" groups="rma.rma_group_manager" name="rma">
9
+ <h2>Return Merchandise Authorization Management</h2>
10
+ <div
11
+ class="row mt16 o_settings_container"
12
+ name="operations_setting_container"
13
+ >
14
+ <div
15
+ class="col-12 col-lg-6 o_setting_box"
16
+ title="Finish RMAs manually"
17
+ >
18
+ <div class="o_setting_left_pane">
19
+ <field name="group_rma_manual_finalization" />
20
+ </div>
21
+ <div class="o_setting_right_pane">
22
+ <label
23
+ for="group_rma_manual_finalization"
24
+ string="RMA Manual Finalization"
25
+ />
26
+ <div class="text-muted">
27
+ When the RMA is receive, allow to finsish it manually choosing
28
+ a finalization reason.
29
+ </div>
30
+ </div>
31
+ </div>
32
+ <div class="col-12 col-lg-6 o_setting_box">
33
+ <div class="o_setting_left_pane">
34
+ <field name="rma_return_grouping" />
35
+ </div>
36
+ <div class="o_setting_right_pane">
37
+ <label for="rma_return_grouping" />
38
+ <span
39
+ class="fa fa-lg fa-building-o"
40
+ title="Values set here are company-specific."
41
+ groups="base.group_multi_company"
42
+ />
43
+ <div
44
+ class="text-muted"
45
+ >Group RMA returns by customer and warehouse.</div>
46
+ </div>
40
47
  </div>
41
- </setting>
42
- <setting
43
- title="Send automatic RMA products reception notification to customer"
44
- help="When the RMA products are received, send an automatic information email."
45
- >
46
- <field name="send_rma_receipt_confirmation" />
47
48
  <div
48
- class="row mt16"
49
- invisible="not send_rma_receipt_confirmation"
50
- >
51
- <label
52
- for="rma_mail_receipt_confirmation_template_id"
53
- string="Email Template"
54
- class="col-lg-4 o_light_label"
55
- />
56
-
57
- <field
58
- name="rma_mail_receipt_confirmation_template_id"
59
- class="oe_inline"
60
- required="send_rma_receipt_confirmation"
61
- context="{'default_model': 'rma'}"
62
- />
49
+ class="col-12 col-lg-6 o_setting_box"
50
+ title="Send automatic RMA info to customer"
51
+ >
52
+ <div class="o_setting_left_pane">
53
+ <field name="send_rma_confirmation" />
54
+ </div>
55
+ <div class="o_setting_right_pane">
56
+ <label
57
+ for="send_rma_confirmation"
58
+ string="RMA Confirmation Email"
59
+ />
60
+ <span
61
+ class="fa fa-lg fa-building-o"
62
+ title="Values set here are company-specific."
63
+ groups="base.group_multi_company"
64
+ />
65
+ <div
66
+ class="text-muted"
67
+ >When the RMA is confirmed, send an automatic information email.</div>
68
+ <div
69
+ class="row mt16"
70
+ invisible="not send_rma_confirmation"
71
+ >
72
+ <label
73
+ for="rma_mail_confirmation_template_id"
74
+ string="Email Template"
75
+ class="col-lg-4 o_light_label"
76
+ />
77
+ <field
78
+ name="rma_mail_confirmation_template_id"
79
+ class="oe_inline"
80
+ required="send_rma_confirmation"
81
+ context="{'default_model': 'rma'}"
82
+ />
83
+ </div>
84
+ </div>
63
85
  </div>
64
- </setting>
65
- <setting
66
- title="Send automatic notification when the customer places an RMA"
67
- help="When customers themselves place an RMA from the portal, send an automatic notification acknowleging it."
68
- >
69
- <field name="send_rma_draft_confirmation" />
70
86
  <div
71
- class="row mt16"
72
- invisible="not send_rma_draft_confirmation"
73
- >
74
- <label
75
- for="rma_mail_draft_confirmation_template_id"
76
- string="Email Template"
77
- class="col-lg-4 o_light_label"
78
- />
79
- <field
80
- name="rma_mail_draft_confirmation_template_id"
81
- class="oe_inline"
82
- required="send_rma_draft_confirmation"
83
- context="{'default_model': 'rma'}"
84
- />
87
+ class="col-12 col-lg-6 o_setting_box"
88
+ title="Send automatic RMA products reception notification to customer"
89
+ >
90
+ <div class="o_setting_left_pane">
91
+ <field name="send_rma_receipt_confirmation" />
92
+ </div>
93
+ <div class="o_setting_right_pane">
94
+ <label
95
+ for="send_rma_receipt_confirmation"
96
+ string="RMA Receipt Confirmation Email"
97
+ />
98
+ <span
99
+ class="fa fa-lg fa-building-o"
100
+ title="Values set here are company-specific."
101
+ groups="base.group_multi_company"
102
+ />
103
+ <div
104
+ class="text-muted"
105
+ >When the RMA products are received, send an automatic information email.</div>
106
+ <div
107
+ class="row mt16"
108
+ invisible="not send_rma_receipt_confirmation"
109
+ >
110
+ <label
111
+ for="rma_mail_receipt_confirmation_template_id"
112
+ string="Email Template"
113
+ class="col-lg-4 o_light_label"
114
+ />
115
+ <field
116
+ name="rma_mail_receipt_confirmation_template_id"
117
+ class="oe_inline"
118
+ required="send_rma_receipt_confirmation"
119
+ context="{'default_model': 'rma'}"
120
+ />
121
+ </div>
122
+ </div>
123
+ </div>
124
+ <div
125
+ class="col-12 col-lg-6 o_setting_box"
126
+ title="Send automatic notification when the customer places an RMA"
127
+ >
128
+ <div class="o_setting_left_pane">
129
+ <field name="send_rma_draft_confirmation" />
130
+ </div>
131
+ <div class="o_setting_right_pane">
132
+ <label
133
+ for="send_rma_draft_confirmation"
134
+ string="RMA draft notification Email"
135
+ />
136
+ <span
137
+ class="fa fa-lg fa-building-o"
138
+ title="Values set here are company-specific."
139
+ groups="base.group_multi_company"
140
+ />
141
+ <div
142
+ class="text-muted"
143
+ >When customers themselves place an RMA from the portal, send an automatic notification acknowleging it.</div>
144
+ <div
145
+ class="row mt16"
146
+ invisible="not send_rma_draft_confirmation"
147
+ >
148
+ <label
149
+ for="rma_mail_draft_confirmation_template_id"
150
+ string="Email Template"
151
+ class="col-lg-4 o_light_label"
152
+ />
153
+ <field
154
+ name="rma_mail_draft_confirmation_template_id"
155
+ class="oe_inline"
156
+ required="send_rma_draft_confirmation"
157
+ context="{'default_model': 'rma'}"
158
+ />
159
+ </div>
160
+ </div>
85
161
  </div>
86
- </setting>
162
+ </div>
163
+ </app>
87
164
  </xpath>
88
165
  </field>
89
166
  </record>
167
+
168
+ <record id="action_rma_config_settings" model="ir.actions.act_window">
169
+ <field name="name">Settings</field>
170
+ <field name="type">ir.actions.act_window</field>
171
+ <field name="res_model">res.config.settings</field>
172
+ <field name="view_mode">form</field>
173
+ <field name="target">inline</field>
174
+ <field name="context">{'module' : 'rma', 'bin_size': False}</field>
175
+ </record>
176
+
177
+ <menuitem
178
+ id="menu_rma_general_settings"
179
+ name="Settings"
180
+ parent="rma_configuration_menu"
181
+ sequence="0"
182
+ action="action_rma_config_settings"
183
+ groups="base.group_system"
184
+ />
90
185
  </odoo>
@@ -9,8 +9,26 @@
9
9
  <field name="arch" type="xml">
10
10
  <search>
11
11
  <field name="name" />
12
+ <field name="origin" />
12
13
  <field name="user_id" />
14
+ <field name="product_id" />
13
15
  <field name="tag_ids" />
16
+ <filter
17
+ string="Awaiting Action"
18
+ name="waiting_action"
19
+ domain="[('state', 'in', ['waiting_return', 'waiting_replacement', 'confirmed'])]"
20
+ />
21
+ <filter
22
+ string="Processed"
23
+ name="processed"
24
+ domain="[('state', 'in', ['received', 'refunded', 'replaced', 'finished'])]"
25
+ />
26
+ <filter
27
+ string="Closed"
28
+ name="closed"
29
+ domain="[('state', 'in', ['locked', 'cancelled'])]"
30
+ />
31
+ <separator />
14
32
  <filter
15
33
  name="draft_filter"
16
34
  string="Draft"
@@ -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,20 @@
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 name="product_return_moves" position="after">
11
+ <xpath expr="//field[@name='product_return_moves']//tree" position="inside">
12
+ <field
13
+ name="rma_operation_id"
14
+ required="parent.create_rma and quantity>0"
15
+ column_invisible="not parent.create_rma"
16
+ />
17
+ </xpath>
18
+ <field name="product_return_moves" position="before">
12
19
  <group name="group_rma">
13
20
  <field
14
21
  name="create_rma"
15
22
  invisible="picking_type_code != 'outgoing'"
16
23
  />
24
+ <field name="rma_operation_id" invisible="not create_rma" />
17
25
  <field name="rma_location_ids" invisible="1" />
18
26
  <field name="picking_id" invisible="1" />
19
27
  <field name="picking_type_code" invisible="1" />
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: odoo-addon-rma
3
- Version: 17.0.2.1.0
3
+ Version: 17.0.2.2.0.1
4
4
  Requires-Python: >=3.10
5
5
  Requires-Dist: odoo>=17.0a,<17.1dev
6
6
  Summary: Return Merchandise Authorization (RMA)
@@ -23,7 +23,7 @@ Return Merchandise Authorization Management
23
23
  !! This file is generated by oca-gen-addon-readme !!
24
24
  !! changes will be overwritten. !!
25
25
  !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
26
- !! source digest: sha256:ed0186c1b1c6a13851afd390ffec85f8d907d167dfdefd525057f63f8e5aa96e
26
+ !! source digest: sha256:332aee253ea006150dd84367588b401c225d097053614131e9c2f1ff01fef4cc
27
27
  !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
28
28
 
29
29
  .. |badge1| image:: https://img.shields.io/badge/maturity-Production%2FStable-green.png
@@ -195,6 +195,8 @@ Contributors
195
195
  - Antoni Marroig <amarroig@apsl.net>
196
196
 
197
197
  - Michael Tietz (MT Software) mtietz@mt-software.de
198
+ - Jacques-Etienne Baudoux - BCIM je@bcim.be
199
+ - Souheil Bejaoui - ACSONE SA/NV souheil.bejaoui@acsone.eu
198
200
 
199
201
  Maintainers
200
202
  -----------
@@ -1,23 +1,23 @@
1
- odoo/addons/rma/README.rst,sha256=E890OYkVIR410p4G1e9uKN2YeuSf99Sv9PW83_8wyfo,8246
1
+ odoo/addons/rma/README.rst,sha256=e_KyX0uKI60Y15E8cWwasjGUyJVZUqhy8G_q9nP0TY8,8349
2
2
  odoo/addons/rma/__init__.py,sha256=KD8ElbTlUwRgGDQzvMIqp-WeEXGTuHqQT352BCbK2I0,168
3
- odoo/addons/rma/__manifest__.py,sha256=HqYsALpSuyfLg1K6dLh_aXGBvPiAegYBB5_TLGL8irA,1527
3
+ odoo/addons/rma/__manifest__.py,sha256=pW-5re99hwiCQt0SMflvnSnVjRCh6w6oBDhsU69YSL8,1527
4
4
  odoo/addons/rma/hooks.py,sha256=60r6gSDlRMblJByj8Gp1j1oGBOEfloFjDXFNkp72uMk,3226
5
5
  odoo/addons/rma/controllers/__init__.py,sha256=ZAYSY9pxyJjumL2QVLuxqtBzjLwKPiQsVXMBAWvNGGY,85
6
6
  odoo/addons/rma/controllers/main.py,sha256=luAXQnt-pSpM0QpZjZqLwyz-ktPWGCN-jhjM3oJpY7w,5455
7
7
  odoo/addons/rma/data/mail_data.xml,sha256=c9Qgjbldc0J51W5kct5GKx8ncf6U45RtTuyY4dtjI0M,6482
8
8
  odoo/addons/rma/data/rma_operation_data.xml,sha256=fYq_1YP1sgRq7zvQ5gU4SJsZnq2TL-YihJcTXohuNzM,421
9
9
  odoo/addons/rma/data/stock_data.xml,sha256=_zwGmuGjhpptZWyXXdev9snSTjNekBpUsMXKD0bH8zE,332
10
- odoo/addons/rma/i18n/de.po,sha256=jqJ7BJqF3t-2Y5PlN9L-gVx2ae7LzQijLsSzdEg45Ws,85165
11
- odoo/addons/rma/i18n/de_AT.po,sha256=dyhGZUzwm0A7cDixBBUNHBrelARhJ1YH1rLMirk8VQ0,62233
12
- odoo/addons/rma/i18n/es.po,sha256=_er6eXdejKeuoGL0uOad4JELcHAX5dfvXjSpR50_vpU,89157
13
- odoo/addons/rma/i18n/fr.po,sha256=gduKKYJ42inxg1coWruioDGS9I2lqM2Jl9_puUKcVwo,78777
14
- odoo/addons/rma/i18n/it.po,sha256=eCTukh8o9hB_1IhoWtzSrF33qaVrUICRBcyxdy3fNAE,88557
15
- odoo/addons/rma/i18n/nl.po,sha256=w9cAnQ_myaElrODNn6zghbD1JL1JBZGVRcDIvTOEdiE,62230
16
- odoo/addons/rma/i18n/pt.po,sha256=fqFXUZ_1_tnLn8jotkxKdOi7Mtq12M91u7NVMQWDlCI,74616
17
- odoo/addons/rma/i18n/pt_BR.po,sha256=McYUI_uGFmzfbZgT6EWVA5kYDm3L7CwM3g0nEVeoXr8,73588
18
- odoo/addons/rma/i18n/rma.pot,sha256=mPGAPHxNp9BGhECODrfDoE89pa1QHXuKt6kNTMmgohg,62029
19
- odoo/addons/rma/i18n/ro.po,sha256=1-cvbtG2Pm2n8XU5fYXAUREzaAm0W5wAULd0_iuH3Wo,70200
20
- odoo/addons/rma/i18n/zh_CN.po,sha256=Da3X5EY_ZAT0EU9QQLhEktQ4GQkFwGR112399VZ2BEk,62341
10
+ odoo/addons/rma/i18n/de.po,sha256=HphmHAf3u_LDx1MuxMZzkBJEkor6EqtAM670g6fkwi0,86402
11
+ odoo/addons/rma/i18n/de_AT.po,sha256=n1F_mycrCiRH7Oeanb8VxV4xZhtj-O7-pXQU08dWU2U,63578
12
+ odoo/addons/rma/i18n/es.po,sha256=2kct8AqhmLElrFyXPi0RvgL1m1HGjz67Q2Oozeda45A,90394
13
+ odoo/addons/rma/i18n/fr.po,sha256=yiUaLHOVaYZIeu5p8P7h2Qzo1zahw2Qx4xfFLTmIlS0,80014
14
+ odoo/addons/rma/i18n/it.po,sha256=i-CEDXkJmyR15Ae11equLDeXsbw5TRvLtw_6a0GWDBI,89986
15
+ odoo/addons/rma/i18n/nl.po,sha256=Vcf-FcJHafl0Nt2D1q_x52ONIADEzfb2YtqyaB72ZNw,63575
16
+ odoo/addons/rma/i18n/pt.po,sha256=aADz0UTfl0kKM7YlwkGjeK7WZ82PWzMe5snFhGJ28vk,76012
17
+ odoo/addons/rma/i18n/pt_BR.po,sha256=4NDrd3uFMk-qa0r75FHuIMb46Hanklf1MbRSg1DOExs,75200
18
+ odoo/addons/rma/i18n/rma.pot,sha256=D01j8mmGicB9dLu6jWf9zg-DOGQAW9OE0-UsZ6ICZYk,63583
19
+ odoo/addons/rma/i18n/ro.po,sha256=HiF0fDvkmtzHXw7Ho2AwCPWiqc8vD_0B7jioMcrPQCo,71812
20
+ odoo/addons/rma/i18n/zh_CN.po,sha256=47yVVG08ZhRRBAyURgsTCPMZLjBVoaULd-uT3HI-BWs,63686
21
21
  odoo/addons/rma/migrations/17.0.1.2.0/post-migration.py,sha256=jQn_F-J2amiqJZQZ33nQZeb_hOebJBXJMHdYbgiakd4,654
22
22
  odoo/addons/rma/models/__init__.py,sha256=SwBeY3SB1s7Nrn54Mw0LvlOF7LTLCGU7mzyy5kUR4qs,408
23
23
  odoo/addons/rma/models/account_move.py,sha256=oa7Czf53RZskOoenNQqNU-8x6pMz05qrAjU02Ef_g04,1653
@@ -25,16 +25,16 @@ 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=PEjLvtn7RpZVO5Ez_Fts9cDI2UgAIGfJUsMJU8WDNpg,1233
27
27
  odoo/addons/rma/models/res_users.py,sha256=43A5IHYXEXe9M4G0cONf1l7EZ1AWl5mhWJ24EdtAfhI,351
28
- odoo/addons/rma/models/rma.py,sha256=a6-3b-tHSmyAn_Iyz24KTEaZf_LZxFZJosehWrmoSyU,49828
28
+ odoo/addons/rma/models/rma.py,sha256=HljRkutGQHoGpmlurphZp7XCPx3Ho1tvEHo_yR4tM4U,49856
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
32
32
  odoo/addons/rma/models/rma_team.py,sha256=5gyghbFOE4RR6dR5TQ1lRC4kK88i6G51V3dlY9gN6EY,1935
33
- odoo/addons/rma/models/stock_move.py,sha256=FMQxkriEJXjkFLHXyjz-Wn1N6Wt4V6kWW6poU-uflHU,4934
33
+ odoo/addons/rma/models/stock_move.py,sha256=YLCwWZvCstLa7tYmW1gCSgSZY-hzSdv7tXDJt38t3sA,4929
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.md,sha256=6ra3zJk5dFGFCaXnWqmwEQpr9nhe9bNLrgxnQ_mx8hs,815
37
- odoo/addons/rma/readme/CONTRIBUTORS.md,sha256=fhsU_lJXwKSNSb3um0mAmAhMWDMiotSUu0G1AYXO_gk,360
37
+ odoo/addons/rma/readme/CONTRIBUTORS.md,sha256=Qx-OTUn-h1CYt2JUaf_I8UiCeIvQcqe1uhw3cxoj-bY,467
38
38
  odoo/addons/rma/readme/DESCRIPTION.md,sha256=WWwGgoqa_WcT8k0SHH5KMOy2quzqO7uM6LyJIi1XHsI,555
39
39
  odoo/addons/rma/readme/ROADMAP.md,sha256=QLDgd3EOa6A3q2oVG_5CTN72iq2IExaM59Xid1CVhbQ,347
40
40
  odoo/addons/rma/readme/USAGE.md,sha256=AMvBduxDTfEeD73OLs2ZAk-kkMmawB5N7QaUkd2HQrg,3029
@@ -42,18 +42,18 @@ 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=o2MEdhLHd0BB4YfQGNjwUSTsRjEYXNCYODugTYCi5lM,19139
45
+ odoo/addons/rma/static/description/index.html,sha256=bmEO9JAl2ZHiHug7-62p4LJDU2tkIfhrs0EM4vvPxT4,19405
46
46
  odoo/addons/rma/tests/__init__.py,sha256=Q2ntkew4ZtzTd3zhA1Ly6e-C1NrU6zIPUVEr7hDD-CY,89
47
- odoo/addons/rma/tests/test_rma.py,sha256=M5Glq4B1HGAPvanKFv76mNK3c49fx-5IuhGWWlQCWfQ,36034
47
+ odoo/addons/rma/tests/test_rma.py,sha256=e69Y_LeA6o8OUxWIMQN-gHGdGp65wFzesgDbQe-CJYU,36737
48
48
  odoo/addons/rma/views/menus.xml,sha256=KWrTOvwY6IB-liNjRvBxTkdCSkes-CMTFI0iakxoavE,603
49
49
  odoo/addons/rma/views/report_rma.xml,sha256=cnndKUgpZNZW7s98cMQvzJhyZJ8y9uNUwFm3Gy2b0IA,6977
50
- odoo/addons/rma/views/res_config_settings_views.xml,sha256=0dUpIXHbMNAg0hkka-5OwTF_RCK3J0rdCTlWTnw9geQ,4195
50
+ odoo/addons/rma/views/res_config_settings_views.xml,sha256=YgNhVBGYZE3WRrS4ro0uxN-1ClMSgiVffdvCjWM2thw,9747
51
51
  odoo/addons/rma/views/res_partner_views.xml,sha256=3tTGUOwoAk1KWTfNsBCo7KF7zMNZnx_d-8KXFD2R9OI,967
52
52
  odoo/addons/rma/views/rma_finalization_views.xml,sha256=GPwPFolEJoGVFmmgov2oJkDdU9hE7MXCS_5GFAuTmwA,2910
53
53
  odoo/addons/rma/views/rma_portal_templates.xml,sha256=cPL5U4LTv486LgjS0Pr2ryeKKtCPv9e7GOl7w36j8YQ,27419
54
54
  odoo/addons/rma/views/rma_tag_views.xml,sha256=Nhq9pUOHx6TS9dREkavjVzKjPUSjv89vJ3AdNpCNDsQ,2217
55
55
  odoo/addons/rma/views/rma_team_views.xml,sha256=Je4qYrD1p7aujj8azLths6zurYoc1wkNoVJgZGpUTy4,6861
56
- odoo/addons/rma/views/rma_views.xml,sha256=71IacmRgkvuai0w7Vm_yhnHemXvWlq5qO0x88oKDtqQ,20277
56
+ odoo/addons/rma/views/rma_views.xml,sha256=UPVnD50jS4P3UrmPSQ2888BAq4qbcuvVUfADkuZ38Y0,21025
57
57
  odoo/addons/rma/views/stock_picking_views.xml,sha256=n_zvjeQS8wedbvPLjbN-mZh53p41jYCcuyOATP2AZ2w,925
58
58
  odoo/addons/rma/views/stock_warehouse_views.xml,sha256=01zLs5FioabWQSAICyn2BaKBwADex9Ct6JAVeN5vIYM,775
59
59
  odoo/addons/rma/wizard/__init__.py,sha256=v5BQZoM0R5d2jOPuFiq500H2QAEee9eJB-4hKm5Wk7U,190
@@ -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=KQljpW-kNL9h35-H20kbW6T20WyjCIT9SYQg-HKc-Dg,6510
67
- odoo/addons/rma/wizard/stock_picking_return_views.xml,sha256=g34JqBFRZ0g-yk2bhWylrhzyKPXMCTE66MZ4np2OUfQ,1129
68
- odoo_addon_rma-17.0.2.1.0.dist-info/METADATA,sha256=ysxeVZzJQznrXNNBbVIHUiTLchdCQwpo7exededeA-o,8808
69
- odoo_addon_rma-17.0.2.1.0.dist-info/WHEEL,sha256=9fEMia4zL7ZuZbnCOrcYogUhmn4XFIVaJ8G4YGI31xc,81
70
- odoo_addon_rma-17.0.2.1.0.dist-info/top_level.txt,sha256=QE6RBQ0QX5f4eFuUcGgU5Kbq1A_qJcDs-e_vpr6pmfU,4
71
- odoo_addon_rma-17.0.2.1.0.dist-info/RECORD,,
66
+ odoo/addons/rma/wizard/stock_picking_return.py,sha256=vGV5hSettscItmDRA8xmpuPE0v0r8q8uOSTiSy6El8E,7119
67
+ odoo/addons/rma/wizard/stock_picking_return_views.xml,sha256=Xq-cnlB9dh-F6KF_xRJMYa4rg2pHH-hQs3kg_WWxayU,1532
68
+ odoo_addon_rma-17.0.2.2.0.1.dist-info/METADATA,sha256=sqayHvl66Dx2vH59-J9SeZOs1EeZfKerr0WpcSPLr5E,8913
69
+ odoo_addon_rma-17.0.2.2.0.1.dist-info/WHEEL,sha256=9fEMia4zL7ZuZbnCOrcYogUhmn4XFIVaJ8G4YGI31xc,81
70
+ odoo_addon_rma-17.0.2.2.0.1.dist-info/top_level.txt,sha256=QE6RBQ0QX5f4eFuUcGgU5Kbq1A_qJcDs-e_vpr6pmfU,4
71
+ odoo_addon_rma-17.0.2.2.0.1.dist-info/RECORD,,