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_audit_user","mgmtsystem.audit.user","model_mgmtsystem_audit","mgmtsystem.group_mgmtsystem_user",1,0,0,0
"access_mgmtsystem_audit_viewer","mgmtsystem.audit.viewer","model_mgmtsystem_audit","mgmtsystem.group_mgmtsystem_viewer",1,0,0,0
"access_mgmtsystem_audit_auditor","mgmtsystem.audit.auditor","model_mgmtsystem_audit","mgmtsystem.group_mgmtsystem_auditor",1,1,0,0
"access_mgmtsystem_audit_manager","mgmtsystem.audit.manager","model_mgmtsystem_audit","mgmtsystem.group_mgmtsystem_manager",1,1,1,0
"access_mgmtsystem_verification_line_user","mgmtsystem.verification.line.user","model_mgmtsystem_verification_line","mgmtsystem.group_mgmtsystem_user",1,0,0,0
"access_mgmtsystem_verification_line_viewer","mgmtsystem.verification.line.viewer","model_mgmtsystem_verification_line","mgmtsystem.group_mgmtsystem_viewer",1,0,0,0
"access_mgmtsystem_verification_line_auditor","mgmtsystem.verification.line.auditor","model_mgmtsystem_verification_line","mgmtsystem.group_mgmtsystem_auditor",1,1,1,1
"access_mgmtsystem_verification_line_manager","mgmtsystem.verification.line.manager","model_mgmtsystem_verification_line","mgmtsystem.group_mgmtsystem_manager",1,1,1,1
access_copy_verification_lines_manager,copy.verification.lines.manager,model_copy_verification_lines,"mgmtsystem.group_mgmtsystem_auditor",1,1,1,1
1 id name model_id:id group_id:id perm_read perm_write perm_create perm_unlink
2 access_mgmtsystem_audit_user mgmtsystem.audit.user model_mgmtsystem_audit mgmtsystem.group_mgmtsystem_user 1 0 0 0
3 access_mgmtsystem_audit_viewer mgmtsystem.audit.viewer model_mgmtsystem_audit mgmtsystem.group_mgmtsystem_viewer 1 0 0 0
4 access_mgmtsystem_audit_auditor mgmtsystem.audit.auditor model_mgmtsystem_audit mgmtsystem.group_mgmtsystem_auditor 1 1 0 0
5 access_mgmtsystem_audit_manager mgmtsystem.audit.manager model_mgmtsystem_audit mgmtsystem.group_mgmtsystem_manager 1 1 1 0
6 access_mgmtsystem_verification_line_user mgmtsystem.verification.line.user model_mgmtsystem_verification_line mgmtsystem.group_mgmtsystem_user 1 0 0 0
7 access_mgmtsystem_verification_line_viewer mgmtsystem.verification.line.viewer model_mgmtsystem_verification_line mgmtsystem.group_mgmtsystem_viewer 1 0 0 0
8 access_mgmtsystem_verification_line_auditor mgmtsystem.verification.line.auditor model_mgmtsystem_verification_line mgmtsystem.group_mgmtsystem_auditor 1 1 1 1
9 access_mgmtsystem_verification_line_manager mgmtsystem.verification.line.manager model_mgmtsystem_verification_line mgmtsystem.group_mgmtsystem_manager 1 1 1 1
10 access_copy_verification_lines_manager copy.verification.lines.manager model_copy_verification_lines mgmtsystem.group_mgmtsystem_auditor 1 1 1 1

View file

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