odoo-addon-sale-blanket-order 16.0.1.3.0__py3-none-any.whl → 16.0.1.3.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.
Potentially problematic release.
This version of odoo-addon-sale-blanket-order might be problematic. Click here for more details.
- odoo/addons/sale_blanket_order/README.rst +6 -2
- odoo/addons/sale_blanket_order/__manifest__.py +1 -1
- odoo/addons/sale_blanket_order/i18n/sale_blanket_order.pot +0 -7
- odoo/addons/sale_blanket_order/models/blanket_orders.py +0 -3
- odoo/addons/sale_blanket_order/static/description/index.html +18 -12
- {odoo_addon_sale_blanket_order-16.0.1.3.0.dist-info → odoo_addon_sale_blanket_order-16.0.1.3.1.dist-info}/METADATA +7 -3
- {odoo_addon_sale_blanket_order-16.0.1.3.0.dist-info → odoo_addon_sale_blanket_order-16.0.1.3.1.dist-info}/RECORD +9 -9
- {odoo_addon_sale_blanket_order-16.0.1.3.0.dist-info → odoo_addon_sale_blanket_order-16.0.1.3.1.dist-info}/WHEEL +0 -0
- {odoo_addon_sale_blanket_order-16.0.1.3.0.dist-info → odoo_addon_sale_blanket_order-16.0.1.3.1.dist-info}/top_level.txt +0 -0
|
@@ -1,3 +1,7 @@
|
|
|
1
|
+
.. image:: https://odoo-community.org/readme-banner-image
|
|
2
|
+
:target: https://odoo-community.org/get-involved?utm_source=readme
|
|
3
|
+
:alt: Odoo Community Association
|
|
4
|
+
|
|
1
5
|
===================
|
|
2
6
|
Sale Blanket Orders
|
|
3
7
|
===================
|
|
@@ -7,13 +11,13 @@ Sale Blanket Orders
|
|
|
7
11
|
!! This file is generated by oca-gen-addon-readme !!
|
|
8
12
|
!! changes will be overwritten. !!
|
|
9
13
|
!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
|
|
10
|
-
!! source digest: sha256:
|
|
14
|
+
!! source digest: sha256:2304d65f97e02bd0fec986276cb77baf60ddd090d6bc436ae7004c8276b7c666
|
|
11
15
|
!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
|
|
12
16
|
|
|
13
17
|
.. |badge1| image:: https://img.shields.io/badge/maturity-Beta-yellow.png
|
|
14
18
|
:target: https://odoo-community.org/page/development-status
|
|
15
19
|
:alt: Beta
|
|
16
|
-
.. |badge2| image:: https://img.shields.io/badge/
|
|
20
|
+
.. |badge2| image:: https://img.shields.io/badge/license-AGPL--3-blue.png
|
|
17
21
|
:target: http://www.gnu.org/licenses/agpl-3.0-standalone.html
|
|
18
22
|
:alt: License: AGPL-3
|
|
19
23
|
.. |badge3| image:: https://img.shields.io/badge/github-OCA%2Fsale--workflow-lightgray.png?logo=github
|
|
@@ -5,7 +5,7 @@
|
|
|
5
5
|
"category": "Sale",
|
|
6
6
|
"license": "AGPL-3",
|
|
7
7
|
"author": "Acsone SA/NV, Odoo Community Association (OCA)",
|
|
8
|
-
"version": "16.0.1.3.
|
|
8
|
+
"version": "16.0.1.3.1",
|
|
9
9
|
"website": "https://github.com/OCA/sale-workflow",
|
|
10
10
|
"summary": "Blanket Orders",
|
|
11
11
|
"depends": ["uom", "sale_management", "web_action_conditionable"],
|
|
@@ -660,13 +660,6 @@ msgstr ""
|
|
|
660
660
|
msgid "Price"
|
|
661
661
|
msgstr ""
|
|
662
662
|
|
|
663
|
-
#. module: sale_blanket_order
|
|
664
|
-
#. odoo-python
|
|
665
|
-
#: code:addons/sale_blanket_order/models/blanket_orders.py:0
|
|
666
|
-
#, python-format
|
|
667
|
-
msgid "Price must be greater than zero"
|
|
668
|
-
msgstr ""
|
|
669
|
-
|
|
670
663
|
#. module: sale_blanket_order
|
|
671
664
|
#: model:ir.model.fields,field_description:sale_blanket_order.field_sale_blanket_order__pricelist_id
|
|
672
665
|
#: model:ir.model.fields,field_description:sale_blanket_order.field_sale_blanket_order_line__pricelist_id
|
|
@@ -659,9 +659,6 @@ class BlanketOrderLine(models.Model):
|
|
|
659
659
|
def _validate(self):
|
|
660
660
|
try:
|
|
661
661
|
for line in self:
|
|
662
|
-
assert (
|
|
663
|
-
not line.display_type and line.price_unit > 0.0
|
|
664
|
-
) or line.display_type, _("Price must be greater than zero")
|
|
665
662
|
assert (
|
|
666
663
|
not line.display_type and line.original_uom_qty > 0.0
|
|
667
664
|
) or line.display_type, _("Quantity must be greater than zero")
|
|
@@ -3,7 +3,7 @@
|
|
|
3
3
|
<head>
|
|
4
4
|
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
|
|
5
5
|
<meta name="generator" content="Docutils: https://docutils.sourceforge.io/" />
|
|
6
|
-
<title>
|
|
6
|
+
<title>README.rst</title>
|
|
7
7
|
<style type="text/css">
|
|
8
8
|
|
|
9
9
|
/*
|
|
@@ -360,16 +360,21 @@ ul.auto-toc {
|
|
|
360
360
|
</style>
|
|
361
361
|
</head>
|
|
362
362
|
<body>
|
|
363
|
-
<div class="document"
|
|
364
|
-
<h1 class="title">Sale Blanket Orders</h1>
|
|
363
|
+
<div class="document">
|
|
365
364
|
|
|
365
|
+
|
|
366
|
+
<a class="reference external image-reference" href="https://odoo-community.org/get-involved?utm_source=readme">
|
|
367
|
+
<img alt="Odoo Community Association" src="https://odoo-community.org/readme-banner-image" />
|
|
368
|
+
</a>
|
|
369
|
+
<div class="section" id="sale-blanket-orders">
|
|
370
|
+
<h1>Sale Blanket Orders</h1>
|
|
366
371
|
<!-- !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
|
|
367
372
|
!! This file is generated by oca-gen-addon-readme !!
|
|
368
373
|
!! changes will be overwritten. !!
|
|
369
374
|
!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
|
|
370
|
-
!! source digest: sha256:
|
|
375
|
+
!! source digest: sha256:2304d65f97e02bd0fec986276cb77baf60ddd090d6bc436ae7004c8276b7c666
|
|
371
376
|
!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! -->
|
|
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/agpl-3.0-standalone.html"><img alt="License: AGPL-3" src="https://img.shields.io/badge/
|
|
377
|
+
<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/agpl-3.0-standalone.html"><img alt="License: AGPL-3" src="https://img.shields.io/badge/license-AGPL--3-blue.png" /></a> <a class="reference external image-reference" href="https://github.com/OCA/sale-workflow/tree/16.0/sale_blanket_order"><img alt="OCA/sale-workflow" src="https://img.shields.io/badge/github-OCA%2Fsale--workflow-lightgray.png?logo=github" /></a> <a class="reference external image-reference" href="https://translation.odoo-community.org/projects/sale-workflow-16-0/sale-workflow-16-0-sale_blanket_order"><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/sale-workflow&target_branch=16.0"><img alt="Try me on Runboat" src="https://img.shields.io/badge/runboat-Try%20me-875A7B.png" /></a></p>
|
|
373
378
|
<p>A blanket order is a pre-agreement to sell a certain number of quantities of
|
|
374
379
|
products at a specific price. From a confirmed blanket order, the users can
|
|
375
380
|
create new sale orders at such price, until the blanket order expires, either
|
|
@@ -389,7 +394,7 @@ due to reaching the validity date or exhausting all the quantities of products.<
|
|
|
389
394
|
</ul>
|
|
390
395
|
</div>
|
|
391
396
|
<div class="section" id="usage">
|
|
392
|
-
<
|
|
397
|
+
<h2><a class="toc-backref" href="#toc-entry-1">Usage</a></h2>
|
|
393
398
|
<p>A new menu in the Sales area is created, allowing users to create new blanket orders.</p>
|
|
394
399
|
<p>To create a new Sale Blanket Order go to the sale menu in the Sales section:</p>
|
|
395
400
|
<div class="figure">
|
|
@@ -447,7 +452,7 @@ factors:</p>
|
|
|
447
452
|
</div>
|
|
448
453
|
</div>
|
|
449
454
|
<div class="section" id="bug-tracker">
|
|
450
|
-
<
|
|
455
|
+
<h2><a class="toc-backref" href="#toc-entry-2">Bug Tracker</a></h2>
|
|
451
456
|
<p>Bugs are tracked on <a class="reference external" href="https://github.com/OCA/sale-workflow/issues">GitHub Issues</a>.
|
|
452
457
|
In case of trouble, please check there if your issue has already been reported.
|
|
453
458
|
If you spotted it first, help us to smash it by providing a detailed and welcomed
|
|
@@ -455,15 +460,15 @@ If you spotted it first, help us to smash it by providing a detailed and welcome
|
|
|
455
460
|
<p>Do not contact contributors directly about support or help with technical issues.</p>
|
|
456
461
|
</div>
|
|
457
462
|
<div class="section" id="credits">
|
|
458
|
-
<
|
|
463
|
+
<h2><a class="toc-backref" href="#toc-entry-3">Credits</a></h2>
|
|
459
464
|
<div class="section" id="authors">
|
|
460
|
-
<
|
|
465
|
+
<h3><a class="toc-backref" href="#toc-entry-4">Authors</a></h3>
|
|
461
466
|
<ul class="simple">
|
|
462
467
|
<li>Acsone SA/NV</li>
|
|
463
468
|
</ul>
|
|
464
469
|
</div>
|
|
465
470
|
<div class="section" id="contributors">
|
|
466
|
-
<
|
|
471
|
+
<h3><a class="toc-backref" href="#toc-entry-5">Contributors</a></h3>
|
|
467
472
|
<ul>
|
|
468
473
|
<li><p class="first">André Pereira <<a class="reference external" href="mailto:github@andreparames.com">github@andreparames.com</a>> (<a class="reference external" href="https://www.acsone.eu/">https://www.acsone.eu/</a>)</p>
|
|
469
474
|
</li>
|
|
@@ -485,11 +490,11 @@ If you spotted it first, help us to smash it by providing a detailed and welcome
|
|
|
485
490
|
</ul>
|
|
486
491
|
</div>
|
|
487
492
|
<div class="section" id="other-credits">
|
|
488
|
-
<
|
|
493
|
+
<h3><a class="toc-backref" href="#toc-entry-6">Other credits</a></h3>
|
|
489
494
|
<p>The migration of this module from 15.0 to 16.0 was financially supported by Camptocamp</p>
|
|
490
495
|
</div>
|
|
491
496
|
<div class="section" id="maintainers">
|
|
492
|
-
<
|
|
497
|
+
<h3><a class="toc-backref" href="#toc-entry-7">Maintainers</a></h3>
|
|
493
498
|
<p>This module is maintained by the OCA.</p>
|
|
494
499
|
<a class="reference external image-reference" href="https://odoo-community.org">
|
|
495
500
|
<img alt="Odoo Community Association" src="https://odoo-community.org/logo.png" />
|
|
@@ -502,5 +507,6 @@ promote its widespread use.</p>
|
|
|
502
507
|
</div>
|
|
503
508
|
</div>
|
|
504
509
|
</div>
|
|
510
|
+
</div>
|
|
505
511
|
</body>
|
|
506
512
|
</html>
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.1
|
|
2
2
|
Name: odoo-addon-sale_blanket_order
|
|
3
|
-
Version: 16.0.1.3.
|
|
3
|
+
Version: 16.0.1.3.1
|
|
4
4
|
Summary: Blanket Orders
|
|
5
5
|
Home-page: https://github.com/OCA/sale-workflow
|
|
6
6
|
Author: Acsone SA/NV, Odoo Community Association (OCA)
|
|
@@ -14,6 +14,10 @@ Requires-Python: >=3.10
|
|
|
14
14
|
Requires-Dist: odoo-addon-web-action-conditionable<16.1dev,>=16.0dev
|
|
15
15
|
Requires-Dist: odoo<16.1dev,>=16.0a
|
|
16
16
|
|
|
17
|
+
.. image:: https://odoo-community.org/readme-banner-image
|
|
18
|
+
:target: https://odoo-community.org/get-involved?utm_source=readme
|
|
19
|
+
:alt: Odoo Community Association
|
|
20
|
+
|
|
17
21
|
===================
|
|
18
22
|
Sale Blanket Orders
|
|
19
23
|
===================
|
|
@@ -23,13 +27,13 @@ Sale Blanket Orders
|
|
|
23
27
|
!! This file is generated by oca-gen-addon-readme !!
|
|
24
28
|
!! changes will be overwritten. !!
|
|
25
29
|
!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
|
|
26
|
-
!! source digest: sha256:
|
|
30
|
+
!! source digest: sha256:2304d65f97e02bd0fec986276cb77baf60ddd090d6bc436ae7004c8276b7c666
|
|
27
31
|
!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
|
|
28
32
|
|
|
29
33
|
.. |badge1| image:: https://img.shields.io/badge/maturity-Beta-yellow.png
|
|
30
34
|
:target: https://odoo-community.org/page/development-status
|
|
31
35
|
:alt: Beta
|
|
32
|
-
.. |badge2| image:: https://img.shields.io/badge/
|
|
36
|
+
.. |badge2| image:: https://img.shields.io/badge/license-AGPL--3-blue.png
|
|
33
37
|
:target: http://www.gnu.org/licenses/agpl-3.0-standalone.html
|
|
34
38
|
:alt: License: AGPL-3
|
|
35
39
|
.. |badge3| image:: https://img.shields.io/badge/github-OCA%2Fsale--workflow-lightgray.png?logo=github
|
|
@@ -1,6 +1,6 @@
|
|
|
1
|
-
odoo/addons/sale_blanket_order/README.rst,sha256=
|
|
1
|
+
odoo/addons/sale_blanket_order/README.rst,sha256=fiLs2Yer-nlhmhJ4iCJI-rihWDBHNixZMAVisyY9Z8A,6296
|
|
2
2
|
odoo/addons/sale_blanket_order/__init__.py,sha256=rKfzYX9RhkkCxgh2f0PJLYN45Kw8T8-fwxw1pbjLuug,108
|
|
3
|
-
odoo/addons/sale_blanket_order/__manifest__.py,sha256=
|
|
3
|
+
odoo/addons/sale_blanket_order/__manifest__.py,sha256=FGdyC7dOGUhX0Oju6q-WQdnEIXJc5ZjWdM3qCCV0Jgg,884
|
|
4
4
|
odoo/addons/sale_blanket_order/data/ir_cron.xml,sha256=B6mIBP7TGt_V0-2tb-GtXQrOXr_FY4D7B0qvvCf3qXc,837
|
|
5
5
|
odoo/addons/sale_blanket_order/data/sequence.xml,sha256=xsEzImnYlOTADfACH_eBMFFjdy6nM_WqJTWJ3MN1_eM,416
|
|
6
6
|
odoo/addons/sale_blanket_order/i18n/de.po,sha256=xWtr9fkekR_qVvLgJVPLYbQMJHRATMuqcYcAJf9G2A4,44332
|
|
@@ -9,9 +9,9 @@ odoo/addons/sale_blanket_order/i18n/fr.po,sha256=Dk_NNYM6ygcNjvAa1oD17uMANMTNIW2
|
|
|
9
9
|
odoo/addons/sale_blanket_order/i18n/fr_FR.po,sha256=DtH4rbvoXwOaL4Wcc3Y6C7cwftPqYQlSH2leQRsYRlY,44222
|
|
10
10
|
odoo/addons/sale_blanket_order/i18n/it.po,sha256=qbMl-sa9OAxAmyzucl0tNPPNutBADYo1h0RBwUR_2UI,43935
|
|
11
11
|
odoo/addons/sale_blanket_order/i18n/pt.po,sha256=sJdXFvy8CA2LICYXSEEiaV4Qxszzo6k8-nTlk4vx4LY,39040
|
|
12
|
-
odoo/addons/sale_blanket_order/i18n/sale_blanket_order.pot,sha256=
|
|
12
|
+
odoo/addons/sale_blanket_order/i18n/sale_blanket_order.pot,sha256=ZtupzTnIaCb2-qWmbqTJ_AJlSuWWkrthklXuRapWBbM,38791
|
|
13
13
|
odoo/addons/sale_blanket_order/models/__init__.py,sha256=7adrBSDps9-KQKNJjoCBKeoWgeF21I62H9yqyQVcZGM,90
|
|
14
|
-
odoo/addons/sale_blanket_order/models/blanket_orders.py,sha256=
|
|
14
|
+
odoo/addons/sale_blanket_order/models/blanket_orders.py,sha256=I36DZWsoegHT4AkZ61BGdklYPfN0Mg5Q3R2WZupOWOA,26118
|
|
15
15
|
odoo/addons/sale_blanket_order/models/sale_config_settings.py,sha256=R71rDeTHdG70voBaBvOAIOS3raoK1hBE6c-Zh3AnQCM,411
|
|
16
16
|
odoo/addons/sale_blanket_order/models/sale_orders.py,sha256=pf1I17G5Owt7R-u1ijWggxlL5msJKBQbyi9MkQLCEKM,7768
|
|
17
17
|
odoo/addons/sale_blanket_order/readme/CONTRIBUTORS.rst,sha256=HNpm8unv-C1qkVXG3tTxG6E8Wz-IadLxyep8KWkQ1VQ,419
|
|
@@ -29,7 +29,7 @@ odoo/addons/sale_blanket_order/static/description/BO_menu.png,sha256=TWKnQPgzBgN
|
|
|
29
29
|
odoo/addons/sale_blanket_order/static/description/PO_BOLine.png,sha256=O8dfvlVOqDcmrKrHtWw5J1gm76fOQ53YCtu9_ujb4bs,37234
|
|
30
30
|
odoo/addons/sale_blanket_order/static/description/PO_from_BO.png,sha256=lmRWLs1DYkXmZfRVn_Hg2X8nEfazH2eVZ8unVlcdj-0,27671
|
|
31
31
|
odoo/addons/sale_blanket_order/static/description/icon.png,sha256=6xBPJauaFOF0KDHfHgQopSc28kKvxMaeoQFQWZtfZDo,9455
|
|
32
|
-
odoo/addons/sale_blanket_order/static/description/index.html,sha256=
|
|
32
|
+
odoo/addons/sale_blanket_order/static/description/index.html,sha256=VPkJ8vZg4mzt21C_LThgy8jipt62ifuWWzx_e4IqPL0,17353
|
|
33
33
|
odoo/addons/sale_blanket_order/tests/__init__.py,sha256=0z5WGDe8esOreObf1dM01uMp-O3GmL20PeIvqK0usXY,130
|
|
34
34
|
odoo/addons/sale_blanket_order/tests/test_blanket_orders.py,sha256=5pU4d7D1Y6JgGRs9BowsHs-Rioxvbg5mpZTHyo1SU38,16304
|
|
35
35
|
odoo/addons/sale_blanket_order/tests/test_sale_order.py,sha256=jQjjwYzVoFjkEmLRbRUybq7LPm30WQAruHrkscoUh_U,9898
|
|
@@ -40,7 +40,7 @@ odoo/addons/sale_blanket_order/views/sale_order_views.xml,sha256=dyB-P-5YeBbOIU2
|
|
|
40
40
|
odoo/addons/sale_blanket_order/wizard/__init__.py,sha256=4P5jq1IlE7JDNFP0ly3-alAHbqdIYf6fLjQjotKrG08,99
|
|
41
41
|
odoo/addons/sale_blanket_order/wizard/create_sale_orders.py,sha256=rUyPggjar7usC4EjRGmF9SZpviHUqdH7xvzYwYeNhsg,8109
|
|
42
42
|
odoo/addons/sale_blanket_order/wizard/create_sale_orders.xml,sha256=GjPlsYRKvN45F7ZSR-j7yJCW0U9OfBi-dIhRV8YqM8M,2091
|
|
43
|
-
odoo_addon_sale_blanket_order-16.0.1.3.
|
|
44
|
-
odoo_addon_sale_blanket_order-16.0.1.3.
|
|
45
|
-
odoo_addon_sale_blanket_order-16.0.1.3.
|
|
46
|
-
odoo_addon_sale_blanket_order-16.0.1.3.
|
|
43
|
+
odoo_addon_sale_blanket_order-16.0.1.3.1.dist-info/METADATA,sha256=LzCNv73EqbgQJn0nT_sDgoRbup6HwjV0fJSJKcYgCI8,6875
|
|
44
|
+
odoo_addon_sale_blanket_order-16.0.1.3.1.dist-info/WHEEL,sha256=tZoeGjtWxWRfdplE7E3d45VPlLNQnvbKiYnx7gwAy8A,92
|
|
45
|
+
odoo_addon_sale_blanket_order-16.0.1.3.1.dist-info/top_level.txt,sha256=qBj40grFkGOfDZ2WDSw3y1RnDlgG0u8rP8pvGNdbz4w,5
|
|
46
|
+
odoo_addon_sale_blanket_order-16.0.1.3.1.dist-info/RECORD,,
|
|
File without changes
|