Skip to content

Commit 93d86af

Browse files
committed
working in 18.0
1 parent 87e851e commit 93d86af

39 files changed

+4768
-0
lines changed
Lines changed: 81 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,81 @@
1+
============================
2+
Website Product Configurator
3+
============================
4+
5+
..
6+
!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
7+
!! This file is generated by oca-gen-addon-readme !!
8+
!! changes will be overwritten. !!
9+
!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
10+
!! source digest: sha256:02f18d21bd714389fb293b72f32def1d95243164054339d052eec6a36781e527
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%2Fproduct--configurator-lightgray.png?logo=github
20+
:target: https://github.com/OCA/product-configurator/tree/17.0/website_product_configurator
21+
:alt: OCA/product-configurator
22+
.. |badge4| image:: https://img.shields.io/badge/weblate-Translate%20me-F47D42.png
23+
:target: https://translation.odoo-community.org/projects/product-configurator-17-0/product-configurator-17-0-website_product_configurator
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/product-configurator&target_branch=17.0
27+
:alt: Try me on Runboat
28+
29+
|badge1| |badge2| |badge3| |badge4| |badge5|
30+
31+
#Odoo Product Configurator
32+
33+
This module facilitates to configure product on website.
34+
35+
**Table of contents**
36+
37+
.. contents::
38+
:local:
39+
40+
Bug Tracker
41+
===========
42+
43+
Bugs are tracked on `GitHub Issues <https://github.com/OCA/product-configurator/issues>`_.
44+
In case of trouble, please check there if your issue has already been reported.
45+
If you spotted it first, help us to smash it by providing a detailed and welcomed
46+
`feedback <https://github.com/OCA/product-configurator/issues/new?body=module:%20website_product_configurator%0Aversion:%2017.0%0A%0A**Steps%20to%20reproduce**%0A-%20...%0A%0A**Current%20behavior**%0A%0A**Expected%20behavior**>`_.
47+
48+
Do not contact contributors directly about support or help with technical issues.
49+
50+
Credits
51+
=======
52+
53+
Authors
54+
-------
55+
56+
* Pledra
57+
58+
Maintainers
59+
-----------
60+
61+
This module is maintained by the OCA.
62+
63+
.. image:: https://odoo-community.org/logo.png
64+
:alt: Odoo Community Association
65+
:target: https://odoo-community.org
66+
67+
OCA, or the Odoo Community Association, is a nonprofit organization whose
68+
mission is to support the collaborative development of Odoo features and
69+
promote its widespread use.
70+
71+
.. |maintainer-PCatinean| image:: https://github.com/PCatinean.png?size=40px
72+
:target: https://github.com/PCatinean
73+
:alt: PCatinean
74+
75+
Current `maintainer <https://odoo-community.org/page/maintainer-role>`__:
76+
77+
|maintainer-PCatinean|
78+
79+
This module is part of the `OCA/product-configurator <https://github.com/OCA/product-configurator/tree/17.0/website_product_configurator>`_ project on GitHub.
80+
81+
You are welcome to contribute. To learn how please visit https://odoo-community.org/page/Contribute.
Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
from . import models
2+
from . import controllers
Lines changed: 40 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,40 @@
1+
{
2+
"name": "Website Product Configurator",
3+
"version": "18.0",
4+
"summary": """Configure products in e-shop""",
5+
"author": "Pledra, Odoo Community Association (OCA)",
6+
"license": "AGPL-3",
7+
"website": "https://github.com/OCA/product-configurator",
8+
"category": "website",
9+
"depends": [
10+
"website_sale",
11+
"product_configurator",
12+
"product_configurator_sale",
13+
],
14+
"data": [
15+
"security/configurator_security.xml",
16+
"data/config_form_templates.xml",
17+
"data/ir_config_parameter_data.xml",
18+
"data/cron.xml",
19+
"views/product_view.xml",
20+
"views/templates.xml",
21+
"views/res_config_settings_view.xml",
22+
],
23+
"assets": {
24+
"web.assets_frontend": [
25+
"website_product_configurator/static/src/js/config_form.esm.js",
26+
"website_product_configurator/static/src/js/website_sale.esm.js",
27+
"website_product_configurator/static/src/scss/config_form.scss",
28+
"website_product_configurator/static/src/scss/tooltip.scss",
29+
],
30+
"web.assets_tests": [
31+
"website_product_configurator/static/tests/tours/website_config_tour.esm.js",
32+
],
33+
},
34+
"demo": ["demo/product_template_demo.xml"],
35+
"images": ["static/description/cover.png"],
36+
"application": True,
37+
"installable": True,
38+
"development_status": "Beta",
39+
"maintainers": ["PCatinean"],
40+
}
Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
from . import main

0 commit comments

Comments
 (0)