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
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Joshua
erp5
Commits
534b2e77
Commit
534b2e77
authored
May 09, 2012
by
Łukasz Nowak
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Emit more informative log.
parent
b0e8ede0
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
7 additions
and
3 deletions
+7
-3
product/ERP5/mixin/rule.py
product/ERP5/mixin/rule.py
+7
-3
No files found.
product/ERP5/mixin/rule.py
View file @
534b2e77
...
...
@@ -368,7 +368,7 @@ class RuleMixin(Predicate):
else
:
# Compensate non deletable
raise
NotImplementedError
(
'Compensation undesired: decision_movement
= %s'
%
(
'Compensation undesired: decision_movement
%s = %s'
%
(
decision_movement
.
getPath
(),
pformat
(
decision_movement
.
__dict__
),
))
new_movement
=
decision_movement
.
asContext
(
quantity
=-
decision_movement
.
getQuantity
())
...
...
@@ -416,8 +416,10 @@ class RuleMixin(Predicate):
# Frozen must be compensated
if
not
_compare
(
profit_tester_list
,
prevision_movement
,
decision_movement
):
raise
NotImplementedError
(
'Compensation undesired: prevision_movement = %s decision_movement = %s'
%
(
'Compensation undesired: prevision_movement %s = %s decision_movement %s = %s'
%
(
prevision_movement
.
getPath
(),
pformat
(
prevision_movement
.
__dict__
),
decision_movement
.
getPath
(),
pformat
(
decision_movement
.
__dict__
)
))
new_movement
=
decision_movement
.
asContext
(
quantity
=-
decision_movement_quantity
)
...
...
@@ -438,8 +440,10 @@ class RuleMixin(Predicate):
# Frozen must be compensated
if
not
_compare
(
divergence_tester_list
,
prevision_movement
,
decision_movement
):
raise
NotImplementedError
(
'Compensation undesired: prevision_movement = %s decision_movement = %s'
%
(
'Compensation undesired: prevision_movement %s = %s decision_movement %s = %s'
%
(
prevision_movement
.
getPath
(),
pformat
(
prevision_movement
.
__dict__
),
decision_movement
.
getPath
(),
pformat
(
decision_movement
.
__dict__
)
))
new_movement
=
decision_movement
.
asContext
(
quantity
=-
decision_movement_quantity
)
...
...
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