Commit 798d65e0 authored by Aurel's avatar Aurel

defined reference onto currency

create base site without vault all the time


git-svn-id: https://svn.erp5.org/repos/public/erp5/trunk@13738 20353a03-c40f-0410-a6d1-a30d3c3de9de
parent 6feb40c9
......@@ -308,7 +308,7 @@ class TestERP5BankingMixin:
def createCurrency(self, id='EUR', title='Euro'):
# create the currency document for euro inside the currency module
currency = self.getCurrencyModule().newContent(id=id, title=title)
currency = self.getCurrencyModule().newContent(id=id, title=title, reference=id)
if id=='USD':
# Create an exchange line
exchange_line = currency.newContent(portal_type='Currency Exchange Line',
......@@ -591,6 +591,15 @@ class TestERP5BankingMixin:
for ss in ['encaisse_des_billets_a_ventiler_et_a_detruire', 'encaisse_des_billets_ventiles_et_detruits']:
s.newContent(id='%s' %(ss,), portal_type='Category', codification='', vault_type='site/caveau/%s' %(s.getId(),))
# Create other site now but without vault
if len(site_list) != 0:
if 'paris' not in site_list:
self.paris = self.testsite.newContent(id='paris', portal_type='Category', codification='P10', vault_type='site')
if 'madrid' not in site_list:
self.madrid = self.testsite.newContent(id='madrid', portal_type='Category', codification='S10', vault_type='site')
if 'siege' not in site_list:
self.siege = self.testsite.newContent(id='siege', portal_type='Category', codification='HQ1', vault_type='site')
def openCounterDate(self, date=None, site=None,id='counter_date_1',open=1):
"""
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment