AttributeError:'bool'对象没有属性'id'
问题描述:
我想问。当我做一个数据库查询AttributeError:'bool'对象没有属性'id'
def onchange_dept_from(self, cr, uid, ids, partner):
print partner
if partner != False:
# note
cr.execute('select z.name, z.id from res_partner x, account_account z where x.property_deposit_receivable = z.id AND x.id=%s',(partner,)),
temp = cr.fetchone()
name = temp and temp[0] or None
cr.execute('select z.name, z.id from res_partner x, account_account z where x.property_deposit_payable = z.id AND x.id=%s',(partner,)),
ads = cr.fetchone()
name2 = ads and ads[0] or None
val = {
'dept_from':name,
'dept_to':name2,
}
return {'value':val }
的“ID”的可能性,我得到的错误冲突从我用来进入account.move
def get_move_line(self, cr, uid, deposit, type, context=None):
return {
'type': type,
'name': deposit.name or 'add',
'debit': type == 'dest' and deposit.amount or 0.0,
'credit': type == 'src' and deposit.amount or 0.0,
'account_id': type == 'src' and deposit.dept_from.id or deposit.dept_to.id,
'date': deposit.date,
'deposit_id': deposit.id
}
我想大概函数来了因为当时我不得不查询字符串,而函数get_move。我正在寻找一个整数。我该怎么办?我没有想法。请帮我
答
我已经解决了这个问题。我只是添加查询搜索ID。
def get_move_line(self, cr, uid, deposit, type, context=None):
cr.execute('select b.property_deposit_payable, b.property_deposit_receivable from deposit_travel a, res_partner b where a.partner = b.id and b.id = %s',(deposit.partner.id,)),
tmp = cr.fetchone()
dep_pay = tmp and tmp[0] or None
dep_rec = tmp and tmp[1] or None
return {
'type': type,
'name': deposit.name or 'add',
'debit': type == 'dest' and deposit.amount or 0.0,
'credit': type == 'src' and deposit.amount or 0.0,
'account_id': type == 'src' and dep_pay or dep_rec,
'date': deposit.date,
'deposit_id': deposit.id
发布您的追踪以显示错误的位置。 – 2012-08-03 08:58:14