Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
E
erp5_rtl_support
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
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
Romain Courteaud
erp5_rtl_support
Commits
94c5be6c
Commit
94c5be6c
authored
Sep 25, 2015
by
Jérome Perrin
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
configurator: fix usage of unsupported catalog key
parent
728404d4
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
6 additions
and
4 deletions
+6
-4
bt5/erp5_configurator/SkinTemplateItem/portal_skins/erp5_configurator_wizard/ConfiguratorTool_getAvailableBusinessConfigurationList.xml
...onfiguratorTool_getAvailableBusinessConfigurationList.xml
+6
-4
No files found.
bt5/erp5_configurator/SkinTemplateItem/portal_skins/erp5_configurator_wizard/ConfiguratorTool_getAvailableBusinessConfigurationList.xml
View file @
94c5be6c
...
...
@@ -55,11 +55,13 @@
The business configurations without Resource and with the state of the related workflow\n
equals to \'End\' are just ignored.\n
"""\n
bc_list =
list(
context.business_configuration_module.searchFolder(\n
bc_list = context.business_configuration_module.searchFolder(\n
portal_type="Business Configuration",\n
simulation_state="draft", \n
resource = "%/workflow_module/%"))\n
bc_list = [bc for bc in bc_list if bc.getResourceValue() is not None]\n
simulation_state="draft",\n
resource_relative_url="workflow_module/%")\n
\n
bc_list = [bc.getObject() for bc in bc_list if bc.getResourceValue() is not None]\n
\n
bc_tuple_list = []\n
index = 0\n
while True:\n
...
...
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