diff --git a/pos_order_backend_receipt/models/pos_order.py b/pos_order_backend_receipt/models/pos_order.py index 95bafda..04b4a52 100644 --- a/pos_order_backend_receipt/models/pos_order.py +++ b/pos_order_backend_receipt/models/pos_order.py @@ -13,7 +13,7 @@ class PosOrder(models.Model): if self.state not in ("paid", "done", "invoiced"): raise UserError( _( - "You can only print the receipt when the order is paid, closed, or invoiced." + "Solo se puede imprimir el ticket cuando el pedido está pagado o cerrado." ) ) return self.env.ref( diff --git a/website_sale_cart_line_subtotal/README.md b/website_sale_cart_line_subtotal/README.md deleted file mode 100644 index f9753af..0000000 --- a/website_sale_cart_line_subtotal/README.md +++ /dev/null @@ -1,50 +0,0 @@ -# Website Sale Cart Line Subtotal - -## Description - -This module adds a "Subtotal" column to the shopping cart lines that displays the total amount for each line (quantity × unit price). - -### Problem - -By default, the Odoo website shopping cart shows: -- Product quantity -- Unit price - -But it doesn't show the line total (quantity × price), which can be confusing for customers when they want to quickly see how much each line is costing them. - -### Solution - -This module adds a new "Subtotal" column that shows: -- `price_subtotal` (without taxes) for users with tax-excluded view -- `price_total` (with taxes) for users with tax-included view - -The subtotal column is inserted between the "Price" and action columns in the cart. - -## Installation - -1. Install the module from the Apps menu -2. No additional configuration is required - -## Usage - -After installation: -1. Add products to your cart -2. Go to the shopping cart page -3. You will see a new "Subtotal" column showing the line total for each product - -The subtotal respects your tax display configuration (with or without taxes). - -## Credits - -### Contributors - -* Criptomart - -### Maintainers - -This module is maintained by the OCA. - -## Compatibility - -- Odoo 16.0 -- website_sale diff --git a/website_sale_cart_line_subtotal/__init__.py b/website_sale_cart_line_subtotal/__init__.py deleted file mode 100644 index d9d1f13..0000000 --- a/website_sale_cart_line_subtotal/__init__.py +++ /dev/null @@ -1 +0,0 @@ -# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl). diff --git a/website_sale_cart_line_subtotal/__manifest__.py b/website_sale_cart_line_subtotal/__manifest__.py deleted file mode 100644 index 08fc79e..0000000 --- a/website_sale_cart_line_subtotal/__manifest__.py +++ /dev/null @@ -1,13 +0,0 @@ -# Copyright 2025 Criptomart -# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl). -{ - "name": "Website Sale Cart Line Subtotal", - "version": "16.0.1.0.0", - "summary": "Show line subtotal (quantity × price) in shopping cart", - "license": "AGPL-3", - "author": "Criptomart, Odoo Community Association (OCA)", - "website": "https://github.com/OCA/e-commerce", - "depends": ["website_sale"], - "data": ["views/website_sale_cart_templates.xml"], - "installable": True, -} diff --git a/website_sale_cart_line_subtotal/views/website_sale_cart_templates.xml b/website_sale_cart_line_subtotal/views/website_sale_cart_templates.xml deleted file mode 100644 index f776f85..0000000 --- a/website_sale_cart_line_subtotal/views/website_sale_cart_templates.xml +++ /dev/null @@ -1,32 +0,0 @@ - - - - - - -