odoo-addon-stock-request 16.0.1.1.0.2__py3-none-any.whl → 16.0.1.1.2__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 @@ Stock Request
7
7
  !! This file is generated by oca-gen-addon-readme !!
8
8
  !! changes will be overwritten. !!
9
9
  !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
10
- !! source digest: sha256:e90ad1565ab205eb6def13c09a5e4fe84c790849a54905abcb243bc5200d7121
10
+ !! source digest: sha256:0367d84dd491deef6c2a13a02b3b4f9275b939fa89e9c82f926a14a2e374452a
11
11
  !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
12
12
 
13
13
  .. |badge1| image:: https://img.shields.io/badge/maturity-Beta-yellow.png
@@ -4,7 +4,7 @@
4
4
  {
5
5
  "name": "Stock Request",
6
6
  "summary": "Internal request for stock",
7
- "version": "16.0.1.1.0",
7
+ "version": "16.0.1.1.2",
8
8
  "license": "LGPL-3",
9
9
  "website": "https://github.com/OCA/stock-logistics-request",
10
10
  "author": "ForgeFlow, Odoo Community Association (OCA)",
@@ -881,7 +881,14 @@ msgstr ""
881
881
 
882
882
  #. module: stock_request
883
883
  #. odoo-python
884
- #: code:addons/stock_request/models/stock_request_abstract.py:0
884
+ #: code:addons/stock_request/models/stock_request.py:0
885
+ #, python-format
886
+ msgid "Stock Request product quantity cannot be negative."
887
+ msgstr ""
888
+
889
+ #. module: stock_request
890
+ #. odoo-python
891
+ #: code:addons/stock_request/models/stock_request.py:0
885
892
  #, python-format
886
893
  msgid "Stock Request product quantity has to be strictly positive."
887
894
  msgstr ""
@@ -125,10 +125,33 @@ class StockRequest(models.Model):
125
125
  ("name_uniq", "unique(name, company_id)", "Stock Request name must be unique")
126
126
  ]
127
127
 
128
+ @api.constrains("state", "product_qty")
129
+ def _check_qty(self):
130
+ for rec in self:
131
+ if rec.state == "draft" and rec.product_qty <= 0:
132
+ raise ValidationError(
133
+ _("Stock Request product quantity has to be strictly positive.")
134
+ )
135
+ elif rec.state != "draft" and rec.product_qty < 0:
136
+ raise ValidationError(
137
+ _("Stock Request product quantity cannot be negative.")
138
+ )
139
+
140
+ def _get_all_origin_moves(self, move):
141
+ all_moves = move
142
+ if move.move_orig_ids:
143
+ for orig_move in move.move_orig_ids:
144
+ all_moves |= self._get_all_origin_moves(orig_move)
145
+ return all_moves
146
+
128
147
  @api.depends("allocation_ids", "allocation_ids.stock_move_id")
129
148
  def _compute_move_ids(self):
130
149
  for request in self:
131
- request.move_ids = request.allocation_ids.mapped("stock_move_id")
150
+ move_ids = request.allocation_ids.mapped("stock_move_id")
151
+ all_moves = self.env["stock.move"]
152
+ for move in move_ids:
153
+ all_moves |= self._get_all_origin_moves(move)
154
+ request.move_ids = all_moves
132
155
 
133
156
  @api.depends(
134
157
  "allocation_ids",
@@ -206,14 +206,6 @@ class StockRequest(models.AbstractModel):
206
206
  )
207
207
  )
208
208
 
209
- @api.constrains("product_qty")
210
- def _check_qty(self):
211
- for rec in self:
212
- if rec.product_qty <= 0:
213
- raise ValidationError(
214
- _("Stock Request product quantity has to be strictly positive.")
215
- )
216
-
217
209
  @api.onchange("warehouse_id")
218
210
  def onchange_warehouse_id(self):
219
211
  """Finds location id for changed warehouse."""
@@ -8,10 +8,11 @@
8
8
 
