跳至內容
選單
此問題已被標幟
1 回覆
4225 瀏覽次數

I'm getting this error when I try this :

att_obj = self.pool.get('hr.attendance')
att_id = att_obj.search(cr, uid, [('employee_id', '=', employee_id),('day', '=', time.strftime('%Y-%m-%d'))], limit=1, order='name desc')


頭像
捨棄
最佳答案

Hi,

This message alert you that field day is not defined in model hr.attendance.

class hr_attendance(osv.osv):
_name = "hr.attendance" _description = "Attendance"
_columns = {
        'name': fields.datetime('Date', required=True, select=1),
        'action': fields.selection([('sign_in', 'Sign In'), ('sign_out', 'Sign Out'), ('action','Action')], 'Action', required=True),
        'action_desc': fields.many2one("hr.action.reason", "Action Reason", domain="[('action_type', '=', action)]", help='Specifies the reason for Signing In/Signing Out in case of extra hours.'),
        'employee_id': fields.many2one('hr.employee', "Employee", required=True, select=True),
        'worked_hours': fields.function(_worked_hours_compute, type='float', string='Worked Hours', store=True), }

So, try this instead:

att_obj = self.pool.get('hr.attendance')
att_id = att_obj.search(cr, uid, [('employee_id', '=', employee_id),('name', '=', time.strftime('%Y-%m-%d'))], limit=1, order='name desc')

Best regards



頭像
捨棄
作者

Thanks it works, I saw the field day in the model hr.attendance in Configuration->Database Structure -> Models

相關帖文 回覆 瀏覽次數 活動
1
8月 15
7429
0
3月 15
3037
1
3月 15
5712
0
3月 15
4259
0
10月 23
1576