Odoo18-Base/addons/hr_presence/models/res_users_log.py

11 lines
215 B
Python
Raw Permalink Normal View History

2025-03-10 11:12:23 +07:00
# -*- coding: utf-8 -*-
from odoo import api, fields, models
class ResUsersLog(models.Model):
_inherit = 'res.users.log'
create_uid = fields.Integer(index=True)
ip = fields.Char(string="IP Address")