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
457abc78
Commit
457abc78
authored
Jan 13, 2023
by
Xiaowu Zhang
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
erp5_apparel: fix data inconsistency after change preference
parent
651ab9a2
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
5 additions
and
5 deletions
+5
-5
bt5/erp5_apparel/SkinTemplateItem/portal_skins/erp5_apparel/ApparelModelColourAndMorphologieVariation_init.py
...apparel/ApparelModelColourAndMorphologieVariation_init.py
+5
-5
No files found.
bt5/erp5_apparel/SkinTemplateItem/portal_skins/erp5_apparel/ApparelModelColourAndMorphologieVariation_init.py
View file @
457abc78
...
...
@@ -9,19 +9,19 @@ if portal_type in context.getPortalVariationTypeList():
from
Products.ERP5Type.Cache
import
CachingMethod
#xxx default preference value [] for fix a bug
method_name
=
'getPreferred%sIndividualVariationBaseCategoryList'
%
portal_type
.
replace
(
' '
,
''
)
method
=
getattr
(
context
.
portal_preferences
,
method_name
)
url_list
=
method
([])
def
getIndividualVariationBaseCategoryList
(
portal_type
):
result
=
[]
#xxx default preference value [] for fix a bug
method_name
=
'getPreferred%sIndividualVariationBaseCategoryList'
%
portal_type
.
replace
(
' '
,
''
)
method
=
getattr
(
context
.
portal_preferences
,
method_name
)
url_list
=
method
([])
for
url
in
url_list
:
base_category
=
context
.
portal_categories
[
url
]
result
.
append
((
base_category
.
getTranslatedTitle
(),
base_category
.
getRelativeUrl
()))
return
result
getIndividualVariationBaseCategoryList
=
CachingMethod
(
getIndividualVariationBaseCategoryList
,
id
=
(
script
.
id
,
context
.
Localizer
.
get_selected_language
()),
id
=
(
script
.
id
,
context
.
Localizer
.
get_selected_language
()
,
url_list
),
cache_factory
=
'erp5_ui_long'
)
base_category_list
=
[
y
for
x
,
y
in
getIndividualVariationBaseCategoryList
(
portal_type
)]
...
...
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