Commit c2681a1f authored by Thomas Bernard's avatar Thomas Bernard

some comment improvement on how to implement constraints checking


git-svn-id: https://svn.erp5.org/repos/public/erp5/trunk@7824 20353a03-c40f-0410-a6d1-a30d3c3de9de
parent add4710d
...@@ -63,9 +63,18 @@ class PlanningBoxValidator(Validator.StringBaseValidator): ...@@ -63,9 +63,18 @@ class PlanningBoxValidator(Validator.StringBaseValidator):
def validate(self,field,key,REQUEST): def validate(self,field,key,REQUEST):
""" """
main method to solve validation main method to solve validation
first rebuild the whole structure but do not display it - rebuild the whole planning structure but do not display it.
then recover the list of block moved and check the modifications to this is needed to be able to get the block positions
apply - apply block movements recovered from the java script
- for each block moved, check the modification (over he primary axis in
case task association has changed, and also over the secondary axis to
check block movement / resizement).
Beware : This checking part does not include constraint checking.
- build a list with the validated blocks and also with the error blocks
(if any).
- return a dict of values to update objects in case no errors have been
found. Otherwise save in the REQUEST the list of error blocks so that
they can be displayed in a special way.
""" """
# init params # init params
...@@ -103,7 +112,6 @@ class PlanningBoxValidator(Validator.StringBaseValidator): ...@@ -103,7 +112,6 @@ class PlanningBoxValidator(Validator.StringBaseValidator):
# list of previous blocks moved if an error occured during previous # list of previous blocks moved if an error occured during previous
# validation # validation
# updating block_moved_list using block_previous_list. # updating block_moved_list using block_previous_list.
# This is very important not to escape processing blocks that have been # This is very important not to escape processing blocks that have been
# moved during a previous validation attempt. # moved during a previous validation attempt.
...@@ -260,7 +268,6 @@ class PlanningBoxValidator(Validator.StringBaseValidator): ...@@ -260,7 +268,6 @@ class PlanningBoxValidator(Validator.StringBaseValidator):
except KeyError: except KeyError:
activity_dict[final_block['activity_origin'].name] = [final_block] activity_dict[final_block['activity_origin'].name] = [final_block]
################################################## ##################################################
############# UPDATING ACTIVITIES ################ ############# UPDATING ACTIVITIES ################
################################################## ##################################################
...@@ -676,8 +683,8 @@ class PlanningBoxWidget(Widget.Widget): ...@@ -676,8 +683,8 @@ class PlanningBoxWidget(Widget.Widget):
selection_name = fields.StringField('selection_name', selection_name = fields.StringField('selection_name',
title='Selection Name', title='Selection Name',
description=("The name of the selection to store selections params"), description=("The name of the selection to store selections params"),
default='', default='planning_0',
required=0) required=1)
portal_types = fields.ListTextAreaField('portal_types', portal_types = fields.ListTextAreaField('portal_types',
...@@ -697,7 +704,7 @@ class PlanningBoxWidget(Widget.Widget): ...@@ -697,7 +704,7 @@ class PlanningBoxWidget(Widget.Widget):
list_method = fields.MethodField('list_method', list_method = fields.MethodField('list_method',
title='List Method', title='List Method',
description=("Method to use to list objects"), description=("Method to use to list objects"),
default='', default='searchFolder',
required=0) required=0)
...@@ -830,11 +837,14 @@ class PlanningBoxWidget(Widget.Widget): ...@@ -830,11 +837,14 @@ class PlanningBoxWidget(Widget.Widget):
here = REQUEST['here'] here = REQUEST['here']
#import pdb
#pdb.set_trace() #pdb.set_trace()
# build structure # build structure
# render_structure will call all method necessary to build the entire # render_structure will call all method necessary to build the entire
# structure relative to the planning # structure relative to the planning
# creates and fill up self.basic, self.planning and self.build_error_list # creates and fill up self.basic, self.planning and self.build_error_list
# --testing : no pdb available !!! --
#pdb.set_trace()
self.render_structure(field=field, key=key, value=value, self.render_structure(field=field, key=key, value=value,
REQUEST=REQUEST, here=here) REQUEST=REQUEST, here=here)
...@@ -885,6 +895,14 @@ class PlanningBoxWidget(Widget.Widget): ...@@ -885,6 +895,14 @@ class PlanningBoxWidget(Widget.Widget):
# XXX testing : uncoment to put selection to null => used for debugging # XXX testing : uncoment to put selection to null => used for debugging
#here.portal_selections.setSelectionFor(selection_name, None) #here.portal_selections.setSelectionFor(selection_name, None)
# XXX need to decide how Constraints between task should be defined on
# planning.
# ideally, an external method should be called for validating all
# constraints within the planning. (such a method sould be called from
# anywhere in the Project module : listbox, editing form).
# this method should return a list of all the objects' urls that does not
# fit the constraints.
####### DATA DEFINITION ####### ####### DATA DEFINITION #######
self.build_error_list = None self.build_error_list = None
# recovering usefull planning properties # recovering usefull planning properties
...@@ -1079,7 +1097,12 @@ class BasicStructure: ...@@ -1079,7 +1097,12 @@ class BasicStructure:
# When building the body, need to go through all report lines # When building the body, need to go through all report lines
# each report line is a tuple of the form : # each report line is a tuple of the form :
#(selection_id, is_summary, depth, object_list, object_list_size, is_open) #(selection_id, is_summary, depth, object_list, object_list_size, is_open)
default_selection_report_path = self.report_root_list[0][0].split('/')[0] try:
default_selection_report_path = self.report_root_list[0][0].split('/')[0]
except (IndexError):
message = 'report path is empty or not valid, please check selection\
report path in Planning properties'
return [(Message(domain=None, message=message,mapping=None))]
if (default_selection_report_path in portal_categories.objectIds()) or \ if (default_selection_report_path in portal_categories.objectIds()) or \
(portal_domains is not None and default_selection_report_path in \ (portal_domains is not None and default_selection_report_path in \
portal_domaind.objectIds()): portal_domaind.objectIds()):
...@@ -1088,6 +1111,10 @@ class BasicStructure: ...@@ -1088,6 +1111,10 @@ class BasicStructure:
default_selection_root_path = self.report_root_list[0][0] default_selection_root_path = self.report_root_list[0][0]
selection_report_path = self.selection.getReportPath(default = \ selection_report_path = self.selection.getReportPath(default = \
(default_selection_report_path,)) (default_selection_report_path,))
pdb.set_trace()
if selection_report_path in (None,()):
message = 'report path is empty or not valid'
return [(Message(domain=None, message=message,mapping=None))]
# testing report_depth value # testing report_depth value
if report_depth is not None: if report_depth is not None:
...@@ -1124,12 +1151,9 @@ class BasicStructure: ...@@ -1124,12 +1151,9 @@ class BasicStructure:
self.report_activity_dict = {} self.report_activity_dict = {}
indic_line=0 indic_line=0
index_line=0 index_line=0
blocks_object={} blocks_object={}
select_expression = '' select_expression = ''
# now iterating through report_tree_list # now iterating through report_tree_list
for object_tree_line in report_tree_list: for object_tree_line in report_tree_list:
# prepare query by defining selection report object # prepare query by defining selection report object
...@@ -1181,12 +1205,15 @@ class BasicStructure: ...@@ -1181,12 +1205,15 @@ class BasicStructure:
context=self.here, REQUEST=self.REQUEST) context=self.here, REQUEST=self.REQUEST)
else: else:
# no list_method found # no list_method found
object_list = self.here.portal_selections.getSelectionValueList( # XXX seems to be buggy :
self.selection_name, context=self.here, REQUEST=self.REQUEST) #object_list = self.here.portal_selections.getSelectionValueList(
# self.selection_name, context=self.here, REQUEST=self.REQUEST)
message = 'No list method found, please check planningBox properties'
return [(Message(domain=None, message=message,mapping=None))]
# recovering exeption_uid_list # recovering exeption_uid_list
exception_uid_list = object_tree_line.getExceptionUidList() exception_uid_list = object_tree_line.getExceptionUidList()
if exception_uid_list not in (None,()): if exception_uid_list is not None:
# Filter folders if parent tree : # Filter folders if parent tree :
# build new object_list for current line # build new object_list for current line
# (list of relative elements) # (list of relative elements)
...@@ -1234,7 +1261,7 @@ class BasicStructure: ...@@ -1234,7 +1261,7 @@ class BasicStructure:
# reset to original value # reset to original value
self.selection.edit(report = None) self.selection.edit(report = None)
self.selection.edit(report_list=None) #self.selection.edit(report_list=None) # comment to save report_list status
# update report list if report_depth was specified # update report list if report_depth was specified
if report_depth is not None: if report_depth is not None:
...@@ -1248,6 +1275,13 @@ class BasicStructure: ...@@ -1248,6 +1275,13 @@ class BasicStructure:
self.selection.edit(report_list=unfolded_list) self.selection.edit(report_list=unfolded_list)
##################################################
############## CHECKING CONSTRAINTS ##############
##################################################
# XXX Constraints checking chould be called here
# and results saved in a list (list of url corresponding to objects not
# validated)
################################################## ##################################################
########### GETTING MAIN AXIS BOUNDS ############# ########### GETTING MAIN AXIS BOUNDS #############
################################################## ##################################################
...@@ -1264,7 +1298,7 @@ class BasicStructure: ...@@ -1264,7 +1298,7 @@ class BasicStructure:
else: else:
# ERROR : self.report_groups = [] # ERROR : self.report_groups = []
# no group is available so the Y and X axis will be empty... # no group is available so the Y and X axis will be empty...
message = 'selection method returned empty list of objects : please check\ message= 'selection method returned empty list of objects : please check\
your list_method and report_root' your list_method and report_root'
return [(Message(domain=None, message=message,mapping=None))] return [(Message(domain=None, message=message,mapping=None))]
...@@ -1726,6 +1760,10 @@ class BasicGroup: ...@@ -1726,6 +1760,10 @@ class BasicGroup:
object = stat_context.getObject() object = stat_context.getObject()
url = stat_context.getUrl() url = stat_context.getUrl()
# XXX testing constraint result here.
# if current object url in list of error constranint urls, then
# colorizing the block.
# XXX should define height of block here # XXX should define height of block here
height = None height = None
...@@ -1805,6 +1843,10 @@ class BasicGroup: ...@@ -1805,6 +1843,10 @@ class BasicGroup:
error = 'true' error = 'true'
break break
# XXX testing constraint result here.
# if current object url in list of error constranint urls, then
# colorizing the block.
# defining name # defining name
name = "Activity_%s" % (self.object.getObject().getTitle()) name = "Activity_%s" % (self.object.getObject().getTitle())
......
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