mirror of
https://github.com/bringout/oca-ocb-hr.git
synced 2026-04-25 02:12:08 +02:00
Initial commit: Hr packages
This commit is contained in:
commit
62531cd146
2820 changed files with 1432848 additions and 0 deletions
51
odoo-bringout-oca-ocb-hr_timesheet/hr_timesheet/__init__.py
Normal file
51
odoo-bringout-oca-ocb-hr_timesheet/hr_timesheet/__init__.py
Normal file
|
|
@ -0,0 +1,51 @@
|
|||
# -*- coding: utf-8 -*-
|
||||
# Part of Odoo. See LICENSE file for full copyright and licensing details.
|
||||
|
||||
from . import controllers
|
||||
from . import models
|
||||
from . import report
|
||||
|
||||
from odoo import api, fields, SUPERUSER_ID, _
|
||||
|
||||
from odoo.addons.project import _check_exists_collaborators_for_project_sharing
|
||||
|
||||
|
||||
def create_internal_project(cr, registry):
|
||||
env = api.Environment(cr, SUPERUSER_ID, {})
|
||||
|
||||
# allow_timesheets is set by default, but erased for existing projects at
|
||||
# installation, as there is no analytic account for them.
|
||||
env['project.project'].search([]).write({'allow_timesheets': True})
|
||||
|
||||
admin = env.ref('base.user_admin', raise_if_not_found=False)
|
||||
if not admin:
|
||||
return
|
||||
project_ids = env['res.company'].search([])._create_internal_project_task()
|
||||
env['account.analytic.line'].create([{
|
||||
'name': _("Analysis"),
|
||||
'user_id': admin.id,
|
||||
'date': fields.datetime.today(),
|
||||
'unit_amount': 0,
|
||||
'project_id': task.project_id.id,
|
||||
'task_id': task.id,
|
||||
} for task in project_ids.task_ids.filtered(lambda t: t.company_id in admin.employee_ids.company_id)])
|
||||
|
||||
_check_exists_collaborators_for_project_sharing(env)
|
||||
|
||||
def _uninstall_hook(cr, registry):
|
||||
env = api.Environment(cr, SUPERUSER_ID, {})
|
||||
|
||||
def update_action_window(xmlid):
|
||||
act_window = env.ref(xmlid, raise_if_not_found=False)
|
||||
if act_window and act_window.domain and 'is_internal_project' in act_window.domain:
|
||||
act_window.domain = []
|
||||
|
||||
update_action_window('project.open_view_project_all')
|
||||
update_action_window('project.open_view_project_all_group_stage')
|
||||
|
||||
# archive the internal projects
|
||||
project_ids = env['res.company'].search([('internal_project_id', '!=', False)]).mapped('internal_project_id')
|
||||
if project_ids:
|
||||
project_ids.write({'active': False})
|
||||
|
||||
env['ir.model.data'].search([('name', 'ilike', 'internal_project_default_stage')]).unlink()
|
||||
Loading…
Add table
Add a link
Reference in a new issue