Update scenario to version 4.0

This commit is contained in:
Jes?s Mart?n Jim?nez 2016-07-12 13:31:06 +02:00
parent 1301345078
commit 59e99cc173

View file

@ -12,6 +12,8 @@ Imports::
>>> from dateutil.relativedelta import relativedelta
>>> from decimal import Decimal
>>> from proteus import config, Model, Wizard
>>> from trytond.modules.company.tests.tools import create_company, \
... get_company
>>> today = datetime.date.today()
>>> yesterday = today - relativedelta(days=1)
@ -20,47 +22,22 @@ Create database::
>>> config = config.set_trytond()
>>> config.pool.test = True
Install stock Module::
Install stock_external_reception Module::
>>> Module = Model.get('ir.module.module')
>>> Module = Model.get('ir.module')
>>> modules = Module.find([('name', '=', 'stock_external_reception')])
>>> Module.install([x.id for x in modules], config.context)
>>> Wizard('ir.module.module.install_upgrade').execute('upgrade')
>>> Wizard('ir.module.install_upgrade').execute('upgrade')
Create company::
>>> Currency = Model.get('currency.currency')
>>> CurrencyRate = Model.get('currency.currency.rate')
>>> Company = Model.get('company.company')
>>> Party = Model.get('party.party')
>>> company_config = Wizard('company.company.config')
>>> company_config.execute('company')
>>> company = company_config.form
>>> party = Party(name='OPENLABS')
>>> party.save()
>>> company.party = party
>>> currencies = Currency.find([('code', '=', 'EUR')])
>>> if not currencies:
... currency = Currency(name='Euro', symbol=u'€', code='EUR',
... rounding=Decimal('0.01'), mon_grouping='[3, 3, 0]',
... mon_decimal_point=',')
... currency.save()
... CurrencyRate(date=today + relativedelta(month=1, day=1),
... rate=Decimal('1.0'), currency=currency).save()
... else:
... currency, = currencies
>>> company.currency = currency
>>> company_config.execute('add')
>>> company, = Company.find()
Reload the context::
>>> User = Model.get('res.user')
>>> Group = Model.get('res.group')
>>> config._context = User.get_preferences(True, config.context)
>>> _ = create_company()
>>> company = get_company()
Create stock user::
>>> User = Model.get('res.user')
>>> Group = Model.get('res.group')
>>> stock_user = User()
>>> stock_user.name = 'Stock'
>>> stock_user.login = 'stock'
@ -154,7 +131,7 @@ Create external shipment from received products::
True
>>> move.uom == unit
True
>>> move.from_location == party.customer_location
>>> move.from_location == customer.customer_location
True
>>> move.to_location == storage_loc
True