Initial commit: OCA Technical packages (595 packages)

This commit is contained in:
Ernad Husremovic 2025-08-29 15:43:03 +02:00
commit 2cc02aac6e
24950 changed files with 2318079 additions and 0 deletions

View file

@ -0,0 +1,10 @@
"id","name","model_id:id","group_id:id","perm_read","perm_write","perm_create","perm_unlink"
"access_mgmtsystem_action_viewer","mgmtsystem.action.user.viewer","model_mgmtsystem_action","mgmtsystem.group_mgmtsystem_viewer",1,0,0,0
"access_mgmtsystem_action_user","mgmtsystem.action.user.user","model_mgmtsystem_action","mgmtsystem.group_mgmtsystem_user",1,1,1,0
"access_mgmtsystem_action_auditor","mgmtsystem.action.user.auditor","model_mgmtsystem_action","mgmtsystem.group_mgmtsystem_auditor",1,0,0,0
"access_mgmtsystem_action_manager","mgmtsystem.action.user.manager","model_mgmtsystem_action","mgmtsystem.group_mgmtsystem_manager",1,1,1,0
"access_mgmtsystem_action_stage_user","access_mgmtsystem_action_stage_user","model_mgmtsystem_action_stage","mgmtsystem.group_mgmtsystem_user",1,0,0,0
"access_mgmtsystem_action_stage_manager","access_mgmtsystem_action_stage_manager","model_mgmtsystem_action_stage","mgmtsystem.group_mgmtsystem_manager",1,1,1,1
"access_mgmtsystem_action_tag_user","access_mgmtsystem_action_tag_user","model_mgmtsystem_action_tag","mgmtsystem.group_mgmtsystem_user",1,0,0,0
"access_mgmtsystem_action_tag_manager","access_mgmtsystem_action_tag_manager","model_mgmtsystem_action_tag","mgmtsystem.group_mgmtsystem_manager",1,1,1,1
"access_mgmtsystem_action_report","access_mgmtsystem_action_report","model_mgmtsystem_action_report","mgmtsystem.group_mgmtsystem_user",1,0,0,0
1 id name model_id:id group_id:id perm_read perm_write perm_create perm_unlink
2 access_mgmtsystem_action_viewer mgmtsystem.action.user.viewer model_mgmtsystem_action mgmtsystem.group_mgmtsystem_viewer 1 0 0 0
3 access_mgmtsystem_action_user mgmtsystem.action.user.user model_mgmtsystem_action mgmtsystem.group_mgmtsystem_user 1 1 1 0
4 access_mgmtsystem_action_auditor mgmtsystem.action.user.auditor model_mgmtsystem_action mgmtsystem.group_mgmtsystem_auditor 1 0 0 0
5 access_mgmtsystem_action_manager mgmtsystem.action.user.manager model_mgmtsystem_action mgmtsystem.group_mgmtsystem_manager 1 1 1 0
6 access_mgmtsystem_action_stage_user access_mgmtsystem_action_stage_user model_mgmtsystem_action_stage mgmtsystem.group_mgmtsystem_user 1 0 0 0
7 access_mgmtsystem_action_stage_manager access_mgmtsystem_action_stage_manager model_mgmtsystem_action_stage mgmtsystem.group_mgmtsystem_manager 1 1 1 1
8 access_mgmtsystem_action_tag_user access_mgmtsystem_action_tag_user model_mgmtsystem_action_tag mgmtsystem.group_mgmtsystem_user 1 0 0 0
9 access_mgmtsystem_action_tag_manager access_mgmtsystem_action_tag_manager model_mgmtsystem_action_tag mgmtsystem.group_mgmtsystem_manager 1 1 1 1
10 access_mgmtsystem_action_report access_mgmtsystem_action_report model_mgmtsystem_action_report mgmtsystem.group_mgmtsystem_user 1 0 0 0

View file

@ -0,0 +1,13 @@
<?xml version="1.0" encoding="utf-8" ?>
<odoo noupdate="1">
<!-- Rule -->
<record model="ir.rule" id="mgmtsystem_action_rule">
<field name="name">mgmtsystem_action multi-company</field>
<field name="model_id" ref="model_mgmtsystem_action" />
<field name="global" eval="True" />
<field
name="domain_force"
>['|', ('company_id', '=', False), ('company_id', 'in', company_ids)]</field>
</record>
</odoo>