odoo-addon-stock-request 17.0.1.1.0.2__py3-none-any.whl → 17.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.
- odoo/addons/stock_request/README.rst +1 -1
- odoo/addons/stock_request/__manifest__.py +1 -1
- odoo/addons/stock_request/i18n/stock_request.pot +0 -10
- odoo/addons/stock_request/models/stock_request.py +13 -2
- odoo/addons/stock_request/static/description/index.html +8 -5
- odoo/addons/stock_request/tests/test_stock_request.py +140 -0
- {odoo_addon_stock_request-17.0.1.1.0.2.dist-info → odoo_addon_stock_request-17.0.1.1.2.dist-info}/METADATA +2 -2
- {odoo_addon_stock_request-17.0.1.1.0.2.dist-info → odoo_addon_stock_request-17.0.1.1.2.dist-info}/RECORD +10 -10
- {odoo_addon_stock_request-17.0.1.1.0.2.dist-info → odoo_addon_stock_request-17.0.1.1.2.dist-info}/WHEEL +0 -0
- {odoo_addon_stock_request-17.0.1.1.0.2.dist-info → odoo_addon_stock_request-17.0.1.1.2.dist-info}/top_level.txt +0 -0
@@ -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:
|
10
|
+
!! source digest: sha256:13c707107bd0c380c8237386e1e79d0798b8c82909f70becab23e753fa0df1fc
|
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": "17.0.1.1.
|
7
|
+
"version": "17.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)",
|
@@ -354,11 +354,8 @@ msgstr ""
|
|
354
354
|
|
355
355
|
#. module: stock_request
|
356
356
|
#: model:ir.model.fields,help:stock_request.field_stock_request__message_has_error
|
357
|
-
#: model:ir.model.fields,help:stock_request.field_stock_request__message_has_sms_error
|
358
357
|
#: model:ir.model.fields,help:stock_request.field_stock_request_abstract__message_has_error
|
359
|
-
#: model:ir.model.fields,help:stock_request.field_stock_request_abstract__message_has_sms_error
|
360
358
|
#: model:ir.model.fields,help:stock_request.field_stock_request_order__message_has_error
|
361
|
-
#: model:ir.model.fields,help:stock_request.field_stock_request_order__message_has_sms_error
|
362
359
|
msgid "If checked, some messages have a delivery error."
|
363
360
|
msgstr ""
|
364
361
|
|
@@ -751,13 +748,6 @@ msgstr ""
|
|
751
748
|
msgid "Routes"
|
752
749
|
msgstr ""
|
753
750
|
|
754
|
-
#. module: stock_request
|
755
|
-
#: model:ir.model.fields,field_description:stock_request.field_stock_request__message_has_sms_error
|
756
|
-
#: model:ir.model.fields,field_description:stock_request.field_stock_request_abstract__message_has_sms_error
|
757
|
-
#: model:ir.model.fields,field_description:stock_request.field_stock_request_order__message_has_sms_error
|
758
|
-
msgid "SMS Delivery error"
|
759
|
-
msgstr ""
|
760
|
-
|
761
751
|
#. module: stock_request
|
762
752
|
#: model_terms:ir.ui.view,arch_db:stock_request.stock_request_order_form
|
763
753
|
#: model_terms:ir.ui.view,arch_db:stock_request.view_stock_request_form
|
@@ -111,10 +111,21 @@ class StockRequest(models.Model):
|
|
111
111
|
("name_uniq", "unique(name, company_id)", "Stock Request name must be unique")
|
112
112
|
]
|
113
113
|
|
114
|
+
def _get_all_origin_moves(self, move):
|
115
|
+
all_moves = move
|
116
|
+
if move.move_orig_ids:
|
117
|
+
for orig_move in move.move_orig_ids:
|
118
|
+
all_moves |= self._get_all_origin_moves(orig_move)
|
119
|
+
return all_moves
|
120
|
+
|
114
121
|
@api.depends("allocation_ids", "allocation_ids.stock_move_id")
|
115
122
|
def _compute_move_ids(self):
|
116
123
|
for request in self:
|
117
|
-
|
124
|
+
move_ids = request.allocation_ids.mapped("stock_move_id")
|
125
|
+
all_moves = self.env["stock.move"]
|
126
|
+
for move in move_ids:
|
127
|
+
all_moves |= self._get_all_origin_moves(move)
|
128
|
+
request.move_ids = all_moves
|
118
129
|
|
119
130
|
@api.depends(
|
120
131
|
"allocation_ids",
|
@@ -411,7 +422,7 @@ class StockRequest(models.Model):
|
|
411
422
|
)
|
412
423
|
self.env["procurement.group"].run(procurements)
|
413
424
|
except UserError as error:
|
414
|
-
errors.append(error
|
425
|
+
errors.append(str(error))
|
415
426
|
if errors:
|
416
427
|
raise UserError("\n".join(errors))
|
417
428
|
return True
|
@@ -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:13c707107bd0c380c8237386e1e79d0798b8c82909f70becab23e753fa0df1fc
|
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/17.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-17-0/stock-logistics-request-17-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&target_branch=17.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
|
@@ -468,7 +469,9 @@ If you spotted it first, help us to smash it by providing a detailed and welcome
|
|
468
469
|
<div class="section" id="maintainers">
|
469
470
|
<h2><a class="toc-backref" href="#toc-entry-8">Maintainers</a></h2>
|
470
471
|
<p>This module is maintained by the OCA.</p>
|
471
|
-
<a class="reference external image-reference" href="https://odoo-community.org"
|
472
|
+
<a class="reference external image-reference" href="https://odoo-community.org">
|
473
|
+
<img alt="Odoo Community Association" src="https://odoo-community.org/logo.png" />
|
474
|
+
</a>
|
472
475
|
<p>OCA, or the Odoo Community Association, is a nonprofit organization whose
|
473
476
|
mission is to support the collaborative development of Odoo features and
|
474
477
|
promote its widespread use.</p>
|
@@ -1568,3 +1568,143 @@ class TestStockRequestOrderState(TestStockRequest):
|
|
1568
1568
|
self.route.id,
|
1569
1569
|
"Route ID should update on all stock requests on onchange.",
|
1570
1570
|
)
|
1571
|
+
|
1572
|
+
|
1573
|
+
class TestStockRequestOrderChainedTransfers(common.TransactionCase):
|
1574
|
+
def setUp(self):
|
1575
|
+
super().setUp()
|
1576
|
+
self.env = self.env(
|
1577
|
+
context=dict(
|
1578
|
+
self.env.context,
|
1579
|
+
mail_create_nolog=True,
|
1580
|
+
mail_create_nosubscribe=True,
|
1581
|
+
mail_notrack=True,
|
1582
|
+
no_reset_password=True,
|
1583
|
+
tracking_disable=True,
|
1584
|
+
)
|
1585
|
+
)
|
1586
|
+
self.request_order = self.env["stock.request.order"]
|
1587
|
+
self.stock_request = self.env["stock.request"]
|
1588
|
+
self.main_company = self.env.ref("base.main_company")
|
1589
|
+
self.warehouse = self.env.ref("stock.warehouse0")
|
1590
|
+
self.uom_unit = self.env.ref("uom.product_uom_unit")
|
1591
|
+
self.uom_dozen = self.env.ref("uom.product_uom_dozen")
|
1592
|
+
self.stock_request_user = new_test_user(
|
1593
|
+
self.env,
|
1594
|
+
login="stock_request_user",
|
1595
|
+
groups="stock_request.group_stock_request_user",
|
1596
|
+
company_ids=[(6, 0, [self.main_company.id])],
|
1597
|
+
)
|
1598
|
+
self.stock_request_manager = new_test_user(
|
1599
|
+
self.env,
|
1600
|
+
login="stock_request_manager",
|
1601
|
+
groups="stock_request.group_stock_request_manager",
|
1602
|
+
company_ids=[(6, 0, [self.main_company.id])],
|
1603
|
+
)
|
1604
|
+
self.product_test = self._create_product("PROD", "Product Test")
|
1605
|
+
self.stock_loc = self._create_location(
|
1606
|
+
name="Backstock",
|
1607
|
+
location_id=self.warehouse.view_location_id.id,
|
1608
|
+
company_id=self.main_company.id,
|
1609
|
+
)
|
1610
|
+
self.transit_loc = self._create_location(
|
1611
|
+
name="Transit",
|
1612
|
+
location_id=self.warehouse.view_location_id.id,
|
1613
|
+
company_id=self.main_company.id,
|
1614
|
+
)
|
1615
|
+
self.manufacturing_loc = self._create_location(
|
1616
|
+
name="Manufacturing",
|
1617
|
+
location_id=self.warehouse.view_location_id.id,
|
1618
|
+
company_id=self.main_company.id,
|
1619
|
+
)
|
1620
|
+
self.route = self.env["stock.route"].create(
|
1621
|
+
{
|
1622
|
+
"name": "Backstock to Manufacturing (2 steps)",
|
1623
|
+
"warehouse_selectable": True,
|
1624
|
+
"warehouse_ids": [(6, 0, [self.warehouse.id])],
|
1625
|
+
"rule_ids": [
|
1626
|
+
(
|
1627
|
+
0,
|
1628
|
+
False,
|
1629
|
+
{
|
1630
|
+
"name": "Stock to Transit",
|
1631
|
+
"location_src_id": self.stock_loc.id,
|
1632
|
+
"location_dest_id": self.transit_loc.id,
|
1633
|
+
"action": "pull",
|
1634
|
+
"picking_type_id": self.warehouse.int_type_id.id,
|
1635
|
+
"procure_method": "make_to_stock",
|
1636
|
+
"warehouse_id": self.warehouse.id,
|
1637
|
+
"company_id": self.main_company.id,
|
1638
|
+
},
|
1639
|
+
),
|
1640
|
+
(
|
1641
|
+
0,
|
1642
|
+
False,
|
1643
|
+
{
|
1644
|
+
"name": "Transit to Manufacturing",
|
1645
|
+
"location_src_id": self.transit_loc.id,
|
1646
|
+
"location_dest_id": self.manufacturing_loc.id,
|
1647
|
+
"action": "pull_push",
|
1648
|
+
"picking_type_id": self.warehouse.int_type_id.id,
|
1649
|
+
"procure_method": "make_to_order",
|
1650
|
+
"warehouse_id": self.warehouse.id,
|
1651
|
+
"company_id": self.main_company.id,
|
1652
|
+
},
|
1653
|
+
),
|
1654
|
+
],
|
1655
|
+
}
|
1656
|
+
)
|
1657
|
+
self.product_test.route_ids = [(6, 0, [self.route.id])]
|
1658
|
+
self._create_stock_quant(self.stock_loc, self.product_test, 5)
|
1659
|
+
|
1660
|
+
def _create_product(self, default_code, name, **vals):
|
1661
|
+
return self.env["product.product"].create(
|
1662
|
+
dict(
|
1663
|
+
name=name,
|
1664
|
+
default_code=default_code,
|
1665
|
+
uom_id=self.uom_unit.id,
|
1666
|
+
uom_po_id=self.uom_dozen.id,
|
1667
|
+
type="product",
|
1668
|
+
**vals,
|
1669
|
+
)
|
1670
|
+
)
|
1671
|
+
|
1672
|
+
def _create_location(self, **vals):
|
1673
|
+
return self.env["stock.location"].create(dict(usage="internal", **vals))
|
1674
|
+
|
1675
|
+
def _create_stock_quant(self, location_id, product_id, qty):
|
1676
|
+
self.env["stock.quant"].create(
|
1677
|
+
{
|
1678
|
+
"location_id": location_id.id,
|
1679
|
+
"product_id": product_id.id,
|
1680
|
+
"quantity": qty,
|
1681
|
+
}
|
1682
|
+
)
|
1683
|
+
|
1684
|
+
def test_two_pickings_related(self):
|
1685
|
+
"""Test to check that order has two related pickings after confirmation"""
|
1686
|
+
expected_date = fields.Datetime.now()
|
1687
|
+
vals = {
|
1688
|
+
"company_id": self.main_company.id,
|
1689
|
+
"warehouse_id": self.warehouse.id,
|
1690
|
+
"location_id": self.manufacturing_loc.id,
|
1691
|
+
"expected_date": expected_date,
|
1692
|
+
"stock_request_ids": [
|
1693
|
+
(
|
1694
|
+
0,
|
1695
|
+
0,
|
1696
|
+
{
|
1697
|
+
"product_id": self.product_test.id,
|
1698
|
+
"product_uom_id": self.product_test.uom_id.id,
|
1699
|
+
"product_uom_qty": 5.0,
|
1700
|
+
"company_id": self.main_company.id,
|
1701
|
+
"warehouse_id": self.warehouse.id,
|
1702
|
+
"location_id": self.manufacturing_loc.id,
|
1703
|
+
"expected_date": expected_date,
|
1704
|
+
},
|
1705
|
+
)
|
1706
|
+
],
|
1707
|
+
}
|
1708
|
+
order = self.request_order.with_user(self.stock_request_user).create(vals)
|
1709
|
+
order.with_user(self.stock_request_manager).action_confirm()
|
1710
|
+
self.assertEqual(len(order.mapped("picking_ids")), 2)
|
@@ -1,6 +1,6 @@
|
|
1
1
|
Metadata-Version: 2.1
|
2
2
|
Name: odoo-addon-stock_request
|
3
|
-
Version: 17.0.1.1.
|
3
|
+
Version: 17.0.1.1.2
|
4
4
|
Requires-Python: >=3.10
|
5
5
|
Requires-Dist: odoo>=17.0a,<17.1dev
|
6
6
|
Summary: Internal request for stock
|
@@ -22,7 +22,7 @@ Stock Request
|
|
22
22
|
!! This file is generated by oca-gen-addon-readme !!
|
23
23
|
!! changes will be overwritten. !!
|
24
24
|
!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
|
25
|
-
!! source digest: sha256:
|
25
|
+
!! source digest: sha256:13c707107bd0c380c8237386e1e79d0798b8c82909f70becab23e753fa0df1fc
|
26
26
|
!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
|
27
27
|
|
28
28
|
.. |badge1| image:: https://img.shields.io/badge/maturity-Beta-yellow.png
|
@@ -1,6 +1,6 @@
|
|
1
|
-
odoo/addons/stock_request/README.rst,sha256=
|
1
|
+
odoo/addons/stock_request/README.rst,sha256=15yOWKg-WFIk_vdIvJQXJwsXmEqKLjUGskNIIw-rQxw,4877
|
2
2
|
odoo/addons/stock_request/__init__.py,sha256=X9EJGOE2GtZbS0G82PtSXmWSZ_R8jEM0rlJTDliQjp4,21
|
3
|
-
odoo/addons/stock_request/__manifest__.py,sha256=
|
3
|
+
odoo/addons/stock_request/__manifest__.py,sha256=9o7lm6Xqm30gHsWl8winJfsxCTYOAe-Mfnk_6x3AzOs,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=7EdM3tlxlk-a09VUk_E-5TvpCCcf2jzrJep7mckl2d8,44308
|
6
6
|
odoo/addons/stock_request/i18n/de.po,sha256=G8qHRDARBmCz9qOto8s6z6a-pq1UfaK8sMufeaEUWw8,49535
|
@@ -25,7 +25,7 @@ odoo/addons/stock_request/i18n/pt_BR.po,sha256=wLfSCQCL-9e7ZzF0mLJrvmSPayzymFhSm
|
|
25
25
|
odoo/addons/stock_request/i18n/ro.po,sha256=yJzq2UqRcS_6XnMQTg741mSRDp-Y-RIyiLyAcHCYOLw,44351
|
26
26
|
odoo/addons/stock_request/i18n/ru.po,sha256=8mY5wsL6nqgHcu4ll5BffBMFDUDm8g6YQzGVdqoQbHk,44467
|
27
27
|
odoo/addons/stock_request/i18n/sl.po,sha256=CGnOwSkNSBWtgHjSFw4bPWZvsfUybi7rWntSK6C_LLM,44365
|
28
|
-
odoo/addons/stock_request/i18n/stock_request.pot,sha256=
|
28
|
+
odoo/addons/stock_request/i18n/stock_request.pot,sha256=iLMCon1e_bMvDy64kVwqI0WkNIJ_bIWKtCQOMFhzLMg,43350
|
29
29
|
odoo/addons/stock_request/i18n/tr.po,sha256=EaD5yCm6XaGgnewbVgFA-bE1SVs89kl-FHM0HjaYLPs,44305
|
30
30
|
odoo/addons/stock_request/i18n/tr_TR.po,sha256=HJ-gjjbO-J1xKWvL0bfMjtI4KzGh0V8VTpy6ry7WWjk,44323
|
31
31
|
odoo/addons/stock_request/i18n/vi_VN.po,sha256=TPfyIYfB95DH2_bLiRK5g2oK-RlHwjJth-1anhAKygg,44328
|
@@ -38,7 +38,7 @@ odoo/addons/stock_request/models/stock_location.py,sha256=ckie9pUiJ2r_pU_-ojYZie
|
|
38
38
|
odoo/addons/stock_request/models/stock_move.py,sha256=Pu8aIo3ydPuoUbUuBcKjCND_VRilp5Uh6AKnzQmbOhs,2782
|
39
39
|
odoo/addons/stock_request/models/stock_move_line.py,sha256=75R5LJjHZtU-fTHcC_vhnoMhgDEG-S9fYuUsD_vmzQ4,2765
|
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=
|
41
|
+
odoo/addons/stock_request/models/stock_request.py,sha256=GvBO0DH7UfTmCNSgFmwYAIAA-cAQMQbAVeNfaMIFjGg,16687
|
42
42
|
odoo/addons/stock_request/models/stock_request_abstract.py,sha256=6U0dh2NWcIndDSKYfwMLMJREZc1pPfS_sUoTwjweAh0,9505
|
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=jkNQT2dkocE9F_xT9zWYBHmvsI2GSHFUvTaaT8B5qw8,15146
|
@@ -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=VP0gCObFyM2wl0jcsO_J0vt2_jV0BQWtj4UMSqPellA,5978
|
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
|
57
|
+
odoo/addons/stock_request/static/description/index.html,sha256=7FDJM_VLmWJGwVZWi1Kpo-AlqjiruTNDQZHovA701Ek,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=
|
59
|
+
odoo/addons/stock_request/tests/test_stock_request.py,sha256=C08XmKAYBJjlpfDDsgojfnkdIDfKdEV81O-fJn8-qas,68768
|
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=kE05fmV2drjepSISURc67R7Uk_62zayWtncGSxzKTBo,6260
|
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=xVN0r-S1h9B4xg-duX00qNix3SM-4kTmDDP5JUzvA5s,11383
|
67
67
|
odoo/addons/stock_request/views/stock_request_views.xml,sha256=o_9aY_EOfHymmrg79uQJcVi4snCTUMt3CWacxmnIrxY,12136
|
68
|
-
odoo_addon_stock_request-17.0.1.1.
|
69
|
-
odoo_addon_stock_request-17.0.1.1.
|
70
|
-
odoo_addon_stock_request-17.0.1.1.
|
71
|
-
odoo_addon_stock_request-17.0.1.1.
|
68
|
+
odoo_addon_stock_request-17.0.1.1.2.dist-info/METADATA,sha256=6kcXPHs7GGSG5oflYciEFTBc5sasEFoVyrOeNWpq5Wo,5410
|
69
|
+
odoo_addon_stock_request-17.0.1.1.2.dist-info/WHEEL,sha256=8Rd4enx1PCuyDWP4SABqO5Fv8rpaknqp3VzjoFFLa6c,83
|
70
|
+
odoo_addon_stock_request-17.0.1.1.2.dist-info/top_level.txt,sha256=QE6RBQ0QX5f4eFuUcGgU5Kbq1A_qJcDs-e_vpr6pmfU,4
|
71
|
+
odoo_addon_stock_request-17.0.1.1.2.dist-info/RECORD,,
|
File without changes
|
File without changes
|