9
9
  /*
10
10
  :Author: David Goodger (goodger@python.org)
11
- :Id: $Id: html4css1.css 8954 2022-01-20 10:10:25Z milde $
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: grey; } /* line numbers */
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:e90ad1565ab205eb6def13c09a5e4fe84c790849a54905abcb243bc5200d7121
370
+ !! source digest: sha256:0367d84dd491deef6c2a13a02b3b4f9275b939fa89e9c82f926a14a2e374452a
370
371
  !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! -->
371
372
  <p><a class="reference external image-reference" href="https://odoo-community.org/page/development-status"><img alt="Beta" src="https://img.shields.io/badge/maturity-Beta-yellow.png" /></a> <a class="reference external image-reference" href="http://www.gnu.org/licenses/lgpl-3.0-standalone.html"><img alt="License: LGPL-3" src="https://img.shields.io/badge/licence-LGPL--3-blue.png" /></a> <a class="reference external image-reference" href="https://github.com/OCA/stock-logistics-request/tree/16.0/stock_request"><img alt="OCA/stock-logistics-request" src="https://img.shields.io/badge/github-OCA%2Fstock--logistics--request-lightgray.png?logo=github" /></a> <a class="reference external image-reference" href="https://translation.odoo-community.org/projects/stock-logistics-request-16-0/stock-logistics-request-16-0-stock_request"><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/stock-logistics-request&amp;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 was written to allow users to request products that are
@@ -467,7 +468,9 @@ If you spotted it first, help us to smash it by providing a detailed and welcome
467
468
  <div class="section" id="maintainers">
468
469
  <h2><a class="toc-backref" href="#toc-entry-8">Maintainers</a></h2>
469
470
  <p>This module is maintained by the OCA.</p>
470
- <a class="reference external image-reference" href="https://odoo-community.org"><img alt="Odoo Community Association" src="https://odoo-community.org/logo.png" /></a>
471
+ <a class="reference external image-reference" href="https://odoo-community.org">
472
+ <img alt="Odoo Community Association" src="https://odoo-community.org/logo.png" />
473
+ </a>
471
474
  <p>OCA, or the Odoo Community Association, is a nonprofit organization whose
472
475
  mission is to support the collaborative development of Odoo features and
473
476
  promote its widespread use.</p>
@@ -1543,3 +1543,143 @@ class TestStockRequestOrderState(TestStockRequest):
1543
1543
  self.route.id,
1544
1544
  "Route ID should update on all stock requests on onchange.",
1545
1545
  )
1546
+
1547
+
1548
+ class TestStockRequestOrderChainedTransfers(BaseCommon):
1549
+ def setUp(self):
1550
+ super().setUp()
1551
+ self.env = self.env(
1552
+ context=dict(
1553
+ self.env.context,
1554
+ mail_create_nolog=True,
1555
+ mail_create_nosubscribe=True,
1556
+ mail_notrack=True,
1557
+ no_reset_password=True,
1558
+ tracking_disable=True,
1559
+ )
1560
+ )
1561
+ self.request_order = self.env["stock.request.order"]
1562
+ self.stock_request = self.env["stock.request"]
1563
+ self.main_company = self.env.ref("base.main_company")
1564
+ self.warehouse = self.env.ref("stock.warehouse0")
1565
+ self.uom_unit = self.env.ref("uom.product_uom_unit")
1566
+ self.uom_dozen = self.env.ref("uom.product_uom_dozen")
1567
+ self.stock_request_user = new_test_user(
1568
+ self.env,
1569
+ login="stock_request_user",
1570
+ groups="stock_request.group_stock_request_user",
1571
+ company_ids=[(6, 0, [self.main_company.id])],
1572
+ )
1573
+ self.stock_request_manager = new_test_user(
1574
+ self.env,
1575
+ login="stock_request_manager",
1576
+ groups="stock_request.group_stock_request_manager",
1577
+ company_ids=[(6, 0, [self.main_company.id])],
1578
+ )
1579
+ self.product_test = self._create_product("PROD", "Product Test")
1580
+ self.stock_loc = self._create_location(
1581
+ name="Backstock",
1582
+ location_id=self.warehouse.view_location_id.id,
1583
+ company_id=self.main_company.id,
1584
+ )
1585
+ self.transit_loc = self._create_location(
1586
+ name="Transit",
1587
+ location_id=self.warehouse.view_location_id.id,
1588
+ company_id=self.main_company.id,
1589
+ )
1590
+ self.manufacturing_loc = self._create_location(
1591
+ name="Manufacturing",
1592
+ location_id=self.warehouse.view_location_id.id,
1593
+ company_id=self.main_company.id,
1594
+ )
1595
+ self.route = self.env["stock.route"].create(
1596
+ {
1597
+ "name": "Backstock to Manufacturing (2 steps)",
1598
+ "warehouse_selectable": True,
1599
+ "warehouse_ids": [(6, 0, [self.warehouse.id])],
1600
+ "rule_ids": [
1601
+ (
1602
+ 0,
1603
+ False,
1604
+ {
1605
+ "name": "Stock to Transit",
1606
+ "location_src_id": self.stock_loc.id,
1607
+ "location_dest_id": self.transit_loc.id,
1608
+ "action": "pull",
1609
+ "picking_type_id": self.warehouse.int_type_id.id,
1610
+ "procure_method": "make_to_stock",
1611
+ "warehouse_id": self.warehouse.id,
1612
+ "company_id": self.main_company.id,
1613
+ },
1614
+ ),
1615
+ (
1616
+ 0,
1617
+ False,
1618
+ {
1619
+ "name": "Transit to Manufacturing",
1620
+ "location_src_id": self.transit_loc.id,
1621
+ "location_dest_id": self.manufacturing_loc.id,
1622
+ "action": "pull_push",
1623
+ "picking_type_id": self.warehouse.int_type_id.id,
1624
+ "procure_method": "make_to_order",
1625
+ "warehouse_id": self.warehouse.id,
1626
+ "company_id": self.main_company.id,
1627
+ },
1628
+ ),
1629
+ ],
1630
+ }
1631
+ )
1632
+ self.product_test.route_ids = [(6, 0, [self.route.id])]
1633
+ self._create_stock_quant(self.stock_loc, self.product_test, 5)
1634
+
1635
+ def _create_product(self, default_code, name, **vals):
1636
+ return self.env["product.product"].create(
1637
+ dict(
1638
+ name=name,
1639
+ default_code=default_code,
1640
+ uom_id=self.uom_unit.id,
1641
+ uom_po_id=self.uom_dozen.id,
1642
+ type="product",
1643
+ **vals
1644
+ )
1645
+ )
1646
+
1647
+ def _create_location(self, **vals):
1648
+ return self.env["stock.location"].create(dict(usage="internal", **vals))
1649
+
1650
+ def _create_stock_quant(self, location_id, product_id, qty):
1651
+ self.env["stock.quant"].create(
1652
+ {
1653
+ "location_id": location_id.id,
1654
+ "product_id": product_id.id,
1655
+ "quantity": qty,
1656
+ }
1657
+ )
1658
+
1659
+ def test_two_pickings_related(self):
1660
+ """Test to check that order has two related pickings after confirmation"""
1661
+ expected_date = fields.Datetime.now()
1662
+ vals = {
1663
+ "company_id": self.main_company.id,
1664
+ "warehouse_id": self.warehouse.id,
1665
+ "location_id": self.manufacturing_loc.id,
1666
+ "expected_date": expected_date,
1667
+ "stock_request_ids": [
1668
+ (
1669
+ 0,
1670
+ 0,
1671
+ {
1672
+ "product_id": self.product_test.id,
1673
+ "product_uom_id": self.product_test.uom_id.id,
1674
+ "product_uom_qty": 5.0,
1675
+ "company_id": self.main_company.id,
1676
+ "warehouse_id": self.warehouse.id,
1677
+ "location_id": self.manufacturing_loc.id,
1678
+ "expected_date": expected_date,
1679
+ },
1680
+ )
1681
+ ],
1682
+ }
1683
+ order = self.request_order.with_user(self.stock_request_user).create(vals)
1684
+ order.with_user(self.stock_request_manager).action_confirm()
1685
+ self.assertEqual(len(order.mapped("picking_ids")), 2)
@@ -1,12 +1,11 @@
1
1
  Metadata-Version: 2.1
