Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
E
erp5_rtl_support
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
Romain Courteaud
erp5_rtl_support
Commits
0145cd27
Commit
0145cd27
authored
Feb 17, 2014
by
Jérome Perrin
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
General Ledger: support cases where accounts miss a mirror section or a payment
parent
88519d71
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
5 additions
and
5 deletions
+5
-5
bt5/erp5_accounting/SkinTemplateItem/portal_skins/erp5_accounting/AccountModule_getGeneralLedgerReportSectionList.xml
...nting/AccountModule_getGeneralLedgerReportSectionList.xml
+4
-4
bt5/erp5_accounting/bt/revision
bt5/erp5_accounting/bt/revision
+1
-1
No files found.
bt5/erp5_accounting/SkinTemplateItem/portal_skins/erp5_accounting/AccountModule_getGeneralLedgerReportSectionList.xml
View file @
0145cd27
...
...
@@ -357,7 +357,7 @@ for inventory in portal.portal_simulation.getInventoryList(\n
selection_params[\'at_date\'] = at_date\n
selection_params[\'node_uid\'] = inventory.node_uid\n
selection_params[\'payment_uid\'] = None\n
selection_params[\'mirror_section_uid\'] = inventory.mirror_section_uid\n
selection_params[\'mirror_section_uid\'] = inventory.mirror_section_uid
or Query(mirror_section_uid=None)
\n
report_section_list.append(\n
ReportSection(\n
path=inventory.node_relative_url,\n
...
...
@@ -391,7 +391,7 @@ for inventory in portal.portal_simulation.getInventoryList(\n
selection_params[\'at_date\'] = at_date\n
selection_params[\'node_uid\'] = inventory.node_uid\n
selection_params[\'payment_uid\'] = None\n
selection_params[\'mirror_section_uid\'] = inventory.mirror_section_uid\n
selection_params[\'mirror_section_uid\'] = inventory.mirror_section_uid
or Query(mirror_section_uid=None)
\n
report_section_list.append(\n
ReportSection(\n
path=inventory.node_relative_url,\n
...
...
@@ -422,7 +422,7 @@ for inventory in portal.portal_simulation.getInventoryList(\n
selection_params[\'from_date\'] = from_date\n
selection_params[\'at_date\'] = at_date\n
selection_params[\'node_uid\'] = inventory.node_uid\n
selection_params[\'payment_uid\'] = inventory.payment_uid\n
selection_params[\'payment_uid\'] = inventory.payment_uid
or Query(payment_uid=None)
\n
selection_params.setdefault(\'mirror_section_uid\', None)\n
report_section_list.append(\n
ReportSection(\n
...
...
@@ -455,7 +455,7 @@ for inventory in portal.portal_simulation.getInventoryList(\n
selection_params[\'from_date\'] = from_date\n
selection_params[\'at_date\'] = at_date\n
selection_params[\'node_uid\'] = inventory.node_uid\n
selection_params[\'payment_uid\'] = inventory.payment_uid\n
selection_params[\'payment_uid\'] = inventory.payment_uid
or Query(payment_uid=None)
\n
selection_params.setdefault(\'mirror_section_uid\', None)\n
report_section_list.append(\n
ReportSection(\n
...
...
bt5/erp5_accounting/bt/revision
View file @
0145cd27
1558
\ No newline at end of file
1561
\ No newline at end of file
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment