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
Carlos Ramos Carreño
erp5
Commits
87b3cde3
Commit
87b3cde3
authored
Nov 18, 2014
by
Alain Takoudjou
Committed by
Rafael Monnerat
Nov 05, 2020
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Directly use WorkflowTool to access time value.
Mixed commit:
43b1ae1b
2f05fe1b
parent
4c780c08
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
9 additions
and
8 deletions
+9
-8
product/ERP5Type/Base.py
product/ERP5Type/Base.py
+9
-8
No files found.
product/ERP5Type/Base.py
View file @
87b3cde3
...
@@ -1862,7 +1862,7 @@ class Base(
...
@@ -1862,7 +1862,7 @@ class Base(
def
_setValue
(
self
,
id
,
target
,
spec
=
(),
filter
=
None
,
portal_type
=
(),
keep_default
=
1
,
def
_setValue
(
self
,
id
,
target
,
spec
=
(),
filter
=
None
,
portal_type
=
(),
keep_default
=
1
,
checked_permission
=
None
):
checked_permission
=
None
):
getRelativeUrl
=
self
.
getPortalObject
().
portal_url
.
getRelativeUrl
getRelativeUrl
=
self
.
getPortalObject
().
portal_url
.
getRelativeUrl
def
cleanupCategory
(
path
):
def
cleanupCategory
(
path
):
# prevent duplicating base categories and storing "portal_categories/"
# prevent duplicating base categories and storing "portal_categories/"
for
start_string
in
(
"portal_categories/"
,
"%s/"
%
id
):
for
start_string
in
(
"portal_categories/"
,
"%s/"
%
id
):
...
@@ -3249,13 +3249,14 @@ class Base(
...
@@ -3249,13 +3249,14 @@ class Base(
pass
pass
else
:
else
:
max_date
=
None
max_date
=
None
for
history
in
history_list
.
itervalues
():
portal_workflow
=
getToolByName
(
self
.
getPortalObject
(),
'portal_workflow'
)
try
:
getStatusOf
=
portal_workflow
.
getStatusOf
date
=
history
[
-
1
][
'time'
]
for
key
,
_
in
history_list
.
iteritems
():
except
(
IndexError
,
KeyError
,
TypeError
):
status
=
getStatusOf
(
key
,
self
)
continue
if
status
is
not
None
and
status
.
has_key
(
'time'
):
if
date
>
max_date
:
date
=
status
[
'time'
]
max_date
=
date
if
date
>
max_date
:
max_date
=
date
if
max_date
:
if
max_date
:
# Return a copy of history time, to prevent modification
# Return a copy of history time, to prevent modification
return
DateTime
(
max_date
)
return
DateTime
(
max_date
)
...
...
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