mirror of
https://github.com/bringout/oca-ocb-sale.git
synced 2026-04-27 07:12:05 +02:00
Initial commit: Sale packages
This commit is contained in:
commit
14e3d26998
6469 changed files with 2479670 additions and 0 deletions
|
|
@ -0,0 +1,80 @@
|
|||
# -*- coding: utf-8 -*-
|
||||
# Part of Odoo. See LICENSE file for full copyright and licensing details.
|
||||
|
||||
from datetime import timedelta
|
||||
|
||||
from odoo.fields import Datetime
|
||||
from odoo.tests.common import TransactionCase
|
||||
|
||||
|
||||
class TestWebsiteEventSaleCommon(TransactionCase):
|
||||
|
||||
@classmethod
|
||||
def setUpClass(cls):
|
||||
super(TestWebsiteEventSaleCommon, cls).setUpClass()
|
||||
|
||||
cls.env.company.country_id = cls.env.ref('base.us')
|
||||
cls.currency_test = cls.env['res.currency'].create({
|
||||
'name': 'eventX',
|
||||
'rounding': 0.01,
|
||||
'symbol': 'EX',
|
||||
})
|
||||
cls.partner = cls.env['res.partner'].create({'name': 'test'})
|
||||
cls.env['res.currency.rate'].search([]).unlink()
|
||||
cls.rate = cls.env['res.currency.rate'].create({
|
||||
'company_id': cls.env.company.id,
|
||||
'currency_id': cls.currency_test.id,
|
||||
'name': '2022-01-01',
|
||||
'rate': 10,
|
||||
})
|
||||
cls.zero_tax = cls.env['account.tax'].sudo().create({
|
||||
'name': 'Tax 0',
|
||||
'amount': 0,
|
||||
})
|
||||
cls.product_event = cls.env['product.product'].create({
|
||||
'detailed_type': 'event',
|
||||
'list_price': 100,
|
||||
'name': 'Event Registration No Company Assigned',
|
||||
'taxes_id': [(6, 0, cls.zero_tax.ids)],
|
||||
})
|
||||
|
||||
cls.event = cls.env['event.event'].create({
|
||||
'date_begin': (Datetime.today() + timedelta(days=5)).strftime('%Y-%m-%d 07:00:00'),
|
||||
'date_end': (Datetime.today() + timedelta(days=5)).strftime('%Y-%m-%d 16:30:00'),
|
||||
'name': 'Pycon',
|
||||
'user_id': cls.env.ref('base.user_admin').id,
|
||||
'website_published': True,
|
||||
})
|
||||
cls.ticket = cls.env['event.event.ticket'].create([{
|
||||
'event_id': cls.event.id,
|
||||
'name': 'Standard',
|
||||
'product_id': cls.product_event.id,
|
||||
'price': 100,
|
||||
}])
|
||||
|
||||
cls.current_website = cls.env['website'].get_current_website()
|
||||
cls.pricelist = cls.current_website.get_current_pricelist()
|
||||
|
||||
cls.so = cls.env['sale.order'].create({
|
||||
'company_id': cls.env.company.id,
|
||||
'partner_id': cls.partner.id,
|
||||
'pricelist_id': cls.pricelist.id,
|
||||
})
|
||||
|
||||
def create_pricelist(currency, name, policy):
|
||||
return cls.env['product.pricelist'].create({
|
||||
'currency_id': currency.id,
|
||||
'discount_policy': policy,
|
||||
'item_ids': [(5, 0, 0), (0, 0, {
|
||||
'applied_on': '3_global',
|
||||
'compute_price': 'percentage',
|
||||
'percent_price': 10,
|
||||
})],
|
||||
'name': name,
|
||||
'selectable': True,
|
||||
})
|
||||
|
||||
cls.pricelist_with_discount = create_pricelist(currency=cls.env.company.currency_id, name='EUR With Discount Included', policy='with_discount')
|
||||
cls.pricelist_without_discount = create_pricelist(currency=cls.env.company.currency_id, name='EUR Without Discount Included', policy='without_discount')
|
||||
cls.ex_pricelist_with_discount = create_pricelist(currency=cls.currency_test, name='EX With Discount Included', policy='with_discount')
|
||||
cls.ex_pricelist_without_discount = create_pricelist(currency=cls.currency_test, name='EX Without Discount Included', policy='without_discount')
|
||||
Loading…
Add table
Add a link
Reference in a new issue