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
ddc64d56
Commit
ddc64d56
authored
4 years ago
by
Cédric Le Ninivin
Committed by
Cédric Le Ninivin
1 year ago
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
erp5_core: ScriptConstrant support Consistency Message side by side with strings
parent
038468ec
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
4 additions
and
1 deletion
+4
-1
product/ERP5/bootstrap/erp5_core/DocumentTemplateItem/portal_components/document.erp5.ScriptConstraint.py
...eItem/portal_components/document.erp5.ScriptConstraint.py
+4
-1
No files found.
product/ERP5/bootstrap/erp5_core/DocumentTemplateItem/portal_components/document.erp5.ScriptConstraint.py
View file @
ddc64d56
...
...
@@ -27,6 +27,7 @@
##############################################################################
from
Products.ERP5Type.mixin.constraint
import
ConstraintMixin
from
Products.ERP5Type.ConsistencyMessage
import
ConsistencyMessage
class
ScriptConstraint
(
ConstraintMixin
):
"""
...
...
@@ -38,7 +39,6 @@ class ScriptConstraint(ConstraintMixin):
def
_createConsistencyMessage
(
self
,
object_relative_url
,
message
,
mapping
):
# XXX If I put in the right place I have TypeError: 'NoneType' object is not callable
from
Products.ERP5Type.ConsistencyMessage
import
ConsistencyMessage
return
ConsistencyMessage
(
self
,
object_relative_url
=
object_relative_url
,
message
=
message
,
...
...
@@ -58,6 +58,9 @@ class ScriptConstraint(ConstraintMixin):
createConsistencyMessage
=
self
.
_createConsistencyMessage
message_list
=
[]
for
item
in
method
(
fixit
=
fixit
,
**
kw
):
if
isinstance
(
item
,
ConsistencyMessage
):
message_list
.
append
(
item
)
continue
if
isinstance
(
item
,
(
tuple
,
list
))
and
len
(
item
)
==
2
:
message
,
mapping
=
item
else
:
...
...
This diff is collapsed.
Click to expand it.
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