[IMP]project_timesheet:implemented method for setting default values.

bzr revid: kbh@tinyerp.com-20121015072014-st4aavfgw4pve3ad
This commit is contained in:
Khushboo Bhatt (Open ERP) 2012-10-15 12:50:14 +05:30
parent 06ae4d8913
commit 7ca9a1294a
1 changed files with 21 additions and 32 deletions

View File

@ -272,6 +272,27 @@ res_partner()
class account_analytic_line(osv.osv):
_inherit = "account.analytic.line"
def _default_account_id(self, cr, uid, context=None):
proxy = self.pool.get('account.analytic.account')
record_ids = proxy.search(cr, uid, [('user_id', '=', uid)], context=context)
employee = proxy.browse(cr, uid, record_ids[0], context=context)
if employee:
return employee.id
return False
def _default_product(self, cr, uid, context=None):
proxy = self.pool.get('hr.employee')
record_ids = proxy.search(cr, uid, [('user_id', '=', uid)], context=context)
employee = proxy.browse(cr, uid, record_ids[0], context=context)
if employee.product_id:
return employee.product_id.id
return False
_defaults = {
'product_id': _default_product,
'account_id': _default_account_id
}
def on_change_account_id(self, cr, uid, ids, account_id):
res = {}
if not account_id:
@ -284,38 +305,6 @@ class account_analytic_line(osv.osv):
raise osv.except_osv(_('Invalid Analytic Account !'), _('You cannot select a Analytic Account which is in Close or Cancelled state.'))
return res
def _default_product(self, cr, uid, context=None):
proxy = self.pool.get('hr.employee')
record_ids = proxy.search(cr, uid, [('user_id', '=', uid)], context=context)
print "record_ids",record_ids
employee = proxy.browse(cr, uid, record_ids[0], context=context)
if employee.product_id:
return employee.product_id.id
return False
def _default_product_uom(self, cr, uid, context=None):
proxy = self.pool.get('hr.employee')
record_ids = proxy.search(cr, uid, [('user_id', '=', uid)], context=context)
print "record_ids",record_ids
employee = proxy.browse(cr, uid, record_ids[0], context=context)
if employee.product_id and employee.product_id.uom_id:
return employee.product_id.uom_id.id
return False
def _default_invoice(self, cr, uid, context=None):
proxy = self.pool.get('hr_timesheet_invoice.factor')
record_ids = proxy.search(cr, uid, [('customer_name', '=', '100%')], context=context)
invoice = proxy.browse(cr, uid, record_ids[0], context=context)
if invoice:
return invoice.id
return False
_defaults = {
'product_id': _default_product,
'product_uom_id': _default_product_uom,
'to_invoice': _default_invoice
}
account_analytic_line()
# vim:expandtab:smartindent:tabstop=4:softtabstop=4:shiftwidth=4: