Browse Source

Nov 3 : [FIX] Bug Fixed 'website_hide_variants'

pull/295/head
AjmalCybro 2 years ago
parent
commit
0dba3f86fc
  1. 0
      website_hide_variants/README.rst
  2. 1
      website_hide_variants/__init__.py
  3. 2
      website_hide_variants/__manifest__.py
  4. 1
      website_hide_variants/controllers/__init__.py
  5. 11
      website_hide_variants/controllers/hide_variants.py
  6. 0
      website_hide_variants/doc/RELEASE_NOTES.md
  7. 0
      website_hide_variants/models/__init__.py
  8. 6
      website_hide_variants/models/product.py
  9. 0
      website_hide_variants/static/description/assets/icons/check.png
  10. 0
      website_hide_variants/static/description/assets/icons/chevron.png
  11. 0
      website_hide_variants/static/description/assets/icons/cogs.png
  12. 0
      website_hide_variants/static/description/assets/icons/consultation.png
  13. 0
      website_hide_variants/static/description/assets/icons/ecom-black.png
  14. 0
      website_hide_variants/static/description/assets/icons/education-black.png
  15. 0
      website_hide_variants/static/description/assets/icons/hotel-black.png
  16. 0
      website_hide_variants/static/description/assets/icons/license.png
  17. 0
      website_hide_variants/static/description/assets/icons/lifebuoy.png
  18. 0
      website_hide_variants/static/description/assets/icons/manufacturing-black.png
  19. 0
      website_hide_variants/static/description/assets/icons/pos-black.png
  20. 0
      website_hide_variants/static/description/assets/icons/puzzle.png
  21. 0
      website_hide_variants/static/description/assets/icons/restaurant-black.png
  22. 0
      website_hide_variants/static/description/assets/icons/service-black.png
  23. 0
      website_hide_variants/static/description/assets/icons/trading-black.png
  24. 0
      website_hide_variants/static/description/assets/icons/training.png
  25. 0
      website_hide_variants/static/description/assets/icons/update.png
  26. 0
      website_hide_variants/static/description/assets/icons/user.png
  27. 0
      website_hide_variants/static/description/assets/icons/wrench.png
  28. 0
      website_hide_variants/static/description/assets/misc/categories.png
  29. 0
      website_hide_variants/static/description/assets/misc/check-box.png
  30. 0
      website_hide_variants/static/description/assets/misc/compass.png
  31. 0
      website_hide_variants/static/description/assets/misc/corporate.png
  32. 0
      website_hide_variants/static/description/assets/misc/customer-support.png
  33. 0
      website_hide_variants/static/description/assets/misc/cybrosys-logo.png
  34. 0
      website_hide_variants/static/description/assets/misc/features.png
  35. 0
      website_hide_variants/static/description/assets/misc/logo.png
  36. 0
      website_hide_variants/static/description/assets/misc/pictures.png
  37. 0
      website_hide_variants/static/description/assets/misc/pie-chart.png
  38. 0
      website_hide_variants/static/description/assets/misc/right-arrow.png
  39. 0
      website_hide_variants/static/description/assets/misc/star.png
  40. 0
      website_hide_variants/static/description/assets/misc/support.png
  41. 0
      website_hide_variants/static/description/assets/misc/whatsapp.png
  42. 0
      website_hide_variants/static/description/assets/modules/1.png
  43. 0
      website_hide_variants/static/description/assets/modules/2.png
  44. 0
      website_hide_variants/static/description/assets/modules/3.png
  45. 0
      website_hide_variants/static/description/assets/modules/4.png
  46. 0
      website_hide_variants/static/description/assets/modules/5.gif
  47. 0
      website_hide_variants/static/description/assets/modules/6.png
  48. 0
      website_hide_variants/static/description/assets/screenshots/1.png
  49. 0
      website_hide_variants/static/description/assets/screenshots/2.png
  50. 0
      website_hide_variants/static/description/assets/screenshots/3.png
  51. 0
      website_hide_variants/static/description/assets/screenshots/hero.gif
  52. 0
      website_hide_variants/static/description/banner.png
  53. 0
      website_hide_variants/static/description/icon.png
  54. 0
      website_hide_variants/static/description/index.html
  55. 16
      website_hide_variants/static/src/js/variants.js
  56. 0
      website_hide_variants/views/product_views.xml

0
website_hide_variants/README.rst

1
website_hide_variants/__init__.py

@ -20,3 +20,4 @@
#
#############################################################################
from . import models
from . import controllers

2
website_hide_variants/__manifest__.py

@ -21,7 +21,7 @@
#############################################################################
{
'name': "Disable Variants in Website",
'version': '16.0.1.0.0',
'version': '16.0.2.0.0',
'description': "The module helps to disable products amd product variants from website",
'summary': "Hide Variants",
'author': "Cybrosys Techno Solutions",

1
website_hide_variants/controllers/__init__.py

@ -0,0 +1 @@
from . import hide_variants

11
website_hide_variants/controllers/hide_variants.py

@ -0,0 +1,11 @@
from odoo import http
from odoo.http import request
class HideVariants(http.Controller):
"""Controller for setting routes.Pass all categories and
category wise products as array to a template"""
@http.route('/variants/<int:tmpl_id>', type='json', auth='public',website=True, csrf=False)
def fetch_product_website_hide_variants(self, tmpl_id):
return request.env['product.product'].sudo().browse(tmpl_id).website_hide_variants

0
website_hide_variants/doc/RELEASE_NOTES.md

0
website_hide_variants/models/__init__.py

6
website_hide_variants/models/product.py

@ -30,9 +30,3 @@ class ProductProduct(models.Model):
help="Check right if you want to "
"hide the variant in your "
"website")
def product_read(self, data):
if data.get('id', False):
prod_id = int(data.get('id'))
product = self.sudo().browse(prod_id).read(["website_hide_variants"])
return product

0
website_hide_variants/static/description/assets/icons/check.png

Before

Width:  |  Height:  |  Size: 3.6 KiB

After

Width:  |  Height:  |  Size: 3.6 KiB

0
website_hide_variants/static/description/assets/icons/chevron.png

Before

Width:  |  Height:  |  Size: 310 B

After

Width:  |  Height:  |  Size: 310 B

0
website_hide_variants/static/description/assets/icons/cogs.png

Before

Width:  |  Height:  |  Size: 1.3 KiB

After

Width:  |  Height:  |  Size: 1.3 KiB

0
website_hide_variants/static/description/assets/icons/consultation.png

Before

Width:  |  Height:  |  Size: 1.4 KiB

After

Width:  |  Height:  |  Size: 1.4 KiB

0
website_hide_variants/static/description/assets/icons/ecom-black.png

Before

Width:  |  Height:  |  Size: 576 B

After

Width:  |  Height:  |  Size: 576 B

0
website_hide_variants/static/description/assets/icons/education-black.png

Before

Width:  |  Height:  |  Size: 733 B

After

Width:  |  Height:  |  Size: 733 B

0
website_hide_variants/static/description/assets/icons/hotel-black.png

Before

Width:  |  Height:  |  Size: 911 B

After

Width:  |  Height:  |  Size: 911 B

0
website_hide_variants/static/description/assets/icons/license.png

Before

Width:  |  Height:  |  Size: 1.1 KiB

After

Width:  |  Height:  |  Size: 1.1 KiB

0
website_hide_variants/static/description/assets/icons/lifebuoy.png

Before

Width:  |  Height:  |  Size: 1.2 KiB

After

Width:  |  Height:  |  Size: 1.2 KiB

0
website_hide_variants/static/description/assets/icons/manufacturing-black.png

Before

Width:  |  Height:  |  Size: 673 B

After

Width:  |  Height:  |  Size: 673 B

0
website_hide_variants/static/description/assets/icons/pos-black.png

Before

Width:  |  Height:  |  Size: 878 B

After

Width:  |  Height:  |  Size: 878 B

0
website_hide_variants/static/description/assets/icons/puzzle.png

Before

Width:  |  Height:  |  Size: 653 B

After

Width:  |  Height:  |  Size: 653 B

0
website_hide_variants/static/description/assets/icons/restaurant-black.png

Before

Width:  |  Height:  |  Size: 905 B

After

Width:  |  Height:  |  Size: 905 B

0
website_hide_variants/static/description/assets/icons/service-black.png

Before

Width:  |  Height:  |  Size: 839 B

After

Width:  |  Height:  |  Size: 839 B

0
website_hide_variants/static/description/assets/icons/trading-black.png

Before

Width:  |  Height:  |  Size: 427 B

After

Width:  |  Height:  |  Size: 427 B

0
website_hide_variants/static/description/assets/icons/training.png

Before

Width:  |  Height:  |  Size: 627 B

After

Width:  |  Height:  |  Size: 627 B

0
website_hide_variants/static/description/assets/icons/update.png

Before

Width:  |  Height:  |  Size: 1.2 KiB

After

Width:  |  Height:  |  Size: 1.2 KiB

0
website_hide_variants/static/description/assets/icons/user.png

Before

Width:  |  Height:  |  Size: 988 B

After

Width:  |  Height:  |  Size: 988 B

0
website_hide_variants/static/description/assets/icons/wrench.png

Before

Width:  |  Height:  |  Size: 1.2 KiB

After

Width:  |  Height:  |  Size: 1.2 KiB

0
website_hide_variants/static/description/assets/misc/categories.png

Before

Width:  |  Height:  |  Size: 1.5 KiB

After

Width:  |  Height:  |  Size: 1.5 KiB

0
website_hide_variants/static/description/assets/misc/check-box.png

Before

Width:  |  Height:  |  Size: 1.1 KiB

After

Width:  |  Height:  |  Size: 1.1 KiB

0
website_hide_variants/static/description/assets/misc/compass.png

Before

Width:  |  Height:  |  Size: 1.9 KiB

After

Width:  |  Height:  |  Size: 1.9 KiB

0
website_hide_variants/static/description/assets/misc/corporate.png

Before

Width:  |  Height:  |  Size: 1.1 KiB

After

Width:  |  Height:  |  Size: 1.1 KiB

0
website_hide_variants/static/description/assets/misc/customer-support.png

Before

Width:  |  Height:  |  Size: 2.1 KiB

After

Width:  |  Height:  |  Size: 2.1 KiB

0
website_hide_variants/static/description/assets/misc/cybrosys-logo.png

Before

Width:  |  Height:  |  Size: 4.4 KiB

After

Width:  |  Height:  |  Size: 4.4 KiB

0
website_hide_variants/static/description/assets/misc/features.png

Before

Width:  |  Height:  |  Size: 589 B

After

Width:  |  Height:  |  Size: 589 B

0
website_hide_variants/static/description/assets/misc/logo.png

Before

Width:  |  Height:  |  Size: 3.4 KiB

After

Width:  |  Height:  |  Size: 3.4 KiB

0
website_hide_variants/static/description/assets/misc/pictures.png

Before

Width:  |  Height:  |  Size: 1.7 KiB

After

Width:  |  Height:  |  Size: 1.7 KiB

0
website_hide_variants/static/description/assets/misc/pie-chart.png

Before

Width:  |  Height:  |  Size: 2.3 KiB

After

Width:  |  Height:  |  Size: 2.3 KiB

0
website_hide_variants/static/description/assets/misc/right-arrow.png

Before

Width:  |  Height:  |  Size: 967 B

After

Width:  |  Height:  |  Size: 967 B

0
website_hide_variants/static/description/assets/misc/star.png

Before

Width:  |  Height:  |  Size: 1.6 KiB

After

Width:  |  Height:  |  Size: 1.6 KiB

0
website_hide_variants/static/description/assets/misc/support.png

Before

Width:  |  Height:  |  Size: 3.8 KiB

After

Width:  |  Height:  |  Size: 3.8 KiB

0
website_hide_variants/static/description/assets/misc/whatsapp.png

Before

Width:  |  Height:  |  Size: 5.0 KiB

After

Width:  |  Height:  |  Size: 5.0 KiB

0
website_hide_variants/static/description/assets/modules/1.png

Before

Width:  |  Height:  |  Size: 60 KiB

After

Width:  |  Height:  |  Size: 60 KiB

0
website_hide_variants/static/description/assets/modules/2.png

Before

Width:  |  Height:  |  Size: 56 KiB

After

Width:  |  Height:  |  Size: 56 KiB

0
website_hide_variants/static/description/assets/modules/3.png

Before

Width:  |  Height:  |  Size: 56 KiB

After

Width:  |  Height:  |  Size: 56 KiB

0
website_hide_variants/static/description/assets/modules/4.png

Before

Width:  |  Height:  |  Size: 59 KiB

After

Width:  |  Height:  |  Size: 59 KiB

0
website_hide_variants/static/description/assets/modules/5.gif

Before

Width:  |  Height:  |  Size: 1.8 MiB

After

Width:  |  Height:  |  Size: 1.8 MiB

0
website_hide_variants/static/description/assets/modules/6.png

Before

Width:  |  Height:  |  Size: 57 KiB

After

Width:  |  Height:  |  Size: 57 KiB

0
website_hide_variants/static/description/assets/screenshots/1.png

Before

Width:  |  Height:  |  Size: 144 KiB

After

Width:  |  Height:  |  Size: 144 KiB

0
website_hide_variants/static/description/assets/screenshots/2.png

Before

Width:  |  Height:  |  Size: 176 KiB

After

Width:  |  Height:  |  Size: 176 KiB

0
website_hide_variants/static/description/assets/screenshots/3.png

Before

Width:  |  Height:  |  Size: 138 KiB

After

Width:  |  Height:  |  Size: 138 KiB

0
website_hide_variants/static/description/assets/screenshots/hero.gif

Before

Width:  |  Height:  |  Size: 172 KiB

After

Width:  |  Height:  |  Size: 172 KiB

0
website_hide_variants/static/description/banner.png

Before

Width:  |  Height:  |  Size: 75 KiB

After

Width:  |  Height:  |  Size: 75 KiB

0
website_hide_variants/static/description/icon.png

Before

Width:  |  Height:  |  Size: 28 KiB

After

Width:  |  Height:  |  Size: 28 KiB

0
website_hide_variants/static/description/index.html

16
website_hide_variants/static/src/js/variants.js

@ -23,18 +23,10 @@ odoo.define('website_hide_variants.VariantMixin', function(require) {
// Check if the selected combination has a valid product ID
var product = combination.product_id
if (combination.product_id) {
var data = {
'id': combination.product_id
}
await rpc.query({
model: 'product.product',
method: 'product_read',
args: [
[], data
],
}).then(function(res) {
// Check if the product is marked as "website_hide_variants"
if (res[0].website_hide_variants) {
await ajax.jsonRpc('/variants/'+combination.product_id, 'call', {
}).then(function(res) {
// // Check if the product is marked as "website_hide_variants"
if (res) {
// Disable the combination and display an appropriate message to the user
combination.is_combination_possible = false
count = true

0
website_hide_variants/views/product_views.xml

Loading…
Cancel
Save