From d887a4955cba5a4abef87657d7b0c2110142a1a0 Mon Sep 17 00:00:00 2001 From: Sergey Krylov Date: Wed, 19 Feb 2025 14:21:26 +0300 Subject: [PATCH] =?UTF-8?q?=D0=9D=D0=B0=D1=87=D0=B0=D0=BB=D1=8C=D0=BD?= =?UTF-8?q?=D0=BE=D0=B5=20=D0=BD=D0=B0=D0=BF=D0=BE=D0=BB=D0=BD=D0=B5=D0=BD?= =?UTF-8?q?=D0=B8=D0=B5?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- __init__.py | 2 ++ __manifest__.py | 25 +++++++++++++++++++++++ i18n/ru.po | 23 +++++++++++++++++++++ i18n/website_sale_comparison_wishlist.pot | 21 +++++++++++++++++++ static/src/js/wishlist.js | 23 +++++++++++++++++++++ views/templates.xml | 16 +++++++++++++++ 6 files changed, 110 insertions(+) create mode 100644 __init__.py create mode 100644 __manifest__.py create mode 100644 i18n/ru.po create mode 100644 i18n/website_sale_comparison_wishlist.pot create mode 100644 static/src/js/wishlist.js create mode 100644 views/templates.xml diff --git a/__init__.py b/__init__.py new file mode 100644 index 0000000..67dee8c --- /dev/null +++ b/__init__.py @@ -0,0 +1,2 @@ +# -*- coding: utf-8 -*- +# Part of Odoo. See LICENSE file for full copyright and licensing details. diff --git a/__manifest__.py b/__manifest__.py new file mode 100644 index 0000000..911ee0c --- /dev/null +++ b/__manifest__.py @@ -0,0 +1,25 @@ +# -*- coding: utf-8 -*- +# Part of Odoo. See LICENSE file for full copyright and licensing details. + +{ + 'name': 'Product Availability Notifications', + 'category': 'Website/Website', + 'summary': 'Bridge module for Website sale comparison and wishlist', + 'description': """ +It allows for comparing products from the wishlist + """, + 'depends': [ + 'website_sale_comparison', + 'website_sale_wishlist', + ], + 'data': [ + 'views/templates.xml', + ], + 'assets': { + 'web.assets_frontend': [ + 'website_sale_comparison_wishlist/static/src/**/*', + ], + }, + 'auto_install': True, + 'license': 'LGPL-3', +} diff --git a/i18n/ru.po b/i18n/ru.po new file mode 100644 index 0000000..df0dfd9 --- /dev/null +++ b/i18n/ru.po @@ -0,0 +1,23 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * website_sale_comparison_wishlist +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 17.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2023-10-26 21:56+0000\n" +"PO-Revision-Date: 2024-01-30 15:14+0400\n" +"Last-Translator: \n" +"Language-Team: Russian (https://app.transifex.com/odoo/teams/41243/ru/)\n" +"Language: ru\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Plural-Forms: nplurals=4; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<12 || n%100>14) ? 1 : n%10==0 || (n%10>=5 && n%10<=9) || (n%100>=11 && n%100<=14)? 2 : 3);\n" + +#. module: website_sale_comparison_wishlist +#: model_terms:ir.ui.view,arch_db:website_sale_comparison_wishlist.product_wishlist +msgid "Add to compare" +msgstr "Добавить к сравнению" diff --git a/i18n/website_sale_comparison_wishlist.pot b/i18n/website_sale_comparison_wishlist.pot new file mode 100644 index 0000000..246f741 --- /dev/null +++ b/i18n/website_sale_comparison_wishlist.pot @@ -0,0 +1,21 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * website_sale_comparison_wishlist +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 17.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2023-10-26 21:56+0000\n" +"PO-Revision-Date: 2023-10-26 21:56+0000\n" +"Last-Translator: \n" +"Language-Team: \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Plural-Forms: \n" + +#. module: website_sale_comparison_wishlist +#: model_terms:ir.ui.view,arch_db:website_sale_comparison_wishlist.product_wishlist +msgid "Add to compare" +msgstr "" diff --git a/static/src/js/wishlist.js b/static/src/js/wishlist.js new file mode 100644 index 0000000..a198e4b --- /dev/null +++ b/static/src/js/wishlist.js @@ -0,0 +1,23 @@ +/** @odoo-module **/ + +import publicWidget from '@web/legacy/js/public/public_widget'; +import '@website_sale_comparison/js/website_sale_comparison'; + +publicWidget.registry.ProductComparison.include({ + events: Object.assign({}, publicWidget.registry.ProductComparison.prototype.events, { + 'click .wishlist-section .o_add_to_compare': '_onClickCompare', + }), + + //-------------------------------------------------------------------------- + // Private + //-------------------------------------------------------------------------- + + /** + * @private + * @param {Event} ev + */ + _onClickCompare: function (ev) { + const productID = parseInt(ev.currentTarget.dataset.productId, 10); + this.productComparison._addNewProducts(productID); + }, +}); diff --git a/views/templates.xml b/views/templates.xml new file mode 100644 index 0000000..607eb05 --- /dev/null +++ b/views/templates.xml @@ -0,0 +1,16 @@ + + + +