Initial commit: OCA Mrp packages (117 packages)

This commit is contained in:
Ernad Husremovic 2025-08-29 15:43:05 +02:00
commit 277e84fd7a
4403 changed files with 395154 additions and 0 deletions

View file

@ -0,0 +1,18 @@
<?xml version="1.0" encoding="utf-8" ?>
<!--
License AGPL-3.0 or later (https://www.gnu.org/licenses/agpl).
-->
<odoo noupdate="1">
<record model="ir.rule" id="timesheet_sheet_comp_rule">
<field name="name">Timesheet sheet multi-company</field>
<field
name="model_id"
search="[('model','=','hr_timesheet.sheet')]"
model="ir.model"
/>
<field name="global" eval="True" />
<field
name="domain_force"
>['|',('company_id','=',False),('company_id','in',company_ids)]</field>
</record>
</odoo>

View file

@ -0,0 +1,4 @@
id,name,model_id:id,group_id:id,perm_read,perm_write,perm_create,perm_unlink
access_hr_timesheet_sheet_user,hr_timesheet.sheet,model_hr_timesheet_sheet,base.group_user,1,1,1,1
access_hr_timesheet_sheet_line,hr_timesheet.sheet.line,model_hr_timesheet_sheet_line,hr_timesheet.group_hr_timesheet_user,1,1,1,1
access_hr_timesheet_sheet_new_analytic_line,hr_timesheet.sheet.new.analyticline,model_hr_timesheet_sheet_new_analytic_line,hr_timesheet.group_hr_timesheet_user,1,1,1,1
1 id name model_id:id group_id:id perm_read perm_write perm_create perm_unlink
2 access_hr_timesheet_sheet_user hr_timesheet.sheet model_hr_timesheet_sheet base.group_user 1 1 1 1
3 access_hr_timesheet_sheet_line hr_timesheet.sheet.line model_hr_timesheet_sheet_line hr_timesheet.group_hr_timesheet_user 1 1 1 1
4 access_hr_timesheet_sheet_new_analytic_line hr_timesheet.sheet.new.analyticline model_hr_timesheet_sheet_new_analytic_line hr_timesheet.group_hr_timesheet_user 1 1 1 1