Initial commit: Odoo 18.0-20251222 extra-addons
Some checks failed
pre-commit / pre-commit (push) Has been cancelled
tests / Detect unreleased dependencies (push) Has been cancelled
tests / test with OCB (push) Has been cancelled
tests / test with Odoo (push) Has been cancelled

This commit is contained in:
tocmo0nlord
2026-03-13 20:43:25 +00:00
parent 36e847a7df
commit adbe430761
9472 changed files with 1265727 additions and 0 deletions

View File

@@ -0,0 +1,6 @@
id,name,model_id:id,group_id:id,perm_read,perm_write,perm_create,perm_unlink
access_account_cash_deposit_user,Full rights on account.cash.deposit to Accountant,model_account_cash_deposit,account.group_account_user,1,1,1,1
access_account_cash_deposit_line_user,Full rights on account.cash.deposit.line to Accountant,model_account_cash_deposit_line,account.group_account_user,1,1,1,1
access_account_cash_order_reception,Full rights on account.cash.order.reception wizard,model_account_cash_order_reception,account.group_account_user,1,1,1,1
cash_unit_read,Read rights on cash.unit to employee,model_cash_unit,base.group_user,1,0,0,0
cash_unit_full,Full rights on cash.unit to System group,model_cash_unit,base.group_system,1,1,1,1
1 id name model_id:id group_id:id perm_read perm_write perm_create perm_unlink
2 access_account_cash_deposit_user Full rights on account.cash.deposit to Accountant model_account_cash_deposit account.group_account_user 1 1 1 1
3 access_account_cash_deposit_line_user Full rights on account.cash.deposit.line to Accountant model_account_cash_deposit_line account.group_account_user 1 1 1 1
4 access_account_cash_order_reception Full rights on account.cash.order.reception wizard model_account_cash_order_reception account.group_account_user 1 1 1 1
5 cash_unit_read Read rights on cash.unit to employee model_cash_unit base.group_user 1 0 0 0
6 cash_unit_full Full rights on cash.unit to System group model_cash_unit base.group_system 1 1 1 1

View File

@@ -0,0 +1,13 @@
<?xml version="1.0" encoding="utf-8" ?>
<!--
Copyright 2022 Akretion France (http://www.akretion.com/)
@author Alexis de Lattre <alexis.delattre@akretion.com>
License AGPL-3.0 or later (https://www.gnu.org/licenses/agpl)
-->
<odoo noupdate="1">
<record id="cash_deposit_rule" model="ir.rule">
<field name="name">Cash Deposit multi-company</field>
<field name="model_id" ref="model_account_cash_deposit" />
<field name="domain_force">[('company_id', 'in', company_ids)]</field>
</record>
</odoo>