177 lines
4.2 KiB
ReStructuredText
177 lines
4.2 KiB
ReStructuredText
=========================
|
|
Sale Opportunity Scenario
|
|
=========================
|
|
|
|
Imports::
|
|
|
|
>>> from decimal import Decimal
|
|
|
|
>>> from proteus import Model
|
|
>>> from trytond.modules.account.tests.tools import (
|
|
... create_chart, create_tax, get_accounts)
|
|
>>> from trytond.modules.account_invoice.tests.tools import create_payment_term
|
|
>>> from trytond.modules.company.tests.tools import create_company
|
|
>>> from trytond.tests.tools import activate_modules, assertEqual
|
|
|
|
Activate modules::
|
|
|
|
>>> config = activate_modules('sale_opportunity', create_company, create_chart)
|
|
|
|
>>> Sale = Model.get('sale.sale')
|
|
>>> Employee = Model.get('company.employee')
|
|
>>> Party = Model.get('party.party')
|
|
|
|
Create employee::
|
|
|
|
>>> employee_party = Party(name="Employee")
|
|
>>> employee_party.save()
|
|
>>> employee = Employee(party=employee_party)
|
|
>>> employee.save()
|
|
|
|
Get accounts::
|
|
|
|
>>> accounts = get_accounts()
|
|
>>> revenue = accounts['revenue']
|
|
|
|
Create tax::
|
|
|
|
>>> tax = create_tax(Decimal('.10'))
|
|
>>> tax.save()
|
|
|
|
Create party::
|
|
|
|
>>> Party = Model.get('party.party')
|
|
>>> customer = Party(name='Customer')
|
|
>>> customer.save()
|
|
|
|
Create account category::
|
|
|
|
>>> ProductCategory = Model.get('product.category')
|
|
>>> account_category = ProductCategory(name="Account Category")
|
|
>>> account_category.accounting = True
|
|
>>> account_category.account_revenue = revenue
|
|
>>> account_category.customer_taxes.append(tax)
|
|
>>> account_category.save()
|
|
|
|
Create product::
|
|
|
|
>>> ProductUom = Model.get('product.uom')
|
|
>>> unit, = ProductUom.find([('name', '=', 'Unit')])
|
|
>>> ProductTemplate = Model.get('product.template')
|
|
|
|
>>> template = ProductTemplate()
|
|
>>> template.name = 'product'
|
|
>>> template.default_uom = unit
|
|
>>> template.type = 'goods'
|
|
>>> template.salable = True
|
|
>>> template.list_price = Decimal('10')
|
|
>>> template.account_category = account_category
|
|
>>> template.save()
|
|
>>> product, = template.products
|
|
|
|
Create payment term::
|
|
|
|
>>> payment_term = create_payment_term()
|
|
>>> payment_term.save()
|
|
|
|
Create an lead::
|
|
|
|
>>> Opportunity = Model.get('sale.opportunity')
|
|
>>> opportunity = Opportunity()
|
|
>>> opportunity.description = 'Opportunity'
|
|
>>> opportunity.save()
|
|
>>> opportunity.state
|
|
'lead'
|
|
|
|
Convert to opportunity::
|
|
|
|
>>> opportunity.party = customer
|
|
>>> opportunity.address, = customer.addresses
|
|
>>> opportunity.payment_term = payment_term
|
|
>>> opportunity.amount = Decimal(100)
|
|
>>> opportunity.employee = employee
|
|
>>> opportunity.click('opportunity')
|
|
>>> opportunity.state
|
|
'opportunity'
|
|
|
|
Add a line::
|
|
|
|
>>> line = opportunity.lines.new()
|
|
>>> line.product = product
|
|
>>> line.quantity = 10
|
|
>>> opportunity.save()
|
|
|
|
Convert to sale::
|
|
|
|
>>> sale, = opportunity.click('convert')
|
|
>>> opportunity.state
|
|
'converted'
|
|
>>> assertEqual(sale.origin, opportunity)
|
|
|
|
Find the sale::
|
|
|
|
>>> line, = sale.lines
|
|
>>> assertEqual(line.product, product)
|
|
>>> line.quantity
|
|
10.0
|
|
>>> assertEqual(line.taxes, [tax])
|
|
|
|
Quote different quantity::
|
|
|
|
>>> line.quantity = 9
|
|
>>> sale.click('quote')
|
|
|
|
Check opportunity amount updated::
|
|
|
|
>>> opportunity.reload()
|
|
>>> opportunity.amount
|
|
Decimal('90.00')
|
|
>>> opportunity.state
|
|
'converted'
|
|
|
|
Add a second quotation::
|
|
|
|
>>> second_sale = Sale()
|
|
>>> second_sale.origin = opportunity
|
|
>>> second_sale.party = customer
|
|
>>> second_sale.payment_term = payment_term
|
|
>>> line = second_sale.lines.new()
|
|
>>> line.product = product
|
|
>>> line.quantity = 1
|
|
>>> second_sale.click('quote')
|
|
|
|
Check opportunity amount updated::
|
|
|
|
>>> opportunity.reload()
|
|
>>> opportunity.amount
|
|
Decimal('100.00')
|
|
>>> opportunity.state
|
|
'converted'
|
|
|
|
Cancel second quotation::
|
|
|
|
>>> second_sale.click('cancel')
|
|
>>> second_sale.state
|
|
'cancelled'
|
|
|
|
Check opportunity amount updated::
|
|
|
|
>>> opportunity.reload()
|
|
>>> opportunity.amount
|
|
Decimal('90.00')
|
|
>>> opportunity.state
|
|
'converted'
|
|
|
|
Won opportunity::
|
|
|
|
>>> sale.click('confirm')
|
|
>>> opportunity.reload()
|
|
>>> opportunity.state
|
|
'won'
|
|
|
|
Check opportunity state updated::
|
|
|
|
>>> opportunity.reload()
|
|
>>> opportunity.state
|
|
'won'
|