first commit
This commit is contained in:
2
modules/sale_secondary_unit/tests/__init__.py
Normal file
2
modules/sale_secondary_unit/tests/__init__.py
Normal file
@@ -0,0 +1,2 @@
|
||||
# This file is part of Tryton. The COPYRIGHT file at the top level of
|
||||
# this repository contains the full copyright notices and license terms.
|
||||
Binary file not shown.
Binary file not shown.
Binary file not shown.
@@ -0,0 +1,119 @@
|
||||
==============================================
|
||||
Sale Blanket Agreement Secondary Unit Scenario
|
||||
==============================================
|
||||
|
||||
Imports::
|
||||
|
||||
>>> import datetime as dt
|
||||
>>> from decimal import Decimal
|
||||
|
||||
>>> from proteus import Model
|
||||
>>> from trytond.modules.account.tests.tools import create_chart, get_accounts
|
||||
>>> from trytond.modules.company.tests.tools import create_company
|
||||
>>> from trytond.tests.tools import activate_modules, assertEqual
|
||||
|
||||
>>> today = dt.date.today()
|
||||
>>> later = today + dt.timedelta(days=30)
|
||||
|
||||
Activate modules::
|
||||
|
||||
>>> config = activate_modules(
|
||||
... ['sale_secondary_unit', 'sale_blanket_agreement'],
|
||||
... create_company, create_chart)
|
||||
|
||||
>>> Party = Model.get('party.party')
|
||||
>>> ProductCategory = Model.get('product.category')
|
||||
>>> ProductUom = Model.get('product.uom')
|
||||
>>> ProductTemplate = Model.get('product.template')
|
||||
>>> SaleBlanketAgreement = Model.get('sale.blanket_agreement')
|
||||
|
||||
Get accounts::
|
||||
|
||||
>>> accounts = get_accounts()
|
||||
|
||||
Create customer::
|
||||
|
||||
>>> customer = Party(name="Customer")
|
||||
>>> customer.save()
|
||||
|
||||
Create account category::
|
||||
|
||||
>>> account_category = ProductCategory(name="Account Category")
|
||||
>>> account_category.accounting = True
|
||||
>>> account_category.account_expense = accounts['expense']
|
||||
>>> account_category.account_revenue = accounts['revenue']
|
||||
>>> account_category.save()
|
||||
|
||||
Create product::
|
||||
|
||||
>>> unit, = ProductUom.find([('name', '=', 'Unit')])
|
||||
>>> gr, = ProductUom.find([('name', '=', 'Gram')])
|
||||
>>> template = ProductTemplate()
|
||||
>>> template.name = "Product"
|
||||
>>> template.default_uom = unit
|
||||
>>> template.type = 'goods'
|
||||
>>> template.list_price = Decimal('10.000')
|
||||
>>> template.salable = True
|
||||
>>> template.account_category = account_category
|
||||
>>> template.sale_secondary_uom = gr
|
||||
>>> template.sale_secondary_uom_factor = 100
|
||||
>>> template.save()
|
||||
>>> product, = template.products
|
||||
>>> product.cost_price = Decimal('8.000')
|
||||
>>> product.save()
|
||||
|
||||
Create sale blanket agreement::
|
||||
|
||||
>>> blanket_agreement = SaleBlanketAgreement()
|
||||
>>> blanket_agreement.customer = customer
|
||||
>>> blanket_agreement.from_date = today
|
||||
>>> blanket_agreement.to_date = later
|
||||
>>> blanket_agreement_line = blanket_agreement.lines.new()
|
||||
>>> blanket_agreement_line.product = product
|
||||
>>> blanket_agreement_line.quantity = 800.0
|
||||
>>> blanket_agreement_line.unit = gr
|
||||
>>> blanket_agreement_line.unit_price = Decimal('9.000')
|
||||
>>> blanket_agreement.click('run')
|
||||
>>> blanket_agreement.state
|
||||
'running'
|
||||
|
||||
Create sale from blanket agreement::
|
||||
|
||||
>>> create_sale = blanket_agreement.click('create_sale')
|
||||
>>> assertEqual(create_sale.form.lines[0].unit, gr)
|
||||
>>> create_sale.execute('create_sale')
|
||||
|
||||
>>> sale, = create_sale.actions[0]
|
||||
>>> line, = sale.lines
|
||||
>>> assertEqual(line.product, product)
|
||||
|
||||
>>> assertEqual(line.secondary_unit, gr)
|
||||
>>> line.secondary_quantity
|
||||
800.0
|
||||
>>> line.secondary_unit_price
|
||||
Decimal('9.0000')
|
||||
|
||||
>>> assertEqual(line.unit, unit)
|
||||
>>> line.quantity
|
||||
8.0
|
||||
>>> line.unit_price
|
||||
Decimal('900.0000')
|
||||
|
||||
>>> line.secondary_quantity = 300.0
|
||||
>>> sale.save()
|
||||
|
||||
>>> blanket_agreement.reload()
|
||||
>>> blanket_agreement_line, = blanket_agreement.lines
|
||||
>>> blanket_agreement_line.remaining_quantity
|
||||
800.0
|
||||
|
||||
Confirm sale::
|
||||
|
||||
>>> sale.click('quote')
|
||||
>>> sale.click('confirm')
|
||||
>>> sale.state
|
||||
'processing'
|
||||
|
||||
>>> blanket_agreement_line.reload()
|
||||
>>> blanket_agreement_line.remaining_quantity
|
||||
500.0
|
||||
@@ -0,0 +1,161 @@
|
||||
============================
|
||||
Sale Secondary Unit Scenario
|
||||
============================
|
||||
|
||||
Imports::
|
||||
|
||||
>>> from decimal import Decimal
|
||||
|
||||
>>> from proteus import Model
|
||||
>>> from trytond.modules.account.tests.tools import create_chart, get_accounts
|
||||
>>> from trytond.modules.company.tests.tools import create_company
|
||||
>>> from trytond.tests.tools import activate_modules, assertEqual
|
||||
|
||||
Activate modules::
|
||||
|
||||
>>> config = activate_modules([
|
||||
... 'sale_amendment',
|
||||
... 'sale_product_customer',
|
||||
... 'sale_secondary_unit',
|
||||
... 'account_invoice_secondary_unit',
|
||||
... 'stock_secondary_unit'],
|
||||
... create_company, create_chart)
|
||||
|
||||
Create chart of accounts::
|
||||
|
||||
>>> accounts = get_accounts()
|
||||
|
||||
Create customer::
|
||||
|
||||
>>> Party = Model.get('party.party')
|
||||
>>> customer = Party(name="Customer")
|
||||
>>> customer.save()
|
||||
|
||||
Create account categories::
|
||||
|
||||
>>> ProductCategory = Model.get('product.category')
|
||||
>>> account_category = ProductCategory(name="Account Category")
|
||||
>>> account_category.accounting = True
|
||||
>>> account_category.account_expense = accounts['expense']
|
||||
>>> account_category.account_revenue = accounts['revenue']
|
||||
>>> account_category.save()
|
||||
|
||||
Create product::
|
||||
|
||||
>>> ProductUom = Model.get('product.uom')
|
||||
>>> unit, = ProductUom.find([('name', '=', "Unit")])
|
||||
>>> gr, = ProductUom.find([('name', '=', "Gram")])
|
||||
>>> kg, = ProductUom.find([('name', '=', "Kilogram")])
|
||||
>>> ProductTemplate = Model.get('product.template')
|
||||
|
||||
>>> template = ProductTemplate()
|
||||
>>> template.name = 'product'
|
||||
>>> template.default_uom = unit
|
||||
>>> template.type = 'goods'
|
||||
>>> template.salable = True
|
||||
>>> template.sale_secondary_uom = gr
|
||||
>>> template.sale_secondary_uom_factor = 100
|
||||
>>> template.sale_secondary_uom_rate
|
||||
0.01
|
||||
>>> template.list_price = Decimal('10')
|
||||
>>> template.account_category = account_category
|
||||
>>> template.save()
|
||||
>>> product, = template.products
|
||||
>>> product_customer = product.product_customers.new()
|
||||
>>> product_customer.party = customer
|
||||
>>> product_customer.sale_secondary_uom = gr
|
||||
>>> product_customer.sale_secondary_uom_factor = 200
|
||||
>>> product_customer.sale_secondary_uom_rate
|
||||
0.005
|
||||
>>> product.save()
|
||||
|
||||
Sale product::
|
||||
|
||||
>>> Sale = Model.get('sale.sale')
|
||||
>>> sale = Sale()
|
||||
>>> sale.party = customer
|
||||
>>> line = sale.lines.new()
|
||||
>>> line.type = 'comment'
|
||||
>>> line.description = 'Comment'
|
||||
>>> line = sale.lines.new()
|
||||
>>> line.product = product
|
||||
>>> line.quantity = 10
|
||||
|
||||
Check secondary unit::
|
||||
|
||||
>>> assertEqual(line.secondary_unit, gr)
|
||||
>>> line.secondary_quantity
|
||||
2000.0
|
||||
>>> line.secondary_quantity = None
|
||||
>>> line.secondary_unit = kg
|
||||
>>> line.secondary_quantity
|
||||
2.0
|
||||
>>> line.secondary_unit_price
|
||||
Decimal('50.0000')
|
||||
>>> line.secondary_unit_price = Decimal('40')
|
||||
>>> line.unit_price
|
||||
Decimal('8.0000')
|
||||
>>> line.secondary_quantity = 1000
|
||||
>>> line.quantity
|
||||
5000.0
|
||||
>>> line.secondary_unit = gr
|
||||
>>> line.quantity
|
||||
5.0
|
||||
|
||||
Confirm sale::
|
||||
|
||||
>>> line.secondary_unit = kg
|
||||
>>> line.quantity = 10
|
||||
>>> sale.click('quote')
|
||||
>>> sale.click('confirm')
|
||||
>>> sale.invoice_state
|
||||
'pending'
|
||||
>>> sale.shipment_state
|
||||
'waiting'
|
||||
|
||||
Check secondary unit on invoice::
|
||||
|
||||
>>> invoice, = sale.invoices
|
||||
>>> line, = invoice.lines
|
||||
>>> assertEqual(line.secondary_unit, kg)
|
||||
>>> line.secondary_quantity
|
||||
2.0
|
||||
>>> line.secondary_unit_price
|
||||
Decimal('50.0000')
|
||||
|
||||
Check secondary unit on move::
|
||||
|
||||
>>> move, = sale.moves
|
||||
>>> assertEqual(move.secondary_unit, kg)
|
||||
>>> move.secondary_quantity
|
||||
2.0
|
||||
>>> move.secondary_unit_price
|
||||
Decimal('50.0000')
|
||||
|
||||
>>> shipment, = sale.shipments
|
||||
>>> move, = shipment.inventory_moves
|
||||
>>> assertEqual(move.secondary_unit, kg)
|
||||
>>> move.secondary_quantity
|
||||
2.0
|
||||
|
||||
Add an amendment::
|
||||
|
||||
>>> amendment = sale.amendments.new()
|
||||
>>> line = amendment.lines.new()
|
||||
>>> line.action = 'line'
|
||||
>>> line.line = sale.lines[-1]
|
||||
>>> line.quantity = 1
|
||||
>>> line.unit = kg
|
||||
>>> line.unit_price = Decimal('45.0000')
|
||||
>>> amendment.click('validate_amendment')
|
||||
|
||||
>>> sale.reload()
|
||||
>>> line = sale.lines[-1]
|
||||
>>> line.quantity
|
||||
5.0
|
||||
>>> line.secondary_quantity
|
||||
1.0
|
||||
>>> line.unit_price
|
||||
Decimal('9.0000')
|
||||
>>> line.secondary_unit_price
|
||||
Decimal('45.0000')
|
||||
15
modules/sale_secondary_unit/tests/test_module.py
Normal file
15
modules/sale_secondary_unit/tests/test_module.py
Normal file
@@ -0,0 +1,15 @@
|
||||
# This file is part of Tryton. The COPYRIGHT file at the top level of
|
||||
# this repository contains the full copyright notices and license terms.
|
||||
|
||||
from trytond.tests.test_tryton import ModuleTestCase
|
||||
|
||||
|
||||
class SaleSecondaryUnitTestCase(ModuleTestCase):
|
||||
'Test Sale Secondary Unit module'
|
||||
module = 'sale_secondary_unit'
|
||||
extras = [
|
||||
'account_invoice_secondary_unit', 'stock_secondary_unit',
|
||||
'sale_product_customer', 'sale_blanket_agreement']
|
||||
|
||||
|
||||
del ModuleTestCase
|
||||
8
modules/sale_secondary_unit/tests/test_scenario.py
Normal file
8
modules/sale_secondary_unit/tests/test_scenario.py
Normal file
@@ -0,0 +1,8 @@
|
||||
# This file is part of Tryton. The COPYRIGHT file at the top level of
|
||||
# this repository contains the full copyright notices and license terms.
|
||||
|
||||
from trytond.tests.test_tryton import load_doc_tests
|
||||
|
||||
|
||||
def load_tests(*args, **kwargs):
|
||||
return load_doc_tests(__name__, __file__, *args, **kwargs)
|
||||
Reference in New Issue
Block a user