Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
A
Alternate Ledger
Manage
Activity
Members
Labels
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Package Registry
Model registry
Operate
Terraform modules
Analyze
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
XCG
Odoo modules
Alternate Ledger
Commits
872c914a
Commit
872c914a
authored
1 year ago
by
arthur.mayer
Browse files
Options
Downloads
Patches
Plain Diff
fix : remove old CDATA, openerp
parent
e29295f1
No related branches found
Branches containing commit
Tags
16.0.1.0.3
Tags containing commit
1 merge request
!15
fix : remove old CDATA, openerp
Pipeline
#65678
passed
1 year ago
Stage: build
Stage: test
Stage: doc
Stage: deploy
Changes
2
Pipelines
3
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
__manifest__.py
+1
-1
1 addition, 1 deletion
__manifest__.py
security/security.xml
+19
-23
19 additions, 23 deletions
security/security.xml
with
20 additions
and
24 deletions
__manifest__.py
+
1
−
1
View file @
872c914a
...
...
@@ -19,7 +19,7 @@
##############################################################################
{
"
name
"
:
"
Alternate Ledger
"
,
"
version
"
:
"
16.0.1.0.
2
"
,
"
version
"
:
"
16.0.1.0.
3
"
,
"
author
"
:
"
XCG Consulting
"
,
"
category
"
:
"
Accounting
"
,
"
summary
"
:
"""
Allow the creation of new accounting ledgers that store
...
...
This diff is collapsed.
Click to expand it.
security/security.xml
+
19
−
23
View file @
872c914a
<?xml version="1.0" encoding="utf-8" ?>
<openerp>
<data
noupdate=
"1"
>
<!-- Copy rules from the "account" package but rename them to our models. -->
<odoo
noupdate=
"1"
>
<!-- Copy rules from the "account" package but rename them to our models. -->
...
...
@@ -5,11 +4,10 @@
<record
id=
"alternate_ledger_move_comp_rule"
model=
"ir.rule"
>
<field
name=
"domain_force"
>
<![CDATA[
['|', ('company_id','=',False), ('company_id', 'child_of', [user.company_id.id])]
]]>
</field>
<field
name=
"model_id"
ref=
"model_alternate_ledger_move"
/>
<field
name=
"name"
>
Account Entry (Alternate Ledger)
</field>
</record>
<record
id=
"alternate_ledger_move_comp_rule"
model=
"ir.rule"
>
<field
name=
"domain_force"
>
['|',('company_id','=',False),('company_id', 'in',
company_ids)]
</field>
<field
name=
"model_id"
ref=
"model_alternate_ledger_move"
/>
<field
name=
"name"
>
Account Entry (Alternate Ledger)
</field>
</record>
...
...
@@ -15,12 +13,10 @@
<record
id=
"alternate_ledger_move_line_comp_rule"
model=
"ir.rule"
>
<field
name=
"domain_force"
>
<![CDATA[
['|', ('company_id', '=', False), ('company_id', 'child_of', [user.company_id.id])]
]]>
</field>
<field
name=
"model_id"
ref=
"model_alternate_ledger_move_line"
/>
<field
name=
"name"
>
Entry lines (Alternate Ledger)
</field>
</record>
</data>
</openerp>
<record
id=
"alternate_ledger_move_line_comp_rule"
model=
"ir.rule"
>
<field
name=
"domain_force"
>
['|',('company_id','=',False),('company_id', 'in',
company_ids)]
</field>
<field
name=
"model_id"
ref=
"model_alternate_ledger_move_line"
/>
<field
name=
"name"
>
Entry lines (Alternate Ledger)
</field>
</record>
</odoo>
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment