[FIX] account : accout/configration/miscellanious/recurring models add default value to the company_id

bzr revid: vth@tinyerp.com-20101019054851-cqupju2q8vgeil9n
This commit is contained in:
vth 2010-10-19 11:18:51 +05:30
parent b7eb35f515
commit 69549b1571
1 changed files with 2 additions and 1 deletions

View File

@ -458,7 +458,7 @@ class account_account(osv.osv):
ids = self.search(cr, user, [('name', operator, name)]+ args, limit=limit)
if not ids and len(name.split()) >= 2:
#Separating code and name of account for searching
operand1,operand2 = name.split(' ',1) #name can contain spaces e.g. OpenERP S.A.
operand1,operand2 = name.split(' ',1) #name can contain spaces e.g. OpenERP S.A.
ids = self.search(cr, user, [('code', operator, operand1), ('name', operator, operand2)]+ args, limit=limit)
else:
ids = self.search(cr, user, args, context=context, limit=limit)
@ -2025,6 +2025,7 @@ class account_model(osv.osv):
_defaults = {
'legend': lambda self, cr, uid, context:_('You can specify year, month and date in the name of the model using the following labels:\n\n%(year)s: To Specify Year \n%(month)s: To Specify Month \n%(date)s: Current Date\n\ne.g. My model on %(date)s'),
'company_id': lambda self,cr,uid,c: self.pool.get('res.company')._company_default_get(cr, uid, 'account.model', context=c),
}
def generate(self, cr, uid, ids, datas={}, context=None):
move_ids = []