odoo-addon-website-sale-slides-order-line-link 15.0.1.0.0.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.

Potentially problematic release.


This version of odoo-addon-website-sale-slides-order-line-link might be problematic. Click here for more details.

Files changed (20) hide show
  1. odoo/addons/website_sale_slides_order_line_link/README.rst +96 -0
  2. odoo/addons/website_sale_slides_order_line_link/__init__.py +1 -0
  3. odoo/addons/website_sale_slides_order_line_link/__manifest__.py +13 -0
  4. odoo/addons/website_sale_slides_order_line_link/description/icon.png +0 -0
  5. odoo/addons/website_sale_slides_order_line_link/description/index.html +654 -0
  6. odoo/addons/website_sale_slides_order_line_link/i18n/website_sale_slides_order_line_link.pot +39 -0
  7. odoo/addons/website_sale_slides_order_line_link/models/__init__.py +2 -0
  8. odoo/addons/website_sale_slides_order_line_link/models/sale_order.py +26 -0
  9. odoo/addons/website_sale_slides_order_line_link/models/slide_channel.py +27 -0
  10. odoo/addons/website_sale_slides_order_line_link/readme/CONTRIBUTORS.rst +4 -0
  11. odoo/addons/website_sale_slides_order_line_link/readme/DESCRIPTION.rst +10 -0
  12. odoo/addons/website_sale_slides_order_line_link/readme/USAGE.rst +4 -0
  13. odoo/addons/website_sale_slides_order_line_link/static/description/icon.png +0 -0
  14. odoo/addons/website_sale_slides_order_line_link/static/description/index.html +446 -0
  15. odoo/addons/website_sale_slides_order_line_link/tests/__init__.py +1 -0
  16. odoo/addons/website_sale_slides_order_line_link/tests/test_website_sale_slides_order_line_link.py +47 -0
  17. odoo_addon_website_sale_slides_order_line_link-15.0.1.0.0.2.dist-info/METADATA +111 -0
  18. odoo_addon_website_sale_slides_order_line_link-15.0.1.0.0.2.dist-info/RECORD +20 -0
  19. odoo_addon_website_sale_slides_order_line_link-15.0.1.0.0.2.dist-info/WHEEL +5 -0
  20. odoo_addon_website_sale_slides_order_line_link-15.0.1.0.0.2.dist-info/top_level.txt +1 -0
@@ -0,0 +1,96 @@
1
+ ===================================
2
+ Website Sale Slides Order Line Link
3
+ ===================================
4
+
5
+ ..
6
+ !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
7
+ !! This file is generated by oca-gen-addon-readme !!
8
+ !! changes will be overwritten. !!
9
+ !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
10
+ !! source digest: sha256:19435eaa737786d8ff0205ea389c434edf20ccbe7d95e8b24f9528e93918d112
11
+ !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
12
+
13
+ .. |badge1| image:: https://img.shields.io/badge/maturity-Beta-yellow.png
14
+ :target: https://odoo-community.org/page/development-status
15
+ :alt: Beta
16
+ .. |badge2| image:: https://img.shields.io/badge/licence-AGPL--3-blue.png
17
+ :target: http://www.gnu.org/licenses/agpl-3.0-standalone.html
18
+ :alt: License: AGPL-3
19
+ .. |badge3| image:: https://img.shields.io/badge/github-OCA%2Fe--learning-lightgray.png?logo=github
20
+ :target: https://github.com/OCA/e-learning/tree/15.0/website_sale_slides_order_line_link
21
+ :alt: OCA/e-learning
22
+ .. |badge4| image:: https://img.shields.io/badge/weblate-Translate%20me-F47D42.png
23
+ :target: https://translation.odoo-community.org/projects/e-learning-15-0/e-learning-15-0-website_sale_slides_order_line_link
24
+ :alt: Translate me on Weblate
25
+ .. |badge5| image:: https://img.shields.io/badge/runboat-Try%20me-875A7B.png
26
+ :target: https://runboat.odoo-community.org/builds?repo=OCA/e-learning&target_branch=15.0
27
+ :alt: Try me on Runboat
28
+
29
+ |badge1| |badge2| |badge3| |badge4| |badge5|
30
+
31
+ This module links sales order lines to `slide.channel.partner` participations when
32
+ selling a course. It does not add new views or user interface elements but ensures
33
+ that when a course is sold through Odoo's eLearning system, the corresponding sales
34
+ order line is associated with the participation record.
35
+
36
+ This functionality is useful for:
37
+
38
+ - Tracking which sale order line is responsible for a given course participation.
39
+ - Ensuring better traceability between sales and enrollments.
40
+ - Serving as a base for other modules that may extend its logic.
41
+
42
+ **Table of contents**
43
+
44
+ .. contents::
45
+ :local:
46
+
47
+ Usage
48
+ =====
49
+
50
+ #. Create a new sales order containing a course (linked to a `slide.channel`).
51
+ #. Confirm the order.
52
+ #. The system will automatically create a participation (`slide.channel.partner`) and
53
+ link it to the corresponding sales order line.
54
+
55
+ Bug Tracker
56
+ ===========
57
+
58
+ Bugs are tracked on `GitHub Issues <https://github.com/OCA/e-learning/issues>`_.
59
+ In case of trouble, please check there if your issue has already been reported.
60
+ If you spotted it first, help us to smash it by providing a detailed and welcomed
61
+ `feedback <https://github.com/OCA/e-learning/issues/new?body=module:%20website_sale_slides_order_line_link%0Aversion:%2015.0%0A%0A**Steps%20to%20reproduce**%0A-%20...%0A%0A**Current%20behavior**%0A%0A**Expected%20behavior**>`_.
62
+
63
+ Do not contact contributors directly about support or help with technical issues.
64
+
65
+ Credits
66
+ =======
67
+
68
+ Authors
69
+ ~~~~~~~
70
+
71
+ * Tecnativa
72
+
73
+ Contributors
74
+ ~~~~~~~~~~~~
75
+
76
+ * `Tecnativa <https://www.tecnativa.com/>`__:
77
+
78
+ * David Vidal
79
+ * Pilar Vargas
80
+
81
+ Maintainers
82
+ ~~~~~~~~~~~
83
+
84
+ This module is maintained by the OCA.
85
+
86
+ .. image:: https://odoo-community.org/logo.png
87
+ :alt: Odoo Community Association
88
+ :target: https://odoo-community.org
89
+
90
+ OCA, or the Odoo Community Association, is a nonprofit organization whose
91
+ mission is to support the collaborative development of Odoo features and
92
+ promote its widespread use.
93
+
94
+ This module is part of the `OCA/e-learning <https://github.com/OCA/e-learning/tree/15.0/website_sale_slides_order_line_link>`_ project on GitHub.
95
+
96
+ You are welcome to contribute. To learn how please visit https://odoo-community.org/page/Contribute.
@@ -0,0 +1 @@
1
+ from . import models
@@ -0,0 +1,13 @@
1
+ # Copyright 2025 Tecnativa - Pilar Vargas
2
+ # License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl).
3
+ {
4
+ "name": "Website Sale Slides Order Line Link",
5
+ "version": "15.0.1.0.0",
6
+ "category": "Website/eLearning",
7
+ "author": "Tecnativa, Odoo Community Association (OCA)",
8
+ "website": "https://github.com/OCA/e-learning",
9
+ "license": "AGPL-3",
10
+ "summary": "Link sales order lines to slide channel participations in sold courses.",
11
+ "depends": ["website_sale_slides"],
12
+ "installable": True,
13
+ }