mirror of
https://github.com/bringout/oca-ocb-core.git
synced 2026-04-21 18:12:02 +02:00
Initial commit: Core packages
This commit is contained in:
commit
12c29a983b
9512 changed files with 8379910 additions and 0 deletions
27
odoo-bringout-oca-ocb-resource/resource/models/res_users.py
Normal file
27
odoo-bringout-oca-ocb-resource/resource/models/res_users.py
Normal file
|
|
@ -0,0 +1,27 @@
|
|||
# -*- coding: utf-8 -*-
|
||||
# Part of Odoo. See LICENSE file for full copyright and licensing details.
|
||||
|
||||
from odoo import fields, models
|
||||
|
||||
|
||||
class ResUsers(models.Model):
|
||||
_inherit = 'res.users'
|
||||
|
||||
resource_ids = fields.One2many(
|
||||
'resource.resource', 'user_id', 'Resources')
|
||||
resource_calendar_id = fields.Many2one(
|
||||
'resource.calendar', 'Default Working Hours',
|
||||
related='resource_ids.calendar_id', readonly=False)
|
||||
|
||||
def write(self, vals):
|
||||
rslt = super().write(vals)
|
||||
|
||||
# If the timezone of the admin user gets set on their first login, also update the timezone of the default working calendar
|
||||
if (vals.get('tz') and len(self) == 1 and not self.env.user.login_date
|
||||
and self.env.user == self.env.ref('base.user_admin', False) and self == self.env.user):
|
||||
if self.resource_calendar_id:
|
||||
self.resource_calendar_id.tz = vals['tz']
|
||||
else:
|
||||
self.env.ref('resource.resource_calendar_std', False).tz = vals['tz']
|
||||
|
||||
return rslt
|
||||
Loading…
Add table
Add a link
Reference in a new issue