2
- Name: odoo-addon-stock-request
3
- Version: 16.0.1.1.0.2
2
+ Name: odoo-addon-stock_request
3
+ Version: 16.0.1.1.2
4
4
  Summary: Internal request for stock
5
5
  Home-page: https://github.com/OCA/stock-logistics-request
6
6
  Author: ForgeFlow, Odoo Community Association (OCA)
7
7
  Author-email: support@odoo-community.org
8
8
  License: LGPL-3
9
- Platform: UNKNOWN
10
9
  Classifier: Programming Language :: Python
11
10
  Classifier: Framework :: Odoo
12
11
  Classifier: Framework :: Odoo :: 16.0
@@ -23,7 +22,7 @@ Stock Request
23
22
  !! This file is generated by oca-gen-addon-readme !!
24
23
  !! changes will be overwritten. !!
25
24
  !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
26
- !! source digest: sha256:e90ad1565ab205eb6def13c09a5e4fe84c790849a54905abcb243bc5200d7121
25
+ !! source digest: sha256:0367d84dd491deef6c2a13a02b3b4f9275b939fa89e9c82f926a14a2e374452a
27
26
  !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
28
27
 
29
28
  .. |badge1| image:: https://img.shields.io/badge/maturity-Beta-yellow.png
@@ -155,5 +154,3 @@ promote its widespread use.
155
154
  This module is part of the `OCA/stock-logistics-request <https://github.com/OCA/stock-logistics-request/tree/16.0/stock_request>`_ project on GitHub.
156
155
 
157
156
  You are welcome to contribute. To learn how please visit https://odoo-community.org/page/Contribute.
158
-
159
-
@@ -1,6 +1,6 @@
1
- odoo/addons/stock_request/README.rst,sha256=8TSxsvFvOb1YnpWxk81WAoIOziGP3b6M8r_jEPY2zTk,4854
1
+ odoo/addons/stock_request/README.rst,sha256=lBe_3XAIzSSRjtA-OTIpNbeYNv4No2A5n8ZGHUqQPRQ,4854
2
2
  odoo/addons/stock_request/__init__.py,sha256=X9EJGOE2GtZbS0G82PtSXmWSZ_R8jEM0rlJTDliQjp4,21
3
- odoo/addons/stock_request/__manifest__.py,sha256=vqbv4971uhlTuFPZmRnpZBJQSV5xHZMoLupLXjCPhNY,949
3
+ odoo/addons/stock_request/__manifest__.py,sha256=xZl-ZVU0f5-yqQgIPNmrxq5vFOWyaVGqiczjkxTNdTA,949
4
4
  odoo/addons/stock_request/data/stock_request_sequence_data.xml,sha256=MKvzK__cH1gecmyqWK6Vj7yJ0o1-oKbqy2ydNoTUhs0,683
5
5
  odoo/addons/stock_request/i18n/ca.po,sha256=i9BK-xndT2QgHC1JTssjLLzsWjUjUM2qOCN4EVvw89M,44832
6
6
  odoo/addons/stock_request/i18n/de.po,sha256=rPGmSY_eVqkA5FXZ83-gN3DNOOauO2pKwszZe5N0Pyw,49000
@@ -25,7 +25,7 @@ odoo/addons/stock_request/i18n/pt_BR.po,sha256=inK8GJw2VqcyEa6IEvap66lPQ5VWtRsGo
25
25
  odoo/addons/stock_request/i18n/ro.po,sha256=gJ3bopVurSIlYWs1MX1n5LeDMHHAgjeEhSH2-wZ0a08,44875
