88 lines
3.7 KiB
Python
88 lines
3.7 KiB
Python
# -*- coding: utf-8 -*-
|
|
# Part of Odoo. See LICENSE file for full copyright and licensing details.
|
|
|
|
from odoo.tests.common import TransactionCase
|
|
|
|
|
|
class TestPointOfSale(TransactionCase):
|
|
def setUp(self):
|
|
super(TestPointOfSale, self).setUp()
|
|
|
|
# ignore pre-existing pricelists for the purpose of this test
|
|
self.env["product.pricelist"].search([]).write({"active": False})
|
|
|
|
self.currency = self.env.ref("base.USD")
|
|
self.company1 = self.env["res.company"].create({
|
|
"name": "company 1",
|
|
"currency_id": self.currency.id
|
|
})
|
|
self.company2 = self.env["res.company"].create({
|
|
"name": "company 2",
|
|
"currency_id": self.currency.id
|
|
})
|
|
self.company2_pricelist = self.env["product.pricelist"].create({
|
|
"name": "company 2 pricelist",
|
|
"currency_id": self.currency.id,
|
|
"company_id": self.company2.id,
|
|
"sequence": 1, # force this pricelist to be first
|
|
})
|
|
|
|
self.env.user.company_id = self.company1
|
|
|
|
def test_no_default_pricelist(self):
|
|
""" Verify that the default pricelist isn't automatically set in the config """
|
|
company1_pricelist = self.env["product.pricelist"].create({
|
|
"name": "company 1 pricelist",
|
|
"currency_id": self.currency.id,
|
|
"company_id": self.company1.id,
|
|
"sequence": 2,
|
|
})
|
|
|
|
# make sure this doesn't pick a pricelist as default
|
|
new_config = self.env["pos.config"].create({
|
|
"name": "usd config", "available_pricelist_ids": [(6, 0, [company1_pricelist.id])]
|
|
})
|
|
|
|
self.assertEqual(new_config.pricelist_id, self.env['product.pricelist'],
|
|
"POS config incorrectly has pricelist %s" % new_config.pricelist_id.display_name)
|
|
|
|
def test_product_combo_variants(self):
|
|
# Create product and combo
|
|
product = self.env['product.product'].create({
|
|
'name': 'Test Product 1',
|
|
'list_price': 100,
|
|
'taxes_id': False,
|
|
'available_in_pos': True,
|
|
})
|
|
|
|
product_1_combo_line = self.env["pos.combo.line"].create({
|
|
"product_id": product.id,
|
|
})
|
|
|
|
pos_combo = self.env["pos.combo"].create(
|
|
{
|
|
"name": "Pos combo",
|
|
"combo_line_ids": [
|
|
(6, 0, [product_1_combo_line.id])
|
|
],
|
|
}
|
|
)
|
|
# Add attribute and values, simulating variant creation
|
|
size_attribute = self.env['product.attribute'].create({'name': 'Size'})
|
|
attribute_value_1 = self.env['product.attribute.value'].create({'name': 'Large', 'attribute_id': size_attribute.id})
|
|
attribute_value_2 = self.env['product.attribute.value'].create({'name': 'Small', 'attribute_id': size_attribute.id})
|
|
original_product_id = product.id
|
|
product_template = product.product_tmpl_id
|
|
product.product_tmpl_id.with_context(create_product_product=True).write({
|
|
'attribute_line_ids': [(0, 0, {
|
|
'attribute_id': size_attribute.id,
|
|
'value_ids': [(6, 0, [attribute_value_1.id, attribute_value_2.id])],
|
|
})],
|
|
})
|
|
# Check that original product should not be in combo anymore (replace by variants)
|
|
self.assertTrue(original_product_id not in pos_combo.combo_line_ids.mapped('product_id').ids, "Original product should not be in combo")
|
|
# Check that variants are in combo
|
|
variant_ids = product_template.product_variant_ids.ids
|
|
for variant_id in variant_ids:
|
|
self.assertIn(variant_id, pos_combo.combo_line_ids.mapped('product_id').ids, "Variant should be in combo")
|