Commit 58f70387 authored by iv's avatar iv

ERP5Workflow: remove all storage id from State property sheet

parent 9556a3f5
...@@ -75,7 +75,7 @@ ...@@ -75,7 +75,7 @@
<string>my_id</string> <string>my_id</string>
<string>my_title</string> <string>my_title</string>
<string>my_is_selected</string> <string>my_is_selected</string>
<string>my_assigned_role_list</string> <string>my_state_permission_roles_list</string>
<string>my_description</string> <string>my_description</string>
</list> </list>
</value> </value>
......
...@@ -16,7 +16,7 @@ ...@@ -16,7 +16,7 @@
</item> </item>
<item> <item>
<key> <string>id</string> </key> <key> <string>id</string> </key>
<value> <string>my_assigned_role_list</string> </value> <value> <string>state_permission_roles_list</string> </value>
</item> </item>
<item> <item>
<key> <string>message_values</string> </key> <key> <string>message_values</string> </key>
......
...@@ -42,7 +42,9 @@ ...@@ -42,7 +42,9 @@
</item> </item>
<item> <item>
<key> <string>storage_id</string> </key> <key> <string>storage_id</string> </key>
<value> <string>is_selected</string> </value> <value>
<none/>
</value>
</item> </item>
</dictionary> </dictionary>
</pickle> </pickle>
......
...@@ -32,7 +32,9 @@ ...@@ -32,7 +32,9 @@
</item> </item>
<item> <item>
<key> <string>storage_id</string> </key> <key> <string>storage_id</string> </key>
<value> <string>assigned_role_list</string> </value> <value>
<none/>
</value>
</item> </item>
<item> <item>
<key> <string>translatable</string> </key> <key> <string>translatable</string> </key>
......
...@@ -38,7 +38,9 @@ ...@@ -38,7 +38,9 @@
</item> </item>
<item> <item>
<key> <string>storage_id</string> </key> <key> <string>storage_id</string> </key>
<value> <string>type_list</string> </value> <value>
<none/>
</value>
</item> </item>
</dictionary> </dictionary>
</pickle> </pickle>
......
...@@ -198,4 +198,4 @@ InteractionWorkflow ...@@ -198,4 +198,4 @@ InteractionWorkflow
WorkflowConfigurator WorkflowConfigurator
WorkflowScript WorkflowScript
Worklist Worklist
ScriptConstraint ScriptConstraint
\ No newline at end of file
...@@ -52,7 +52,7 @@ class State(IdAsReferenceMixin("state_", "prefix"), XMLObject, XMLMatrix): ...@@ -52,7 +52,7 @@ class State(IdAsReferenceMixin("state_", "prefix"), XMLObject, XMLMatrix):
isRADContent = 1 isRADContent = 1
erp5_permission_roles = {} # { permission: [role] or (role,) } erp5_permission_roles = {} # { permission: [role] or (role,) }
default_reference = '' default_reference = ''
type_list = () state_type = ()
# Declarative security # Declarative security
security = ClassSecurityInfo() security = ClassSecurityInfo()
security.declareObjectProtected(Permissions.AccessContentsInformation) security.declareObjectProtected(Permissions.AccessContentsInformation)
...@@ -108,4 +108,4 @@ class State(IdAsReferenceMixin("state_", "prefix"), XMLObject, XMLMatrix): ...@@ -108,4 +108,4 @@ class State(IdAsReferenceMixin("state_", "prefix"), XMLObject, XMLMatrix):
'reserved_inventory', 'reserved_inventory',
'transit_inventory', 'transit_inventory',
'current_inventory', 'current_inventory',
) )
\ No newline at end of file
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