mirror of
https://github.com/bringout/oca-ocb-sale.git
synced 2026-04-27 00:32:05 +02:00
19.0 vanilla
This commit is contained in:
parent
79f83631d5
commit
73afc09215
6267 changed files with 1534193 additions and 1130106 deletions
|
|
@ -1,53 +1,56 @@
|
|||
# Part of Odoo. See LICENSE file for full copyright and licensing details.
|
||||
|
||||
import base64
|
||||
|
||||
from odoo.addons.base.tests.common import HttpCaseWithUserDemo, HttpCaseWithUserPortal
|
||||
from odoo.modules.module import get_module_resource
|
||||
from odoo.fields import Command
|
||||
from odoo.tests import tagged
|
||||
|
||||
from odoo.addons.base.tests.common import HttpCaseWithUserDemo, HttpCaseWithUserPortal
|
||||
from odoo.addons.sale.tests.product_configurator_common import TestProductConfiguratorCommon
|
||||
from odoo.addons.website.tests.common import HttpCaseWithWebsiteUser
|
||||
|
||||
|
||||
@tagged('post_install', '-at_install')
|
||||
class TestUi(HttpCaseWithUserDemo, HttpCaseWithUserPortal):
|
||||
class TestCustomize(HttpCaseWithUserDemo, HttpCaseWithUserPortal, TestProductConfiguratorCommon, HttpCaseWithWebsiteUser):
|
||||
|
||||
def setUp(self):
|
||||
super().setUp()
|
||||
self.env.company.country_id = self.env.ref('base.us')
|
||||
# create a template
|
||||
product_template = self.env['product.template'].create({
|
||||
'name': 'Test Product',
|
||||
'is_published': True,
|
||||
'list_price': 750,
|
||||
})
|
||||
@classmethod
|
||||
def setUpClass(cls):
|
||||
super().setUpClass()
|
||||
cls.env.company.country_id = cls.env.ref('base.us')
|
||||
|
||||
tax = self.env['account.tax'].create({'name': "Test tax", 'amount': 10})
|
||||
product_template.taxes_id = tax
|
||||
|
||||
product_attribute = self.env['product.attribute'].create({
|
||||
product_attribute = cls.env['product.attribute'].create({
|
||||
'name': 'Legs',
|
||||
'visibility': 'visible',
|
||||
'sequence': 10,
|
||||
'value_ids': [
|
||||
Command.create({
|
||||
'name': 'Steel - Test',
|
||||
'sequence': 1,
|
||||
}),
|
||||
Command.create({
|
||||
'name': 'Aluminium',
|
||||
'sequence': 2,
|
||||
}),
|
||||
]
|
||||
})
|
||||
product_attribute_value_1 = self.env['product.attribute.value'].create({
|
||||
'name': 'Steel - Test',
|
||||
'attribute_id': product_attribute.id,
|
||||
'sequence': 1,
|
||||
})
|
||||
product_attribute_value_2 = self.env['product.attribute.value'].create({
|
||||
'name': 'Aluminium',
|
||||
'attribute_id': product_attribute.id,
|
||||
'sequence': 2,
|
||||
# create a template
|
||||
product_template = cls.env['product.template'].create({
|
||||
'name': 'Test Product',
|
||||
'is_published': True,
|
||||
'list_price': 750,
|
||||
'attribute_line_ids': [
|
||||
Command.create({
|
||||
'attribute_id': product_attribute.id,
|
||||
'value_ids': [Command.set(product_attribute.value_ids.ids)]
|
||||
})
|
||||
],
|
||||
})
|
||||
|
||||
# set attribute and attribute values on the template
|
||||
self.env['product.template.attribute.line'].create([{
|
||||
'attribute_id': product_attribute.id,
|
||||
'product_tmpl_id': product_template.id,
|
||||
'value_ids': [(6, 0, [product_attribute_value_1.id, product_attribute_value_2.id])]
|
||||
}])
|
||||
tax = cls.env['account.tax'].create({'name': "Test tax", 'amount': 10})
|
||||
product_template.taxes_id = tax
|
||||
|
||||
# set a different price on the variants to differentiate them
|
||||
product_template_attribute_values = self.env['product.template.attribute.value'] \
|
||||
.search([('product_tmpl_id', '=', product_template.id)])
|
||||
product_template_attribute_values = cls.env['product.template.attribute.value'].search([
|
||||
('product_tmpl_id', '=', product_template.id),
|
||||
])
|
||||
|
||||
for ptav in product_template_attribute_values:
|
||||
if ptav.name == "Steel - Test":
|
||||
|
|
@ -55,114 +58,42 @@ class TestUi(HttpCaseWithUserDemo, HttpCaseWithUserPortal):
|
|||
else:
|
||||
ptav.price_extra = 50.4
|
||||
|
||||
# Update the pricelist currency regarding env.company_id currency_id in case company has changed currency with COA installation.
|
||||
website = self.env['website'].get_current_website()
|
||||
pricelist = website.get_current_pricelist()
|
||||
pricelist.write({'currency_id': self.env.company.currency_id.id})
|
||||
# Ensure that no pricelist is available during the test.
|
||||
# This ensures that tours which triggers on the amounts will run properly, and that the
|
||||
# currency will be the company currency.
|
||||
cls.env['product.pricelist'].action_archive()
|
||||
|
||||
def test_01_admin_shop_customize_tour(self):
|
||||
# Enable Variant Group
|
||||
self.env.ref('product.group_product_variant').write({'users': [(4, self.env.ref('base.user_admin').id)]})
|
||||
self.start_tour(self.env['website'].get_client_action_url('/shop?search=Test Product'), 'shop_customize', login="admin", timeout=120)
|
||||
def test_01_admin_shop_custom_attribute_value_tour(self):
|
||||
self.env.user.write(
|
||||
{'group_ids': [Command.link(self.env.ref('product.group_product_pricelist').id)]}
|
||||
)
|
||||
self.env['product.pricelist'].create({
|
||||
'name': 'Custom pricelist (TEST)',
|
||||
'sequence': 4,
|
||||
'item_ids': [(0, 0, {
|
||||
'base': 'list_price',
|
||||
'applied_on': '1_product',
|
||||
'product_tmpl_id': self.product_product_custo_desk.id,
|
||||
'price_discount': 20,
|
||||
'min_quantity': 2,
|
||||
'compute_price': 'formula'
|
||||
})]
|
||||
})
|
||||
self.start_tour("/", 'a_shop_custom_attribute_value', login="admin")
|
||||
|
||||
def test_02_admin_shop_custom_attribute_value_tour(self):
|
||||
# Make sure pricelist rule exist
|
||||
self.product_attribute_1 = self.env['product.attribute'].create({
|
||||
'name': 'Legs',
|
||||
'sequence': 10,
|
||||
self.env['product.pricelist'].create({
|
||||
'name': 'Base Pricelist',
|
||||
'item_ids': [Command.create({
|
||||
'base': 'list_price',
|
||||
'applied_on': '1_product',
|
||||
'product_tmpl_id': self.product_product_custo_desk.id,
|
||||
'price_discount': 20,
|
||||
'min_quantity': 2,
|
||||
'compute_price': 'formula',
|
||||
})],
|
||||
})
|
||||
product_attribute_value_1 = self.env['product.attribute.value'].create({
|
||||
'name': 'Steel',
|
||||
'attribute_id': self.product_attribute_1.id,
|
||||
'sequence': 1,
|
||||
})
|
||||
product_attribute_value_2 = self.env['product.attribute.value'].create({
|
||||
'name': 'Aluminium',
|
||||
'attribute_id': self.product_attribute_1.id,
|
||||
'sequence': 2,
|
||||
})
|
||||
product_attribute_2 = self.env['product.attribute'].create({
|
||||
'name': 'Color',
|
||||
'sequence': 20,
|
||||
})
|
||||
product_attribute_value_3 = self.env['product.attribute.value'].create({
|
||||
'name': 'White',
|
||||
'attribute_id': product_attribute_2.id,
|
||||
'sequence': 1,
|
||||
})
|
||||
product_attribute_value_4 = self.env['product.attribute.value'].create({
|
||||
'name': 'Black',
|
||||
'attribute_id': product_attribute_2.id,
|
||||
'sequence': 2,
|
||||
})
|
||||
|
||||
# Create product template
|
||||
self.product_product_4_product_template = self.env['product.template'].create({
|
||||
'name': 'Customizable Desk (TEST)',
|
||||
'standard_price': 500.0,
|
||||
'list_price': 750.0,
|
||||
})
|
||||
|
||||
# Generate variants
|
||||
self.env['product.template.attribute.line'].create([{
|
||||
'product_tmpl_id': self.product_product_4_product_template.id,
|
||||
'attribute_id': self.product_attribute_1.id,
|
||||
'value_ids': [(4, product_attribute_value_1.id), (4, product_attribute_value_2.id)],
|
||||
}, {
|
||||
'product_tmpl_id': self.product_product_4_product_template.id,
|
||||
'attribute_id': product_attribute_2.id,
|
||||
'value_ids': [(4, product_attribute_value_3.id), (4, product_attribute_value_4.id)],
|
||||
|
||||
}])
|
||||
product_template = self.product_product_4_product_template
|
||||
|
||||
# Add Custom Attribute
|
||||
product_attribute_value_7 = self.env['product.attribute.value'].create({
|
||||
'name': 'Custom TEST',
|
||||
'attribute_id': self.product_attribute_1.id,
|
||||
'sequence': 3,
|
||||
'is_custom': True
|
||||
})
|
||||
self.product_product_4_product_template.attribute_line_ids[0].write({'value_ids': [(4, product_attribute_value_7.id)]})
|
||||
|
||||
img_path = get_module_resource('product', 'static', 'img', 'product_product_11-image.png')
|
||||
img_content = base64.b64encode(open(img_path, "rb").read())
|
||||
self.product_product_11_product_template = self.env['product.template'].create({
|
||||
'name': 'Conference Chair (TEST)',
|
||||
'website_sequence': 9999, # laule
|
||||
'image_1920': img_content,
|
||||
'list_price': 16.50,
|
||||
})
|
||||
|
||||
self.env['product.template.attribute.line'].create({
|
||||
'product_tmpl_id': self.product_product_11_product_template.id,
|
||||
'attribute_id': self.product_attribute_1.id,
|
||||
'value_ids': [(4, product_attribute_value_1.id), (4, product_attribute_value_2.id)],
|
||||
})
|
||||
self.product_product_11_product_template.attribute_line_ids[0].product_template_value_ids[1].price_extra = 6.40
|
||||
|
||||
# Setup a second optional product
|
||||
self.product_product_1_product_template = self.env['product.template'].create({
|
||||
'name': 'Chair floor protection',
|
||||
'list_price': 12.0,
|
||||
})
|
||||
|
||||
# fix runbot, sometimes one pricelist is chosen, sometimes the other...
|
||||
pricelists = self.env['website'].get_current_website().get_current_pricelist() | self.env.ref('product.list0')
|
||||
|
||||
for pricelist in pricelists:
|
||||
if not pricelist.item_ids.filtered(lambda i: i.product_tmpl_id == product_template and i.price_discount == 20):
|
||||
self.env['product.pricelist.item'].create({
|
||||
'base': 'list_price',
|
||||
'applied_on': '1_product',
|
||||
'pricelist_id': pricelist.id,
|
||||
'product_tmpl_id': product_template.id,
|
||||
'price_discount': 20,
|
||||
'min_quantity': 2,
|
||||
'compute_price': 'formula',
|
||||
})
|
||||
|
||||
pricelist.discount_policy = 'without_discount'
|
||||
|
||||
self.start_tour("/", 'shop_custom_attribute_value', login="admin")
|
||||
|
||||
|
|
@ -170,41 +101,32 @@ class TestUi(HttpCaseWithUserDemo, HttpCaseWithUserPortal):
|
|||
""" The goal of this test is to make sure product variants with dynamic
|
||||
attributes can be created by the public user (when being added to cart).
|
||||
"""
|
||||
|
||||
# create the attribute
|
||||
product_attribute = self.env['product.attribute'].create({
|
||||
'name': "Dynamic Attribute",
|
||||
'create_variant': 'dynamic',
|
||||
'value_ids': [
|
||||
Command.create({'name': "Dynamic Value 1"}),
|
||||
Command.create({'name': "Dynamic Value 2"}),
|
||||
]
|
||||
})
|
||||
|
||||
# create the attribute values
|
||||
product_attribute_values = self.env['product.attribute.value'].create([{
|
||||
'name': "Dynamic Value 1",
|
||||
'attribute_id': product_attribute.id,
|
||||
'sequence': 1,
|
||||
}, {
|
||||
'name': "Dynamic Value 2",
|
||||
'attribute_id': product_attribute.id,
|
||||
'sequence': 2,
|
||||
}])
|
||||
|
||||
# create the template
|
||||
product_template = self.env['product.template'].create({
|
||||
'name': 'Dynamic Product',
|
||||
'website_published': True,
|
||||
'list_price': 10,
|
||||
'attribute_line_ids': [
|
||||
Command.create({
|
||||
'attribute_id': product_attribute.id,
|
||||
'value_ids': [Command.set(product_attribute.value_ids.ids)]
|
||||
})
|
||||
]
|
||||
})
|
||||
|
||||
# set attribute and attribute values on the template
|
||||
self.env['product.template.attribute.line'].create([{
|
||||
'attribute_id': product_attribute.id,
|
||||
'product_tmpl_id': product_template.id,
|
||||
'value_ids': [(6, 0, product_attribute_values.ids)]
|
||||
}])
|
||||
|
||||
# set a different price on the variants to differentiate them
|
||||
product_template_attribute_values = self.env['product.template.attribute.value'] \
|
||||
.search([('product_tmpl_id', '=', product_template.id)])
|
||||
product_template_attribute_values = self.env['product.template.attribute.value'].search([
|
||||
('product_tmpl_id', '=', product_template.id),
|
||||
])
|
||||
|
||||
for ptav in product_template_attribute_values:
|
||||
if ptav.name == "Dynamic Value 1":
|
||||
|
|
@ -226,39 +148,29 @@ class TestUi(HttpCaseWithUserDemo, HttpCaseWithUserPortal):
|
|||
product_attribute = self.env['product.attribute'].create({
|
||||
'name': "My Attribute",
|
||||
'create_variant': 'always',
|
||||
'value_ids': [
|
||||
Command.create({'name': "My Value 1"}),
|
||||
Command.create({'name': "My Value 2"}),
|
||||
Command.create({'name': "My Value 3"}),
|
||||
],
|
||||
})
|
||||
|
||||
# create the attribute values
|
||||
product_attribute_values = self.env['product.attribute.value'].create([{
|
||||
'name': "My Value 1",
|
||||
'attribute_id': product_attribute.id,
|
||||
'sequence': 1,
|
||||
}, {
|
||||
'name': "My Value 2",
|
||||
'attribute_id': product_attribute.id,
|
||||
'sequence': 2,
|
||||
}, {
|
||||
'name': "My Value 3",
|
||||
'attribute_id': product_attribute.id,
|
||||
'sequence': 3,
|
||||
}])
|
||||
|
||||
# create the template
|
||||
product_template = self.env['product.template'].create({
|
||||
'name': 'Test Product 2',
|
||||
'is_published': True,
|
||||
'attribute_line_ids': [
|
||||
Command.create({
|
||||
'attribute_id': product_attribute.id,
|
||||
'value_ids': [Command.set(product_attribute.value_ids.ids)]
|
||||
}),
|
||||
],
|
||||
})
|
||||
|
||||
# set attribute and attribute values on the template
|
||||
self.env['product.template.attribute.line'].create([{
|
||||
'attribute_id': product_attribute.id,
|
||||
'product_tmpl_id': product_template.id,
|
||||
'value_ids': [(6, 0, product_attribute_values.ids)]
|
||||
}])
|
||||
|
||||
# set a different price on the variants to differentiate them
|
||||
product_template_attribute_values = self.env['product.template.attribute.value'] \
|
||||
.search([('product_tmpl_id', '=', product_template.id)])
|
||||
product_template_attribute_values = self.env['product.template.attribute.value'].search([
|
||||
('product_tmpl_id', '=', product_template.id),
|
||||
])
|
||||
|
||||
product_template_attribute_values[0].price_extra = 10
|
||||
product_template_attribute_values[1].price_extra = 20
|
||||
|
|
@ -278,57 +190,47 @@ class TestUi(HttpCaseWithUserDemo, HttpCaseWithUserPortal):
|
|||
Using "demo" to have various users in the tests.
|
||||
"""
|
||||
|
||||
# create the attribute
|
||||
product_attribute_no_variant = self.env['product.attribute'].create({
|
||||
'name': "No Variant Attribute",
|
||||
'create_variant': 'no_variant',
|
||||
})
|
||||
|
||||
# create the attribute value
|
||||
product_attribute_value_no_variant = self.env['product.attribute.value'].create({
|
||||
'name': "No Variant Value",
|
||||
'attribute_id': product_attribute_no_variant.id,
|
||||
'value_ids': [Command.create({'name': "No Variant Value"})],
|
||||
})
|
||||
|
||||
# create the template
|
||||
product_template = self.env['product.template'].create({
|
||||
'name': 'Test Product 3',
|
||||
'website_published': True,
|
||||
'attribute_line_ids': [
|
||||
Command.create({
|
||||
'attribute_id': product_attribute_no_variant.id,
|
||||
'value_ids': [Command.set(product_attribute_no_variant.value_ids.ids)]
|
||||
})
|
||||
]
|
||||
})
|
||||
|
||||
# set attribute and attribute value on the template
|
||||
ptal = self.env['product.template.attribute.line'].create([{
|
||||
'attribute_id': product_attribute_no_variant.id,
|
||||
'product_tmpl_id': product_template.id,
|
||||
'value_ids': [(6, 0, product_attribute_value_no_variant.ids)]
|
||||
}])
|
||||
|
||||
# set a price on the value
|
||||
ptal.product_template_value_ids.price_extra = 10
|
||||
product_template.attribute_line_ids.product_template_value_ids.price_extra = 10
|
||||
|
||||
self.start_tour("/", 'tour_shop_no_variant_attribute', login="demo")
|
||||
|
||||
def test_06_admin_list_view_b2c(self):
|
||||
self.env.ref('product.group_product_variant').write({'users': [(4, self.env.ref('base.user_admin').id)]})
|
||||
|
||||
# activate b2c
|
||||
config = self.env['res.config.settings'].create({})
|
||||
config.show_line_subtotals_tax_selection = "tax_included"
|
||||
config.execute()
|
||||
|
||||
self.start_tour(self.env['website'].get_client_action_url('/shop?search=Test Product'), 'shop_list_view_b2c', login="admin")
|
||||
sol = self.env['sale.order.line'].search([
|
||||
('product_id', '=', product_template.product_variant_id.id)
|
||||
])
|
||||
self.assertTrue(sol)
|
||||
self.assertEqual(
|
||||
sol.product_no_variant_attribute_value_ids,
|
||||
product_template.attribute_line_ids.product_template_value_ids
|
||||
)
|
||||
|
||||
def test_07_editor_shop(self):
|
||||
self.env["product.pricelist"].create({
|
||||
"name": "EUR Pricelist",
|
||||
"selectable": True,
|
||||
"website_id": self.env.ref("website.default_website").id,
|
||||
"country_group_ids": [(4, self.env.ref('base.europe').id)],
|
||||
"sequence": 3,
|
||||
"currency_id": self.env.ref("base.EUR").id,
|
||||
})
|
||||
|
||||
self.start_tour("/", 'shop_editor', login="admin")
|
||||
self.env.user.write(
|
||||
{'group_ids': [Command.link(self.env.ref('product.group_product_pricelist').id)]}
|
||||
)
|
||||
self.env['product.pricelist'].create([
|
||||
{'name': 'Base Pricelist', 'selectable': True},
|
||||
{'name': 'Other Pricelist', 'selectable': True}
|
||||
])
|
||||
self.start_tour("/", 'shop_editor', login="website_user")
|
||||
|
||||
def test_08_portal_tour_archived_variant_multiple_attributes(self):
|
||||
"""The goal of this test is to make sure that an archived variant with multiple
|
||||
|
|
@ -337,78 +239,52 @@ class TestUi(HttpCaseWithUserDemo, HttpCaseWithUserPortal):
|
|||
Using "portal" to have various users in the tests.
|
||||
"""
|
||||
|
||||
attribute_1, attribute_2, attribute_3 = self.env['product.attribute'].create([
|
||||
attributes = self.env['product.attribute'].create([
|
||||
{
|
||||
'name': 'Size',
|
||||
'create_variant': 'always',
|
||||
'value_ids': [
|
||||
Command.create({'name': 'Large'}),
|
||||
Command.create({'name': 'Small'}),
|
||||
],
|
||||
},
|
||||
{
|
||||
'name': 'Color',
|
||||
'create_variant': 'always',
|
||||
'value_ids': [
|
||||
Command.create({'name': 'White'}),
|
||||
Command.create({'name': 'Black'}),
|
||||
],
|
||||
},
|
||||
{
|
||||
'name': 'Brand',
|
||||
'create_variant': 'always',
|
||||
'value_ids': [
|
||||
Command.create({'name': 'Brand A'}),
|
||||
Command.create({'name': 'Brand B'}),
|
||||
],
|
||||
},
|
||||
])
|
||||
|
||||
attribute_values = self.env['product.attribute.value'].create([
|
||||
{
|
||||
'name': 'Large',
|
||||
'attribute_id': attribute_1.id,
|
||||
'sequence': 1,
|
||||
},
|
||||
{
|
||||
'name': 'Small',
|
||||
'attribute_id': attribute_1.id,
|
||||
'sequence': 2,
|
||||
},
|
||||
{
|
||||
'name': 'White',
|
||||
'attribute_id': attribute_2.id,
|
||||
'sequence': 1,
|
||||
},
|
||||
{
|
||||
'name': 'Black',
|
||||
'attribute_id': attribute_2.id,
|
||||
'sequence': 2,
|
||||
},
|
||||
{
|
||||
'name': 'Brand A',
|
||||
'attribute_id': attribute_3.id,
|
||||
'sequence': 1,
|
||||
},
|
||||
{
|
||||
'name': 'Brand B',
|
||||
'attribute_id': attribute_3.id,
|
||||
'sequence': 2,
|
||||
},
|
||||
])
|
||||
|
||||
product_template = self.env['product.template'].create({
|
||||
'name': 'Test Product 2',
|
||||
'is_published': True,
|
||||
'attribute_line_ids': [
|
||||
Command.create({
|
||||
'attribute_id': attribute.id,
|
||||
'value_ids': [Command.set(attribute.value_ids.ids)],
|
||||
}) for attribute in attributes
|
||||
],
|
||||
})
|
||||
|
||||
self.env['product.template.attribute.line'].create([
|
||||
{
|
||||
'attribute_id': attribute_1.id,
|
||||
'product_tmpl_id': product_template.id,
|
||||
'value_ids': [(6, 0, attribute_values.filtered(lambda v: v.attribute_id == attribute_1).ids)],
|
||||
},
|
||||
{
|
||||
'attribute_id': attribute_2.id,
|
||||
'product_tmpl_id': product_template.id,
|
||||
'value_ids': [(6, 0, attribute_values.filtered(lambda v: v.attribute_id == attribute_2).ids)],
|
||||
},
|
||||
{
|
||||
'attribute_id': attribute_3.id,
|
||||
'product_tmpl_id': product_template.id,
|
||||
'value_ids': [(6, 0, attribute_values.filtered(lambda v: v.attribute_id == attribute_3).ids)],
|
||||
},
|
||||
])
|
||||
|
||||
product_template.product_variant_ids[-1].active = False
|
||||
# Archive (Small, Black, Brand B) variant
|
||||
combination_to_archive = product_template.attribute_line_ids.product_template_value_ids.filtered(
|
||||
lambda ptav: ptav.product_attribute_value_id.name in ('Small', 'Black', 'Brand B')
|
||||
)
|
||||
variant_to_archive = product_template._get_variant_for_combination(
|
||||
combination_to_archive
|
||||
)
|
||||
self.assertTrue(variant_to_archive)
|
||||
variant_to_archive.action_archive()
|
||||
self.assertFalse(variant_to_archive.active)
|
||||
|
||||
self.start_tour("/", 'tour_shop_archived_variant_multi', login="portal")
|
||||
|
||||
|
|
@ -419,41 +295,127 @@ class TestUi(HttpCaseWithUserDemo, HttpCaseWithUserPortal):
|
|||
Using "portal" to have various users in the tests.
|
||||
"""
|
||||
|
||||
attribute_1 = self.env['product.attribute'].create([
|
||||
{
|
||||
'name': 'Size',
|
||||
'create_variant': 'always',
|
||||
'display_type': 'pills',
|
||||
},
|
||||
])
|
||||
|
||||
attribute_values = self.env['product.attribute.value'].create([
|
||||
{
|
||||
'name': 'Large',
|
||||
'attribute_id': attribute_1.id,
|
||||
'sequence': 1,
|
||||
},
|
||||
{
|
||||
'name': 'Small',
|
||||
'attribute_id': attribute_1.id,
|
||||
'sequence': 2,
|
||||
},
|
||||
])
|
||||
|
||||
product_template = self.env['product.template'].create({
|
||||
'name': 'Test Product 2',
|
||||
'is_published': True,
|
||||
attribute_size = self.env['product.attribute'].create({
|
||||
'name': 'Size',
|
||||
'create_variant': 'always',
|
||||
'display_type': 'pills',
|
||||
'value_ids': [
|
||||
Command.create({'name': 'Large'}),
|
||||
Command.create({'name': 'Small'}),
|
||||
],
|
||||
})
|
||||
|
||||
self.env['product.template.attribute.line'].create([
|
||||
{
|
||||
'attribute_id': attribute_1.id,
|
||||
'product_tmpl_id': product_template.id,
|
||||
'value_ids': [(6, 0, attribute_values.ids)],
|
||||
},
|
||||
])
|
||||
self.env['product.template'].create({
|
||||
'name': 'Test Product 2',
|
||||
'is_published': True,
|
||||
'attribute_line_ids': [
|
||||
Command.create({
|
||||
'attribute_id': attribute_size.id,
|
||||
'value_ids': [Command.set(attribute_size.value_ids.ids)],
|
||||
})
|
||||
],
|
||||
})
|
||||
|
||||
self.start_tour("/", 'test_09_pills_variant', login="portal")
|
||||
|
||||
def test_10_shop_editor_set_product_ribbon(self):
|
||||
def test_10_multi_checkbox_attribute(self):
|
||||
attribute = self.env['product.attribute'].create([
|
||||
{
|
||||
'name': 'Options',
|
||||
'create_variant': 'no_variant',
|
||||
'display_type': 'multi',
|
||||
'value_ids': [
|
||||
Command.create({
|
||||
'name': 'Option 1',
|
||||
'default_extra_price': 1,
|
||||
'sequence': 1,
|
||||
}),
|
||||
Command.create({
|
||||
'name': 'Option 2',
|
||||
'sequence': 2,
|
||||
}),
|
||||
Command.create({
|
||||
'name': 'Option 3',
|
||||
'default_extra_price': 3,
|
||||
'sequence': 3,
|
||||
}),
|
||||
Command.create({
|
||||
'name': 'Option 4',
|
||||
'sequence': 4,
|
||||
}),
|
||||
],
|
||||
},
|
||||
])
|
||||
product_template = self.env['product.template'].create({
|
||||
'name': 'Product Multi',
|
||||
'is_published': True,
|
||||
'list_price': 750,
|
||||
'attribute_line_ids': [
|
||||
Command.create({
|
||||
'attribute_id': attribute.id,
|
||||
'value_ids': [Command.set(attribute.value_ids.ids)],
|
||||
}),
|
||||
],
|
||||
})
|
||||
# set an extra price for free attribute values on the product (nothing is free)
|
||||
self.env['product.template.attribute.value'].search([
|
||||
('product_tmpl_id', '=', product_template.id),
|
||||
('price_extra', '=', 0),
|
||||
]).price_extra = 2
|
||||
# set an exclusion between option 1 and option 3
|
||||
self.env['product.template.attribute.value'].search([
|
||||
('product_tmpl_id', '=', product_template.id),
|
||||
('price_extra', '=', 1),
|
||||
]).exclude_for = [
|
||||
Command.create({
|
||||
'product_tmpl_id': product_template.id,
|
||||
'value_ids': [Command.set(
|
||||
self.env['product.template.attribute.value'].search([
|
||||
('product_tmpl_id', '=', product_template.id),
|
||||
('price_extra', '=', 3)
|
||||
]).ids
|
||||
)],
|
||||
}),
|
||||
]
|
||||
|
||||
self.start_tour("/", 'tour_shop_multi_checkbox', login="portal")
|
||||
|
||||
def test_11_shop_editor_set_product_ribbon(self):
|
||||
self.start_tour("/", 'shop_editor_set_product_ribbon', login="admin")
|
||||
|
||||
def test_12_multi_checkbox_attribute_single_value(self):
|
||||
attribute = self.env['product.attribute'].create([
|
||||
{
|
||||
'name': 'Toppings',
|
||||
'create_variant': 'no_variant',
|
||||
'display_type': 'multi',
|
||||
'value_ids': [(0, 0, {'name': 'cheese'})],
|
||||
},
|
||||
])
|
||||
self.env['product.template'].create({
|
||||
'name': 'Burger',
|
||||
'is_published': True,
|
||||
'list_price': 750,
|
||||
'attribute_line_ids': [
|
||||
Command.create({
|
||||
'attribute_id': attribute.id,
|
||||
'value_ids': [(6, 0, attribute.value_ids.ids)],
|
||||
}),
|
||||
],
|
||||
})
|
||||
|
||||
self.start_tour("/", 'tour_shop_multi_checkbox_single_value', login="website_user")
|
||||
|
||||
def test_shop_editor_no_alternative_products_visibility(self):
|
||||
product_no_alternative = self.env['product.template'].create({
|
||||
'name': 'product_without_alternative',
|
||||
'is_published': True,
|
||||
})
|
||||
product_with_alternative = self.env['product.template'].create({
|
||||
'name': 'product_with_alternative',
|
||||
'is_published': True,
|
||||
'alternative_product_ids': product_no_alternative.ids,
|
||||
})
|
||||
product_no_alternative.set_sequence_top()
|
||||
product_with_alternative.set_sequence_top()
|
||||
self.start_tour('/', 'shop_editor_no_alternative_products_visibility_tour', login="admin")
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue