Commit 8ed12e0f authored by Alexandre Boeglin's avatar Alexandre Boeglin

"Allow Creation" flag allows to prevent the object creation when an unknown reference is input.


git-svn-id: https://svn.erp5.org/repos/public/erp5/trunk@3237 20353a03-c40f-0410-a6d1-a30d3c3de9de
parent 49ad14bf
...@@ -149,7 +149,7 @@ class MultiRelationStringFieldWidget(Widget.LinesTextAreaWidget, RelationField.R ...@@ -149,7 +149,7 @@ class MultiRelationStringFieldWidget(Widget.LinesTextAreaWidget, RelationField.R
# Delete default tales on the fly # Delete default tales on the fly
field.tales['items'] = None field.tales['items'] = None
elif field.get_value('jump_allowed') == 1 : elif field.get_value('allow_jump') == 1 :
html_string += '&nbsp;<input type="image" src="%s/images/exec16.png" value="update..." name="%s/portal_selections/viewSearchRelatedDocumentDialog%s_%s:method">' \ html_string += '&nbsp;<input type="image" src="%s/images/exec16.png" value="update..." name="%s/portal_selections/viewSearchRelatedDocumentDialog%s_%s:method">' \
% (portal_url_string, portal_object.getPath(), field.aq_parent._v_relation_field_index, i) % (portal_url_string, portal_object.getPath(), field.aq_parent._v_relation_field_index, i)
...@@ -159,11 +159,11 @@ class MultiRelationStringFieldWidget(Widget.LinesTextAreaWidget, RelationField.R ...@@ -159,11 +159,11 @@ class MultiRelationStringFieldWidget(Widget.LinesTextAreaWidget, RelationField.R
# no modification made, we can display only a lines text area widget # no modification made, we can display only a lines text area widget
html_string += Widget.LinesTextAreaWidget.render(self, field, key, value_list, REQUEST) html_string += Widget.LinesTextAreaWidget.render(self, field, key, value_list, REQUEST)
if field.get_value('jump_allowed') == 1 : if field.get_value('allow_jump') == 1 :
html_string += '&nbsp;<input type="image" src="%s/images/exec16.png" value="update..." name="%s/portal_selections/viewSearchRelatedDocumentDialog%s:method">' \ html_string += '&nbsp;<input type="image" src="%s/images/exec16.png" value="update..." name="%s/portal_selections/viewSearchRelatedDocumentDialog%s:method">' \
% (portal_url_string, portal_object.getPath(), field.aq_parent._v_relation_field_index) % (portal_url_string, portal_object.getPath(), field.aq_parent._v_relation_field_index)
if value_list not in ((), [], None, ['']) and value_list == field.get_value('default') and field.get_value('jump_allowed') == 1 : if value_list not in ((), [], None, ['']) and value_list == field.get_value('default') and field.get_value('allow_jump') == 1 :
if REQUEST.get('selection_name') is not None: if REQUEST.get('selection_name') is not None:
html_string += '&nbsp;&nbsp;<a href="%s?field_id=%s&form_id=%s&selection_name=%s&selection_index=%s"><img src="%s/images/jump.png"></a>' \ html_string += '&nbsp;&nbsp;<a href="%s?field_id=%s&form_id=%s&selection_name=%s&selection_index=%s"><img src="%s/images/jump.png"></a>' \
% (field.get_value('jump_method'), field.id, field.aq_parent.id, REQUEST.get('selection_name'), REQUEST.get('selection_index'),portal_url_string) % (field.get_value('jump_method'), field.id, field.aq_parent.id, REQUEST.get('selection_name'), REQUEST.get('selection_index'),portal_url_string)
...@@ -179,7 +179,7 @@ class MultiRelationStringFieldWidget(Widget.LinesTextAreaWidget, RelationField.R ...@@ -179,7 +179,7 @@ class MultiRelationStringFieldWidget(Widget.LinesTextAreaWidget, RelationField.R
""" """
Render text field. Render text field.
""" """
if field.get_value('jump_allowed') == 0 : if field.get_value('allow_jump') == 0 :
return Widget.LinesTextAreaWidget.render_view(self, field, value) return Widget.LinesTextAreaWidget.render_view(self, field, value)
REQUEST = get_request() REQUEST = get_request()
...@@ -458,7 +458,8 @@ class MultiRelationStringFieldValidator(Validator.LinesValidator, RelationField ...@@ -458,7 +458,8 @@ class MultiRelationStringFieldValidator(Validator.LinesValidator, RelationField
elif len(relation_list) == 0: elif len(relation_list) == 0:
# If the length is 0, raise an error # If the length is 0, raise an error
menu_item_list += new_object_menu_item_list if field.get_value('allow_creation') == 1 :
menu_item_list += new_object_menu_item_list
REQUEST.set(relation_item_id, menu_item_list) REQUEST.set(relation_item_id, menu_item_list)
raising_error_needed = 1 raising_error_needed = 1
raising_error_value = 'relation_result_empty' raising_error_value = 'relation_result_empty'
......
...@@ -53,7 +53,7 @@ class RelationStringFieldWidget(Widget.TextWidget, Widget.ListWidget): ...@@ -53,7 +53,7 @@ class RelationStringFieldWidget(Widget.TextWidget, Widget.ListWidget):
""" """
property_names = Widget.TextWidget.property_names + \ property_names = Widget.TextWidget.property_names + \
['update_method', 'jump_method', 'jump_allowed', 'base_category', 'portal_type', 'catalog_index', ['update_method', 'jump_method', 'allow_jump', 'base_category', 'portal_type', 'allow_creation', 'catalog_index',
'default_module', 'relation_setter_id', 'columns','sort','parameter_list','list_method', 'default_module', 'relation_setter_id', 'columns','sort','parameter_list','list_method',
'first_item', 'items', 'size', 'extra_item'] 'first_item', 'items', 'size', 'extra_item']
...@@ -72,8 +72,8 @@ class RelationStringFieldWidget(Widget.TextWidget, Widget.ListWidget): ...@@ -72,8 +72,8 @@ class RelationStringFieldWidget(Widget.TextWidget, Widget.ListWidget):
default="Base_jumpToRelatedDocument", default="Base_jumpToRelatedDocument",
required=1) required=1)
jump_allowed = fields.CheckBoxField('jump_allowed', allow_jump = fields.CheckBoxField('allow_jump',
title='Jump Allowed', title='Allow Jump',
description=( description=(
"Do we allow to jump to the relation ?"), "Do we allow to jump to the relation ?"),
default=1, default=1,
...@@ -93,6 +93,13 @@ class RelationStringFieldWidget(Widget.TextWidget, Widget.ListWidget): ...@@ -93,6 +93,13 @@ class RelationStringFieldWidget(Widget.TextWidget, Widget.ListWidget):
default="", default="",
required=1) required=1)
allow_creation = fields.CheckBoxField('allow_creation',
title='Allow Creation',
description=(
"Do we allow to create new objects ?"),
default=1,
required=0)
catalog_index = fields.StringField('catalog_index', catalog_index = fields.StringField('catalog_index',
title='Catalog Index', title='Catalog Index',
description=( description=(
...@@ -181,7 +188,7 @@ class RelationStringFieldWidget(Widget.TextWidget, Widget.ListWidget): ...@@ -181,7 +188,7 @@ class RelationStringFieldWidget(Widget.TextWidget, Widget.ListWidget):
# we compare what has been changed in the relation update script # we compare what has been changed in the relation update script
#elif value != field.get_value('default'): #elif value != field.get_value('default'):
elif field.get_value('jump_allowed') == 1 : elif field.get_value('allow_jump') == 1 :
html_string += '&nbsp;<input type="image" src="%s/images/exec16.png" value="update..." name="%s/portal_selections/viewSearchRelatedDocumentDialog%s:method">' \ html_string += '&nbsp;<input type="image" src="%s/images/exec16.png" value="update..." name="%s/portal_selections/viewSearchRelatedDocumentDialog%s:method">' \
% (portal_url_string, portal_object.getPath(), % (portal_url_string, portal_object.getPath(),
getattr(field.aq_parent, '_v_relation_field_index', 0)) getattr(field.aq_parent, '_v_relation_field_index', 0))
...@@ -189,7 +196,7 @@ class RelationStringFieldWidget(Widget.TextWidget, Widget.ListWidget): ...@@ -189,7 +196,7 @@ class RelationStringFieldWidget(Widget.TextWidget, Widget.ListWidget):
relation_field_index = getattr(field.aq_parent, '_v_relation_field_index', 0) relation_field_index = getattr(field.aq_parent, '_v_relation_field_index', 0)
field.aq_parent._v_relation_field_index = relation_field_index + 1 # Increase index field.aq_parent._v_relation_field_index = relation_field_index + 1 # Increase index
if value not in ( None, '' ) and not REQUEST.has_key(relation_item_id) and value == field.get_value('default') and field.get_value('jump_allowed') == 1 : if value not in ( None, '' ) and not REQUEST.has_key(relation_item_id) and value == field.get_value('default') and field.get_value('allow_jump') == 1 :
if REQUEST.get('selection_name') is not None: if REQUEST.get('selection_name') is not None:
html_string += '&nbsp;&nbsp;<a href="%s/%s?field_id=%s&form_id=%s&selection_name=%s&selection_index=%s"><img src="%s/images/jump.png"></a>' \ html_string += '&nbsp;&nbsp;<a href="%s/%s?field_id=%s&form_id=%s&selection_name=%s&selection_index=%s"><img src="%s/images/jump.png"></a>' \
% (here.absolute_url(), field.get_value('jump_method'), field.id, field.aq_parent.id, REQUEST.get('selection_name'), REQUEST.get('selection_index'),portal_url_string) % (here.absolute_url(), field.get_value('jump_method'), field.id, field.aq_parent.id, REQUEST.get('selection_name'), REQUEST.get('selection_index'),portal_url_string)
...@@ -201,7 +208,7 @@ class RelationStringFieldWidget(Widget.TextWidget, Widget.ListWidget): ...@@ -201,7 +208,7 @@ class RelationStringFieldWidget(Widget.TextWidget, Widget.ListWidget):
def render_view(self, field, value): def render_view(self, field, value):
"""Render text input field. """Render text input field.
""" """
if field.get_value('jump_allowed') == 0 : if field.get_value('allow_jump') == 0 :
return Widget.TextWidget.render_view(self, field, value) return Widget.TextWidget.render_view(self, field, value)
REQUEST = get_request() REQUEST = get_request()
here = REQUEST['here'] here = REQUEST['here']
...@@ -382,7 +389,8 @@ class RelationStringFieldValidator(Validator.StringValidator): ...@@ -382,7 +389,8 @@ class RelationStringFieldValidator(Validator.StringValidator):
portal_type_item, catalog_index, value, relation_setter_id, display_text) portal_type_item, catalog_index, value, relation_setter_id, display_text)
# If the length is 0, raise an error # If the length is 0, raise an error
elif len(relation_list) == 0: elif len(relation_list) == 0:
menu_item_list += new_object_menu_item_list if field.get_value('allow_creation') == 1 :
menu_item_list += new_object_menu_item_list
REQUEST.set(relation_item_id, menu_item_list) REQUEST.set(relation_item_id, menu_item_list)
self.raise_error('relation_result_empty', field) self.raise_error('relation_result_empty', field)
# If the length is short, raise an error # If the length is short, raise an error
......
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