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
Labels
Merge Requests
142
Merge Requests
142
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
Jobs
Commits
Open sidebar
nexedi
erp5
Commits
651ab9a2
Commit
651ab9a2
authored
Jan 13, 2023
by
Xiaowu Zhang
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
erp5_web: fix data inconsistency after change preference
parent
24934b05
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
3 additions
and
2 deletions
+3
-2
bt5/erp5_web/SkinTemplateItem/portal_skins/erp5_web_crm/WebSection_getEventResourceItemList.py
...skins/erp5_web_crm/WebSection_getEventResourceItemList.py
+3
-2
No files found.
bt5/erp5_web/SkinTemplateItem/portal_skins/erp5_web_crm/WebSection_getEventResourceItemList.py
View file @
651ab9a2
...
...
@@ -5,8 +5,9 @@ Use Auditor proxy role to let anonymous users accessing resources.
from
Products.ERP5Type.Cache
import
CachingMethod
portal
=
context
.
getPortalObject
()
use_uid
=
portal
.
portal_categories
.
getCategoryUid
(
portal
.
portal_preferences
.
getPreferredEventUse
(),
base_category
=
'use'
)
sql_kw
=
{
'portal_type'
:
portal
.
getPortalResourceTypeList
(),
'use_uid'
:
portal
.
portal_categories
.
getCategoryUid
(
portal
.
portal_preferences
.
getPreferredEventUse
(),
base_category
=
'use'
)
,
'use_uid'
:
use_uid
,
'validation_state'
:
'validated'
,
'sort_on'
:
'title'
}
...
...
@@ -14,7 +15,7 @@ def getResourceItemList():
return
[(
''
,
''
)]
+
[(
result
.
getTitle
(),
result
.
getRelativeUrl
())
for
result
in
portal
.
portal_catalog
(
**
sql_kw
)]
getResourceItemList
=
CachingMethod
(
getResourceItemList
,
id
=
(
script
.
id
,
context
.
Localizer
.
get_selected_language
()),
id
=
(
script
.
id
,
context
.
Localizer
.
get_selected_language
()
,
use_uid
),
cache_factory
=
'erp5_ui_long'
)
return
getResourceItemList
()
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