Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ Available addons
addon | version | maintainers | summary
--- | --- | --- | ---
[website_sale_b2x_alt_price](website_sale_b2x_alt_price/) | 17.0.1.0.0 | <a href='https://github.com/Yajo'><img src='https://github.com/Yajo.png' width='32' height='32' style='border-radius:50%;' alt='Yajo'/></a> | Display prices with(out) taxes in eCommerce, complementing normal mode
[website_sale_cart_add_product_xlsx_csv](website_sale_cart_add_product_xlsx_csv/) | 17.0.1.0.0 | | Adds button to import xlsx or csv in website cart
[website_sale_cart_add_product_xlsx_csv](website_sale_cart_add_product_xlsx_csv/) | 17.0.1.0.1 | | Adds button to import xlsx or csv in website cart
[website_sale_checkout_skip_payment](website_sale_checkout_skip_payment/) | 17.0.1.0.1 | | Skip payment for logged users in checkout process
[website_sale_empty_cart](website_sale_empty_cart/) | 17.0.1.0.0 | | Adds a button in the website cart to empty all
[website_sale_hide_empty_category](website_sale_hide_empty_category/) | 17.0.1.0.0 | | Hide any Product Categories that are empty
Expand Down
2 changes: 1 addition & 1 deletion website_sale_cart_add_product_xlsx_csv/README.rst
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ Website Sale Cart Add Product Xlsx Csv
!! This file is generated by oca-gen-addon-readme !!
!! changes will be overwritten. !!
!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
!! source digest: sha256:79fce4d16c2c43bfb7623e87685ea7b9d1385305f4a70f4cf365bc2ccea0ebb8
!! source digest: sha256:36208caec3bb4b74ba2914e5b56a0895685449ae2ac78b5fc3ea8bd65c9129c4
!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!

.. |badge1| image:: https://img.shields.io/badge/maturity-Beta-yellow.png
Expand Down
2 changes: 1 addition & 1 deletion website_sale_cart_add_product_xlsx_csv/__manifest__.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
{
"name": "Website Sale Cart Add Product Xlsx Csv",
"summary": "Adds button to import xlsx or csv in website cart",
"version": "17.0.1.0.0",
"version": "17.0.1.0.1",
"website": "https://github.com/OCA/e-commerce",
"author": "Sygel, Odoo Community Association (OCA)",
"license": "AGPL-3",
Expand Down
2 changes: 1 addition & 1 deletion website_sale_cart_add_product_xlsx_csv/models/website.py
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ class Website(models.Model):
_sql_constraints = [
(
"cart_import_button_file_limit_min",
"CHECK (vat_prorate > 0)",
"CHECK (cart_import_button_file_limit > 0)",
"The file size limit must be positive",
),
]
Original file line number Diff line number Diff line change
Expand Up @@ -372,7 +372,7 @@ <h1>Website Sale Cart Add Product Xlsx Csv</h1>
!! This file is generated by oca-gen-addon-readme !!
!! changes will be overwritten. !!
!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
!! source digest: sha256:79fce4d16c2c43bfb7623e87685ea7b9d1385305f4a70f4cf365bc2ccea0ebb8
!! source digest: sha256:36208caec3bb4b74ba2914e5b56a0895685449ae2ac78b5fc3ea8bd65c9129c4
!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! -->
<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/e-commerce/tree/17.0/website_sale_cart_add_product_xlsx_csv"><img alt="OCA/e-commerce" src="https://img.shields.io/badge/github-OCA%2Fe--commerce-lightgray.png?logo=github" /></a> <a class="reference external image-reference" href="https://translation.odoo-community.org/projects/e-commerce-17-0/e-commerce-17-0-website_sale_cart_add_product_xlsx_csv"><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/e-commerce&amp;target_branch=17.0"><img alt="Try me on Runboat" src="https://img.shields.io/badge/runboat-Try%20me-875A7B.png" /></a></p>
<p>This module adds a button in the website cart that let users import a
Expand Down
Loading