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
Klaus Wölfel
erp5
Commits
cfe2e57a
Commit
cfe2e57a
authored
Aug 28, 2020
by
Cédric Le Ninivin
Committed by
Klaus Wölfel
Apr 16, 2021
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
erp5_core: ScriptConstrant support Consistency Message side by side with strings
parent
aebc7e1a
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 @
cfe2e57a
...
@@ -27,6 +27,7 @@
...
@@ -27,6 +27,7 @@
##############################################################################
##############################################################################
from
Products.ERP5Type.mixin.constraint
import
ConstraintMixin
from
Products.ERP5Type.mixin.constraint
import
ConstraintMixin
from
Products.ERP5Type.ConsistencyMessage
import
ConsistencyMessage
class
ScriptConstraint
(
ConstraintMixin
):
class
ScriptConstraint
(
ConstraintMixin
):
"""
"""
...
@@ -38,7 +39,6 @@ class ScriptConstraint(ConstraintMixin):
...
@@ -38,7 +39,6 @@ class ScriptConstraint(ConstraintMixin):
def
_createConsistencyMessage
(
self
,
object_relative_url
,
message
,
mapping
):
def
_createConsistencyMessage
(
self
,
object_relative_url
,
message
,
mapping
):
# XXX If I put in the right place I have TypeError: 'NoneType' object is not callable
# 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
,
return
ConsistencyMessage
(
self
,
object_relative_url
=
object_relative_url
,
object_relative_url
=
object_relative_url
,
message
=
message
,
message
=
message
,
...
@@ -58,6 +58,9 @@ class ScriptConstraint(ConstraintMixin):
...
@@ -58,6 +58,9 @@ class ScriptConstraint(ConstraintMixin):
createConsistencyMessage
=
self
.
_createConsistencyMessage
createConsistencyMessage
=
self
.
_createConsistencyMessage
message_list
=
[]
message_list
=
[]
for
item
in
method
(
fixit
=
fixit
,
**
kw
):
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
:
if
isinstance
(
item
,
(
tuple
,
list
))
and
len
(
item
)
==
2
:
message
,
mapping
=
item
message
,
mapping
=
item
else
:
else
:
...
...
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