26
26
  odoo/addons/stock_request/i18n/ru.po,sha256=ULkGnplUXyWrIkPTtUngihB9N4ejAc1iN5nYfkpC3rA,44991
27
27
  odoo/addons/stock_request/i18n/sl.po,sha256=cMysT5Fo3WvFSY0vluaAtJDe_B3ze49ElC1TuNfGo2c,44889
28
- odoo/addons/stock_request/i18n/stock_request.pot,sha256=ds57NmOZMweKqSlaObw929cTrWhOepRQ562otIGRofA,44528
28
+ odoo/addons/stock_request/i18n/stock_request.pot,sha256=dQq_jxmFlHrAq6sJfAUT4EsxudE0VZmfMxzX7O4egc4,44701
29
29
  odoo/addons/stock_request/i18n/tr.po,sha256=2EZKLmQ2FsWICtJt85HRBQpt9T44uG2UDSp7CCD_4lc,44829
30
30
  odoo/addons/stock_request/i18n/tr_TR.po,sha256=23CO1KRkr8xQDLp-2DbRmNPgMbI57NrUktdBU-fNt6I,44847
31
31
  odoo/addons/stock_request/i18n/vi_VN.po,sha256=cP8mbK8i22JLxP5tJoJv6URc3KRya7e9M5yu93mbmgw,44852
@@ -38,8 +38,8 @@ odoo/addons/stock_request/models/stock_location.py,sha256=ckie9pUiJ2r_pU_-ojYZie
38
38
  odoo/addons/stock_request/models/stock_move.py,sha256=hDQhoO9GHD_-64C0VEcR9csAbldXHI_UtbbEVqVEyfQ,2812
39
39
  odoo/addons/stock_request/models/stock_move_line.py,sha256=yG9lnTjfAdUBdcclnrsB5bzvpItmpV0wrCHIh7hdJDQ,2773
40
40
  odoo/addons/stock_request/models/stock_picking.py,sha256=XmdxMG-GNKJjF6RE8inj45TBy1eEhmRh4nzb-0bMQs0,1339
41
- odoo/addons/stock_request/models/stock_request.py,sha256=BSLv_kcAam4SLe5W7aATQjkRQTuDD4xsHj7JNtrr4DU,16337
42
- odoo/addons/stock_request/models/stock_request_abstract.py,sha256=HiMezc9W7V1N59gPf7hTXepOvsDcaw7FDlKpbE7kVq0,9492
41
+ odoo/addons/stock_request/models/stock_request.py,sha256=vT8cD1dEYWAmehfkL2ZUFGBRmoEVl4-5kb9U_5aL1yU,17250
42
+ odoo/addons/stock_request/models/stock_request_abstract.py,sha256=rpmbgEfV_pVb8AeYhE0dKRNrvZpXbhlfyKMy0p5MC8w,9226
43
43
  odoo/addons/stock_request/models/stock_request_allocation.py,sha256=Kqq6VcZgYSbw2OSooeWgzVLBlWyiVJbR71dyKciPzUg,2927
44
44
  odoo/addons/stock_request/models/stock_request_order.py,sha256=ksl2Ab9NyGxO-I8UZwbxQd2y07nnYZfrhHOsHRD1KsE,15500
45
45
  odoo/addons/stock_request/models/stock_route.py,sha256=VFATxVyY7QGHjX3R83wSrST-EgXstJZY1QS0uALgbQw,853
@@ -54,9 +54,9 @@ odoo/addons/stock_request/security/ir.model.access.csv,sha256=dsUwAR79-qQNVwCZhv
54
54
  odoo/addons/stock_request/security/stock_request_security.xml,sha256=4nM10OVzHSG11_H2WsQ5HeIcPyGzceGq93qtJue1r0M,5886
55
55
  odoo/addons/stock_request/static/description/icon.png,sha256=HZGM_z7Ta3zNQ2924BUiMfDuVSCWqrEwUQMWXBnK7yk,15218
56
56
  odoo/addons/stock_request/static/description/icon.svg,sha256=e3qo4KGYRy7Mfzhb_bCfVA-73Rk2Lx1z9_kz7tTjdO0,9771
57
- odoo/addons/stock_request/static/description/index.html,sha256=epCwM9pFcQFlNYxcpb0kjkZbcIY_BHMO5ME4ASGfPYM,15995
57
+ odoo/addons/stock_request/static/description/index.html,sha256=5fS1kDWG2FelDyjj8urB7HiUychwF-76yq6Jvpgumok,16078
58
58
  odoo/addons/stock_request/tests/__init__.py,sha256=3NQ2fafGprBbsMjR2Y__yzyvFX5Vio1r0j6tT3FTbas,33
59
- odoo/addons/stock_request/tests/test_stock_request.py,sha256=j5o8BBgRjgic2o4iMQYUR9bDpysUP9M0vkVGF5ILu7Q,62313
59
+ odoo/addons/stock_request/tests/test_stock_request.py,sha256=qiUF5Vz17sX8vF4Aej81N6vMqdNSBPjAeEiXiwJct-M,67992
60
60
  odoo/addons/stock_request/views/product.xml,sha256=CJ6RE5uGQLlIMDCPKxw8nhodb_rR3jaj-mF5ozCFUKI,1517
61
61
  odoo/addons/stock_request/views/res_config_settings_views.xml,sha256=l2V6pRh1FEbFuNEAy5Sp6DB945HXNF1YMUzeAzg-jM0,8628
62
62
  odoo/addons/stock_request/views/stock_move_views.xml,sha256=Z5pNG0WfYz-CTlxgB-rma0BoT08VQDHnm3J_Ksu9BxA,1072
@@ -65,7 +65,7 @@ odoo/addons/stock_request/views/stock_request_allocation_views.xml,sha256=NhoVR2
65
65
  odoo/addons/stock_request/views/stock_request_menu.xml,sha256=S_3HPkmYcHC_xtPjusHiZX7RUW5CGrJW3w52ScnJFNw,1308
66
66
  odoo/addons/stock_request/views/stock_request_order_views.xml,sha256=TChohKvG0MFc7K5TBNXAkQUU6CbJKdYBQea5gO6IbNg,10843
67
67
  odoo/addons/stock_request/views/stock_request_views.xml,sha256=zs_4N_VAskigIJp9i-kkG40QEqkxeteK-qcJ6MQqeqU,11757
68
- odoo_addon_stock_request-16.0.1.1.0.2.dist-info/METADATA,sha256=M4G7rhr52Y2qiSG1DnMT-N6RzJI6vXFB__HmC-qRJck,5410
69
- odoo_addon_stock_request-16.0.1.1.0.2.dist-info/WHEEL,sha256=GJ7t_kWBFywbagK5eo9IoUwLW6oyOeTKmQ-9iHFVNxQ,92
70
- odoo_addon_stock_request-16.0.1.1.0.2.dist-info/top_level.txt,sha256=qBj40grFkGOfDZ2WDSw3y1RnDlgG0u8rP8pvGNdbz4w,5
71
- odoo_addon_stock_request-16.0.1.1.0.2.dist-info/RECORD,,
68
+ odoo_addon_stock_request-16.0.1.1.2.dist-info/METADATA,sha256=XqiQ6TvN0G2CgyQET9ndJMlQaT8ioKv7xyBBpA2AVqs,5388
69
+ odoo_addon_stock_request-16.0.1.1.2.dist-info/WHEEL,sha256=GJ7t_kWBFywbagK5eo9IoUwLW6oyOeTKmQ-9iHFVNxQ,92
70
+ odoo_addon_stock_request-16.0.1.1.2.dist-info/top_level.txt,sha256=qBj40grFkGOfDZ2WDSw3y1RnDlgG0u8rP8pvGNdbz4w,5
71
+ odoo_addon_stock_request-16.0.1.1.2.dist-info/RECORD,,