Commit 94c5be6c authored by Jérome Perrin's avatar Jérome Perrin

configurator: fix usage of unsupported catalog key

parent 728404d4
...@@ -55,11 +55,13 @@ ...@@ -55,11 +55,13 @@
The business configurations without Resource and with the state of the related workflow\n The business configurations without Resource and with the state of the related workflow\n
equals to \'End\' are just ignored.\n equals to \'End\' are just ignored.\n
"""\n """\n
bc_list = list(context.business_configuration_module.searchFolder(\n bc_list = context.business_configuration_module.searchFolder(\n
portal_type="Business Configuration",\n portal_type="Business Configuration",\n
simulation_state="draft", \n simulation_state="draft",\n
resource = "%/workflow_module/%"))\n resource_relative_url="workflow_module/%")\n
bc_list = [bc for bc in bc_list if bc.getResourceValue() is not None]\n \n
bc_list = [bc.getObject() for bc in bc_list if bc.getResourceValue() is not None]\n
\n
bc_tuple_list = []\n bc_tuple_list = []\n
index = 0\n index = 0\n
while True:\n while True:\n
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment