[IMP] account: configuration chart - change the internal type of new generated cash and bank account in to Liquidity type.

bzr revid: vra@tinyerp.com-20100915052335-7hftw69dmu8gvbrd
This commit is contained in:
vra 2010-09-15 10:53:35 +05:30
parent 75a2c7dbf6
commit e195be20f7
2 changed files with 3 additions and 3 deletions

View File

@ -187,8 +187,8 @@
<field name="code">1104</field>
<field name="name">Bank Current Account</field>
<field ref="conf_cas" name="parent_id"/>
<field name="type">other</field>
<field name="user_type" ref="conf_account_type_bnk"/>
<field name="type">view</field>
<field name="user_type" ref="account_type_asset_view1"/>
</record>
<record id="conf_cli" model="account.account.template">

View File

@ -266,7 +266,7 @@ class account_installer(osv.osv_memory):
vals_bnk = {'name': val.acc_name or '',
'currency_id': val.currency_id.id or False,
'code': str(110400 + code_cnt),
'type': 'other',
'type': 'liquidity',
'user_type': type,
'parent_id':new_account,
'company_id': company_id.id }