Server IP : 127.0.0.2 / Your IP : 18.216.130.198 Web Server : Apache/2.4.18 (Ubuntu) System : User : www-data ( ) PHP Version : 7.0.33-0ubuntu0.16.04.16 Disable Function : disk_free_space,disk_total_space,diskfreespace,dl,exec,fpaththru,getmyuid,getmypid,highlight_file,ignore_user_abord,leak,listen,link,opcache_get_configuration,opcache_get_status,passthru,pcntl_alarm,pcntl_fork,pcntl_waitpid,pcntl_wait,pcntl_wifexited,pcntl_wifstopped,pcntl_wifsignaled,pcntl_wexitstatus,pcntl_wtermsig,pcntl_wstopsig,pcntl_signal,pcntl_signal_dispatch,pcntl_get_last_error,pcntl_strerror,pcntl_sigprocmask,pcntl_sigwaitinfo,pcntl_sigtimedwait,pcntl_exec,pcntl_getpriority,pcntl_setpriority,php_uname,phpinfo,posix_ctermid,posix_getcwd,posix_getegid,posix_geteuid,posix_getgid,posix_getgrgid,posix_getgrnam,posix_getgroups,posix_getlogin,posix_getpgid,posix_getpgrp,posix_getpid,posix,_getppid,posix_getpwnam,posix_getpwuid,posix_getrlimit,posix_getsid,posix_getuid,posix_isatty,posix_kill,posix_mkfifo,posix_setegid,posix_seteuid,posix_setgid,posix_setpgid,posix_setsid,posix_setuid,posix_times,posix_ttyname,posix_uname,pclose,popen,proc_open,proc_close,proc_get_status,proc_nice,proc_terminate,shell_exec,source,show_source,system,virtual MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : ON | Sudo : ON | Pkexec : ON Directory : /opt/odoo/addons/product/tests/ |
Upload File : |
# -*- coding: utf-8 -*- # Part of Odoo. See LICENSE file for full copyright and licensing details. from odoo.tests.common import TransactionCase from odoo.tools import float_compare, test_reports class TestProductPricelist(TransactionCase): def setUp(self): super(TestProductPricelist, self).setUp() self.ProductPricelist = self.env['product.pricelist'] self.res_partner_4 = self.env.ref('base.res_partner_4') self.computer_SC234 = self.env.ref("product.product_product_3") self.ipad_retina_display = self.env.ref('product.product_product_4') self.custom_computer_kit = self.env.ref("product.product_product_5") self.ipad_mini = self.env.ref("product.product_product_6") self.apple_in_ear_headphones = self.env.ref("product.product_product_7") self.laptop_E5023 = self.env.ref('product.product_delivery_01') self.laptop_S3450 = self.env.ref("product.product_product_25") self.category_5_id = self.ref('product.product_category_5') self.uom_unit_id = self.ref('product.product_uom_unit') self.list0 = self.ref('product.list0') self.ipad_retina_display.write({'uom_id': self.uom_unit_id, 'categ_id': self.category_5_id}) self.customer_pricelist = self.ProductPricelist.create({ 'name': 'Customer Pricelist', 'item_ids': [(0, 0, { 'name': 'Default pricelist', 'compute_price': 'formula', 'base': 'pricelist', 'base_pricelist_id': self.list0 }), (0, 0, { 'name': '10% Discount on Assemble Computer', 'applied_on': '1_product', 'sequence': 1, 'product_id': self.ipad_retina_display.id, 'compute_price': 'formula', 'base': 'list_price', 'price_discount': 10 }), (0, 0, { 'name': '1 surchange on Laptop', 'applied_on': '1_product', 'sequence': 4, 'product_id': self.laptop_E5023.id, 'compute_price': 'formula', 'base': 'list_price', 'price_surcharge': 1 }), (0, 0, { 'name': '5% Discount on all Computer related products', 'applied_on': '2_product_category', 'sequence': 1, 'min_quantity': 2, 'compute_price': 'formula', 'base': 'list_price', 'categ_id': self.category_5_id, 'price_discount': 5 }), (0, 0, { 'name': '30% Discount on all products', 'applied_on': '0_product_variant', 'date_start': '2011-12-27', 'date_end': '2011-12-31', 'compute_price': 'formula', 'price_discount': 30, 'sequence': 1, 'base': 'list_price' })] }) def test_10_calculation_price_of_products_pricelist(self): """Test calculation of product price based on pricelist""" # I check sale price of iPad Retina Display context = {} context.update({'pricelist': self.customer_pricelist.id, 'quantity': 1}) ipad_retina_display = self.ipad_retina_display.with_context(context) msg = "Wrong sale price: iPad Retina Display. should be %s instead of %s" % (ipad_retina_display.price, (ipad_retina_display.lst_price-ipad_retina_display.lst_price*(0.10))) self.assertEqual(float_compare(ipad_retina_display.price, (ipad_retina_display.lst_price-ipad_retina_display.lst_price*(0.10)), precision_digits=2), 0, msg) # I check sale price of Laptop. laptop_E5023 = self.laptop_E5023.with_context(context) msg = "Wrong sale price: Laptop. should be %s instead of %s" % (laptop_E5023.price, (laptop_E5023.lst_price + 1)) self.assertEqual(float_compare(laptop_E5023.price, laptop_E5023.lst_price + 1, precision_digits=2), 0, msg) # I check sale price of IT component. apple_headphones = self.apple_in_ear_headphones.with_context(context) msg = "Wrong sale price: IT component. should be %s instead of %s" % (apple_headphones.price, apple_headphones.lst_price) self.assertEqual(float_compare(apple_headphones.price, apple_headphones.lst_price, precision_digits=2), 0, msg) # I check sale price of IT component if more than 3 Unit. context.update({'quantity': 5}) laptop_S3450 = self.laptop_S3450.with_context(context) msg = "Wrong sale price: IT component if more than 3 Unit. should be %s instead of %s" % (laptop_S3450.price, (laptop_S3450.lst_price-laptop_S3450.lst_price*(0.05))) self.assertEqual(float_compare(laptop_S3450.price, laptop_S3450.lst_price-laptop_S3450.lst_price*(0.05), precision_digits=2), 0, msg) # I check sale price of LCD Monitor. context.update({'quantity': 1}) ipad_mini = self.ipad_mini.with_context(context) msg = "Wrong sale price: LCD Monitor. should be %s instead of %s" % (ipad_mini.price, ipad_mini.lst_price) self.assertEqual(float_compare(ipad_mini.price, ipad_mini.lst_price, precision_digits=2), 0, msg) # I check sale price of LCD Monitor on end of year. context.update({'quantity': 1, 'date': '2011-12-31'}) ipad_mini = self.ipad_mini.with_context(context) msg = "Wrong sale price: LCD Monitor on end of year. should be %s instead of %s" % (ipad_mini.price, ipad_mini.lst_price-ipad_mini.lst_price*(0.30)) self.assertEqual(float_compare(ipad_mini.price, ipad_mini.lst_price-ipad_mini.lst_price*(0.30), precision_digits=2), 0, msg) # I check cost price of LCD Monitor. context.update({'quantity': 1, 'date': False, 'partner_id': self.res_partner_4.id}) ipad_mini = self.ipad_mini.with_context(context) partner = self.res_partner_4.with_context(context) msg = "Wrong cost price: LCD Monitor. should be 790 instead of %s" % ipad_mini._select_seller(partner_id=partner, quantity=1.0).price self.assertEqual(float_compare(ipad_mini._select_seller(partner_id=partner, quantity=1.0).price, 790, precision_digits=2), 0, msg) # I check cost price of LCD Monitor if more than 3 Unit. context.update({'quantity': 3}) ipad_mini = self.ipad_mini.with_context(context) partner = self.res_partner_4.with_context(context) msg = "Wrong cost price: LCD Monitor if more than 3 Unit.should be 785 instead of %s" % ipad_mini._select_seller(partner_id=partner, quantity=3.0).price self.assertEqual(float_compare(ipad_mini._select_seller(partner_id=partner, quantity=3.0).price, 785, precision_digits=2), 0, msg) # I print the sale prices report. ctx = {'active_model': 'product.product', 'date': '2011-12-30', 'active_ids': [self.computer_SC234.id, self.ipad_retina_display.id, self.custom_computer_kit.id, self.ipad_mini.id]} data_dict = { 'qty1': 1, 'qty2': 5, 'qty3': 10, 'qty4': 15, 'qty5': 30, 'price_list': self.customer_pricelist.id, } test_reports.try_report_action(self.cr, self.uid, 'action_product_price_list', wiz_data=data_dict, context=ctx, our_module='product')