Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
erp5
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
1
Merge Requests
1
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
Cédric Le Ninivin
erp5
Commits
c1207a1e
Commit
c1207a1e
authored
Nov 05, 2018
by
Cédric Le Ninivin
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Movement: Optional Type Base Method for source and destination asset price
parent
770e005f
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
6 additions
and
0 deletions
+6
-0
product/ERP5/Document/Movement.py
product/ERP5/Document/Movement.py
+6
-0
No files found.
product/ERP5/Document/Movement.py
View file @
c1207a1e
...
...
@@ -484,6 +484,9 @@ class Movement(XMLObject, Amount, CompositionMixin, AmountGeneratorMixin):
This will be implemeted by calling currency conversion on currency resources
"""
type_based_script
=
self
.
_getTypeBasedMethod
(
'getSourceAssetPrice'
)
if
type_based_script
:
return
type_based_script
(
self
)
return
self
.
getPrice
()
# XXX Not implemented yet TODO
security
.
declareProtected
(
Permissions
.
AccessContentsInformation
,
...
...
@@ -492,6 +495,9 @@ class Movement(XMLObject, Amount, CompositionMixin, AmountGeneratorMixin):
"""
Returns the price converted to the currency of the destination section
"""
type_based_script
=
self
.
_getTypeBasedMethod
(
'getDestinationAssetPrice'
)
if
type_based_script
:
return
type_based_script
(
self
)
return
self
.
getPrice
()
# XXX Not implemented yet TODO
# Causality computation
...
...
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