summaryrefslogtreecommitdiff
path: root/addons/sale_product_configurator/tests/common.py
diff options
context:
space:
mode:
authorstephanchrst <stephanchrst@gmail.com>2022-05-10 21:51:50 +0700
committerstephanchrst <stephanchrst@gmail.com>2022-05-10 21:51:50 +0700
commit3751379f1e9a4c215fb6eb898b4ccc67659b9ace (patch)
treea44932296ef4a9b71d5f010906253d8c53727726 /addons/sale_product_configurator/tests/common.py
parent0a15094050bfde69a06d6eff798e9a8ddf2b8c21 (diff)
initial commit 2
Diffstat (limited to 'addons/sale_product_configurator/tests/common.py')
-rw-r--r--addons/sale_product_configurator/tests/common.py114
1 files changed, 114 insertions, 0 deletions
diff --git a/addons/sale_product_configurator/tests/common.py b/addons/sale_product_configurator/tests/common.py
new file mode 100644
index 00000000..252fda2b
--- /dev/null
+++ b/addons/sale_product_configurator/tests/common.py
@@ -0,0 +1,114 @@
+# Part of Odoo. See LICENSE file for full copyright and licensing details.
+import base64
+
+from odoo.tests.common import SavepointCase
+from odoo.modules.module import get_module_resource
+
+
+class TestProductConfiguratorCommon(SavepointCase):
+
+ @classmethod
+ def setUpClass(cls):
+ super().setUpClass()
+ # Setup attributes and attributes values
+ cls.product_attribute_1 = cls.env['product.attribute'].create({
+ 'name': 'Legs',
+ 'sequence': 10,
+ })
+ product_attribute_value_1 = cls.env['product.attribute.value'].create({
+ 'name': 'Steel',
+ 'attribute_id': cls.product_attribute_1.id,
+ 'sequence': 1,
+ })
+ product_attribute_value_2 = cls.env['product.attribute.value'].create({
+ 'name': 'Aluminium',
+ 'attribute_id': cls.product_attribute_1.id,
+ 'sequence': 2,
+ })
+ product_attribute_2 = cls.env['product.attribute'].create({
+ 'name': 'Color',
+ 'sequence': 20,
+ })
+ product_attribute_value_3 = cls.env['product.attribute.value'].create({
+ 'name': 'White',
+ 'attribute_id': product_attribute_2.id,
+ 'sequence': 1,
+ })
+ product_attribute_value_4 = cls.env['product.attribute.value'].create({
+ 'name': 'Black',
+ 'attribute_id': product_attribute_2.id,
+ 'sequence': 2,
+ })
+
+ # Create product template
+ cls.product_product_custo_desk = cls.env['product.template'].create({
+ 'name': 'Customizable Desk (TEST)',
+ 'standard_price': 500.0,
+ 'list_price': 750.0,
+ })
+
+ # Generate variants
+ cls.env['product.template.attribute.line'].create([{
+ 'product_tmpl_id': cls.product_product_custo_desk.id,
+ 'attribute_id': cls.product_attribute_1.id,
+ 'value_ids': [(4, product_attribute_value_1.id), (4, product_attribute_value_2.id)],
+ }, {
+ 'product_tmpl_id': cls.product_product_custo_desk.id,
+ 'attribute_id': product_attribute_2.id,
+ 'value_ids': [(4, product_attribute_value_3.id), (4, product_attribute_value_4.id)],
+
+ }])
+
+ # Apply a price_extra for the attribute Aluminium
+ cls.product_product_custo_desk.attribute_line_ids[0].product_template_value_ids[1].price_extra = 50.40
+
+ # Add a Custom attribute
+ product_attribute_value_custom = cls.env['product.attribute.value'].create({
+ 'name': 'Custom',
+ 'attribute_id': cls.product_attribute_1.id,
+ 'sequence': 3,
+ 'is_custom': True
+ })
+ cls.product_product_custo_desk.attribute_line_ids[0].write({'value_ids': [(4, product_attribute_value_custom.id)]})
+
+ # Disable the aluminium + black product
+ cls.product_product_custo_desk.product_variant_ids[3].active = False
+
+ # Setup a first optional product
+ img_path = get_module_resource('product', 'static', 'img', 'product_product_11-image.png')
+ img_content = base64.b64encode(open(img_path, "rb").read())
+ cls.product_product_conf_chair = cls.env['product.template'].create({
+ 'name': 'Conference Chair (TEST)',
+ 'image_1920': img_content,
+ 'list_price': 16.50,
+ })
+
+ cls.env['product.template.attribute.line'].create({
+ 'product_tmpl_id': cls.product_product_conf_chair.id,
+ 'attribute_id': cls.product_attribute_1.id,
+ 'value_ids': [(4, product_attribute_value_1.id), (4, product_attribute_value_2.id)],
+ })
+ cls.product_product_conf_chair.attribute_line_ids[0].product_template_value_ids[1].price_extra = 6.40
+ cls.product_product_custo_desk.optional_product_ids = [(4, cls.product_product_conf_chair.id)]
+
+ # Setup a second optional product
+ cls.product_product_conf_chair_floor_protect = cls.env['product.template'].create({
+ 'name': 'Chair floor protection',
+ 'list_price': 12.0,
+ })
+ cls.product_product_conf_chair.optional_product_ids = [(4, cls.product_product_conf_chair_floor_protect.id)]
+
+
+ def _create_pricelist(cls, pricelists):
+ for pricelist in pricelists:
+ if not pricelist.item_ids.filtered(lambda i: i.product_tmpl_id == cls.product_product_custo_desk and i.price_discount == 20):
+ cls.env['product.pricelist.item'].create({
+ 'base': 'list_price',
+ 'applied_on': '1_product',
+ 'pricelist_id': pricelist.id,
+ 'product_tmpl_id': cls.product_product_custo_desk.id,
+ 'price_discount': 20,
+ 'min_quantity': 2,
+ 'compute_price': 'formula',
+ })
+ pricelist.discount_policy = 'without_discount'