Coverage Report - org.kuali.rice.krad.web.struts.form.KualiMaintenanceForm
 
Classes in this File Line Coverage Branch Coverage Complexity
KualiMaintenanceForm
0%
0/227
0%
0/126
4.533
 
 1  
 /*
 2  
  * Copyright 2006-2011 The Kuali Foundation
 3  
  *
 4  
  * Licensed under the Educational Community License, Version 2.0 (the "License");
 5  
  * you may not use this file except in compliance with the License.
 6  
  * You may obtain a copy of the License at
 7  
  *
 8  
  * http://www.opensource.org/licenses/ecl2.php
 9  
  *
 10  
  * Unless required by applicable law or agreed to in writing, software
 11  
  * distributed under the License is distributed on an "AS IS" BASIS,
 12  
  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 13  
  * See the License for the specific language governing permissions and
 14  
  * limitations under the License.
 15  
  */
 16  
 
 17  
 package org.kuali.rice.krad.web.struts.form;
 18  
 
 19  
 import java.lang.reflect.Constructor;
 20  
 import java.lang.reflect.InvocationTargetException;
 21  
 import java.util.Enumeration;
 22  
 import java.util.HashMap;
 23  
 import java.util.Iterator;
 24  
 import java.util.List;
 25  
 import java.util.Map;
 26  
 
 27  
 import javax.servlet.http.HttpServletRequest;
 28  
 
 29  
 import org.apache.commons.lang.StringUtils;
 30  
 import org.apache.struts.upload.FormFile;
 31  
 import org.kuali.rice.core.api.config.ConfigurationException;
 32  
 import org.kuali.rice.core.util.RiceKeyConstants;
 33  
 import org.kuali.rice.core.web.format.FormatException;
 34  
 import org.kuali.rice.core.web.format.Formatter;
 35  
 import org.kuali.rice.kew.api.WorkflowDocument;
 36  
 import org.kuali.rice.kim.api.services.KimApiServiceLocator;
 37  
 import org.kuali.rice.krad.bo.BusinessObject;
 38  
 import org.kuali.rice.krad.bo.PersistableBusinessObject;
 39  
 import org.kuali.rice.krad.datadictionary.exception.UnknownDocumentTypeException;
 40  
 import org.kuali.rice.krad.document.Document;
 41  
 import org.kuali.rice.krad.document.MaintenanceDocument;
 42  
 import org.kuali.rice.krad.document.MaintenanceDocumentBase;
 43  
 import org.kuali.rice.krad.document.authorization.MaintenanceDocumentRestrictions;
 44  
 import org.kuali.rice.krad.maintenance.Maintainable;
 45  
 import org.kuali.rice.krad.service.KRADServiceLocatorWeb;
 46  
 import org.kuali.rice.krad.service.MaintenanceDocumentDictionaryService;
 47  
 import org.kuali.rice.krad.util.FieldUtils;
 48  
 import org.kuali.rice.krad.util.GlobalVariables;
 49  
 import org.kuali.rice.krad.util.KRADConstants;
 50  
 import org.kuali.rice.krad.util.ObjectUtils;
 51  
 
 52  
 
 53  
 /**
 54  
  * This class is the base action form for all maintenance documents.
 55  
  * 
 56  
  * 
 57  
  */
 58  0
 public class KualiMaintenanceForm extends KualiDocumentFormBase {
 59  0
     protected static final org.apache.log4j.Logger LOG = org.apache.log4j.Logger.getLogger(KualiMaintenanceForm.class);
 60  
 
 61  
     protected static final long serialVersionUID = 1L;
 62  
 
 63  
     protected String businessObjectClassName;
 64  
     protected String description;
 65  
     protected boolean readOnly;
 66  
     protected Map<String, String> oldMaintainableValues;
 67  
     protected Map<String, String> newMaintainableValues;
 68  
     protected String maintenanceAction;
 69  
 
 70  
         /**
 71  
      * @see org.kuali.rice.krad.web.struts.form.KualiDocumentFormBase#addRequiredNonEditableProperties()
 72  
      */
 73  
     @Override
 74  
     public void addRequiredNonEditableProperties(){
 75  0
             super.addRequiredNonEditableProperties();
 76  0
             registerRequiredNonEditableProperty(KRADConstants.BUSINESS_OBJECT_CLASS_ATTRIBUTE);
 77  0
             registerRequiredNonEditableProperty(KRADConstants.LOOKUP_RESULTS_BO_CLASS_NAME);
 78  0
             registerRequiredNonEditableProperty(KRADConstants.LOOKED_UP_COLLECTION_NAME);
 79  0
             registerRequiredNonEditableProperty(KRADConstants.LOOKUP_RESULTS_SEQUENCE_NUMBER);
 80  0
             registerRequiredNonEditableProperty(KRADConstants.FIELD_NAME_TO_FOCUS_ON_AFTER_SUBMIT);
 81  0
     }
 82  
 
 83  
     /**
 84  
      * Used to indicate which result set we're using when refreshing/returning from a multi-value lookup
 85  
      */
 86  
     protected String lookupResultsSequenceNumber;
 87  
     /**
 88  
      * The type of result returned by the multi-value lookup
 89  
      * 
 90  
      * TODO: to be persisted in the lookup results service instead?
 91  
      */
 92  
     protected String lookupResultsBOClassName;
 93  
     
 94  
     /**
 95  
      * The name of the collection looked up (by a multiple value lookup)
 96  
      */
 97  
     protected String lookedUpCollectionName;
 98  
     
 99  
     protected MaintenanceDocumentRestrictions authorizations;
 100  
     
 101  
     /**
 102  
      * Override the default method to add the if statement which can't be called until after parameters from a multipart request
 103  
      * have been made accessible, but which must be called before the parameter values are used to instantiate and populate business
 104  
      * objects.
 105  
      * 
 106  
      * @param requestParameters
 107  
      */
 108  
     @Override
 109  
     public void postprocessRequestParameters(Map requestParameters) {
 110  0
         super.postprocessRequestParameters(requestParameters);
 111  
 
 112  0
         String docTypeName = null;
 113  0
         String[] docTypeNames = (String[]) requestParameters.get(KRADConstants.DOCUMENT_TYPE_NAME);
 114  0
         if ((docTypeNames != null) && (docTypeNames.length > 0)) {
 115  0
             docTypeName = docTypeNames[0];
 116  
         }
 117  
 
 118  0
         if (StringUtils.isNotBlank(docTypeName)) {          
 119  0
                 if(this.getDocument() == null){
 120  0
             setDocTypeName(docTypeName);
 121  0
             Class documentClass = KRADServiceLocatorWeb.getDataDictionaryService().getDocumentClassByTypeName(docTypeName);
 122  0
             if (documentClass == null) {
 123  0
                 throw new UnknownDocumentTypeException("unable to get class for unknown documentTypeName '" + docTypeName + "'");
 124  
             }
 125  0
             if (!MaintenanceDocumentBase.class.isAssignableFrom(documentClass)) {
 126  0
                 throw new ConfigurationException("Document class '" + documentClass + "' is not assignable to '" + MaintenanceDocumentBase.class + "'");
 127  
             }
 128  0
             Document document = null;
 129  
             try {
 130  0
                 Class[] defaultConstructor = new Class[]{String.class};
 131  0
                 Constructor cons = documentClass.getConstructor(defaultConstructor);
 132  0
                 if (ObjectUtils.isNull(cons)) {
 133  0
                     throw new ConfigurationException("Could not find constructor with document type name parameter needed for Maintenance Document Base class");
 134  
                 }
 135  0
                 document = (Document) cons.newInstance(docTypeName);
 136  0
             } catch (SecurityException e) {
 137  0
                 throw new RuntimeException("Error instantiating Maintenance Document", e);
 138  0
             } catch (NoSuchMethodException e) {
 139  0
                 throw new RuntimeException("Error instantiating Maintenance Document: No constructor with String parameter found", e);
 140  0
             } catch (IllegalAccessException e) {
 141  0
                 throw new RuntimeException("Error instantiating Maintenance Document", e);
 142  0
             } catch (InstantiationException e) {
 143  0
                 throw new RuntimeException("Error instantiating Maintenance Document", e);
 144  0
             } catch (IllegalArgumentException e) {
 145  0
                 throw new RuntimeException("Error instantiating Maintenance Document", e);
 146  0
             } catch (InvocationTargetException e) {
 147  0
                 throw new RuntimeException("Error instantiating Maintenance Document", e);
 148  0
             }
 149  0
             if (document == null) {
 150  0
                 throw new RuntimeException("Unable to instantiate document with type name '" + docTypeName + "' and document class '" + documentClass + "'");
 151  
             }
 152  0
             setDocument(document);
 153  
           } 
 154  
        }
 155  
         
 156  0
         MaintenanceDocumentBase maintenanceDocument = (MaintenanceDocumentBase) getDocument();
 157  
         
 158  
         //Handling the Multi-Part Attachment
 159  0
         for ( Object obj : requestParameters.entrySet() ) {
 160  0
             String parameter = (String)((Map.Entry)obj).getKey(); 
 161  0
             if (parameter.toUpperCase().startsWith(KRADConstants.MAINTENANCE_NEW_MAINTAINABLE.toUpperCase())) {
 162  0
                 String propertyName = parameter.substring(KRADConstants.MAINTENANCE_NEW_MAINTAINABLE.length());
 163  0
                 Object propertyValue = requestParameters.get(parameter);
 164  
                 
 165  0
                 if(propertyValue != null && propertyValue instanceof FormFile) {
 166  0
                     if(StringUtils.isNotEmpty(((FormFile)propertyValue).getFileName())) {
 167  0
                         maintenanceDocument.setFileAttachment((FormFile) propertyValue);
 168  
                     }
 169  0
                     maintenanceDocument.setAttachmentPropertyName(propertyName);
 170  
                 }
 171  
             }
 172  0
         }
 173  0
     }
 174  
 
 175  
     /**
 176  
      * Hook into populate so we can set the maintenance documents and feed the field values to its maintainables.
 177  
      */
 178  
     @Override
 179  
     public void populate(HttpServletRequest request) {
 180  0
         super.populate(request);
 181  
 
 182  
 
 183  
         // document type name is null on start, otherwise should be here
 184  0
         if (StringUtils.isNotBlank(getDocTypeName())) {
 185  0
             Map<String, String> localOldMaintainableValues = new HashMap<String, String>();
 186  0
             Map<String, String> localNewMaintainableValues = new HashMap<String, String>();
 187  0
             Map<String,String> localNewCollectionValues = new HashMap<String,String>();
 188  0
             for (Enumeration i = request.getParameterNames(); i.hasMoreElements();) {
 189  0
                 String parameter = (String) i.nextElement();
 190  0
                 if (parameter.toUpperCase().startsWith(KRADConstants.MAINTENANCE_OLD_MAINTAINABLE.toUpperCase())) {
 191  0
                         if (shouldPropertyBePopulatedInForm(parameter, request)) {
 192  0
                         String propertyName = parameter.substring(KRADConstants.MAINTENANCE_OLD_MAINTAINABLE.length());
 193  0
                         localOldMaintainableValues.put(propertyName, request.getParameter(parameter));
 194  
                     }
 195  
                 }
 196  0
                 if (parameter.toUpperCase().startsWith(KRADConstants.MAINTENANCE_NEW_MAINTAINABLE.toUpperCase())) {
 197  0
                         if (shouldPropertyBePopulatedInForm(parameter, request)) {
 198  0
                         String propertyName = parameter.substring(KRADConstants.MAINTENANCE_NEW_MAINTAINABLE.length());
 199  0
                         localNewMaintainableValues.put(propertyName, request.getParameter(parameter));
 200  
                     }
 201  
                 }
 202  0
             }
 203  
             
 204  
             // now, get all add lines and store them to a separate map
 205  
             // for use in a separate call to the maintainable
 206  0
             for ( Map.Entry<String, String> entry : localNewMaintainableValues.entrySet() ) {
 207  0
                 String key = entry.getKey(); 
 208  0
                 if ( key.startsWith( KRADConstants.MAINTENANCE_ADD_PREFIX ) ) {
 209  0
                     localNewCollectionValues.put( key.substring( KRADConstants.MAINTENANCE_ADD_PREFIX.length() ),
 210  
                             entry.getValue() );
 211  
                 }
 212  0
             }
 213  0
             if ( LOG.isDebugEnabled() ) {
 214  0
                 LOG.debug( "checked for add line parameters - got: " + localNewCollectionValues );
 215  
             }
 216  
             
 217  0
             this.newMaintainableValues = localNewMaintainableValues;
 218  0
             this.oldMaintainableValues = localOldMaintainableValues;
 219  
 
 220  0
             MaintenanceDocumentBase maintenanceDocument = (MaintenanceDocumentBase) getDocument();
 221  
 
 222  0
             GlobalVariables.getMessageMap().addToErrorPath("document.oldMaintainableObject");
 223  0
             maintenanceDocument.getOldMaintainableObject().populateBusinessObject(localOldMaintainableValues, maintenanceDocument, getMethodToCall());
 224  0
             GlobalVariables.getMessageMap().removeFromErrorPath("document.oldMaintainableObject");
 225  
 
 226  0
             GlobalVariables.getMessageMap().addToErrorPath("document.newMaintainableObject");
 227  
             // update the main object
 228  0
             Map cachedValues = 
 229  
                     maintenanceDocument.getNewMaintainableObject().populateBusinessObject(localNewMaintainableValues, maintenanceDocument, getMethodToCall());
 230  
             
 231  0
             if(maintenanceDocument.getFileAttachment() != null) {
 232  0
                 populateAttachmentPropertyForBO(maintenanceDocument);
 233  
             }
 234  
             
 235  
             // update add lines
 236  0
             localNewCollectionValues = KimApiServiceLocator.getPersonService().resolvePrincipalNamesToPrincipalIds((BusinessObject)maintenanceDocument.getNewMaintainableObject().getBusinessObject(), localNewCollectionValues);
 237  0
             cachedValues.putAll( maintenanceDocument.getNewMaintainableObject().populateNewCollectionLines( localNewCollectionValues, maintenanceDocument, getMethodToCall() ) );
 238  0
             GlobalVariables.getMessageMap().removeFromErrorPath("document.newMaintainableObject");
 239  
 
 240  0
             if (cachedValues.size() > 0) {
 241  0
                 GlobalVariables.getMessageMap().putError(KRADConstants.DOCUMENT_ERRORS, RiceKeyConstants.ERROR_DOCUMENT_MAINTENANCE_FORMATTING_ERROR);
 242  0
                 for (Iterator iter = cachedValues.keySet().iterator(); iter.hasNext();) {
 243  0
                     String propertyName = (String) iter.next();
 244  0
                     String value = (String) cachedValues.get(propertyName);
 245  0
                     cacheUnconvertedValue(KRADConstants.MAINTENANCE_NEW_MAINTAINABLE + propertyName, value);
 246  0
                 }
 247  
             }
 248  
         }
 249  0
     }
 250  
 
 251  
     protected void populateAttachmentPropertyForBO(MaintenanceDocumentBase maintenanceDocument) {
 252  
         try {
 253  0
             Class type = ObjectUtils.easyGetPropertyType(maintenanceDocument.getNewMaintainableObject().getBusinessObject(), maintenanceDocument.getAttachmentPropertyName());
 254  0
             ObjectUtils.setObjectProperty(maintenanceDocument.getNewMaintainableObject().getBusinessObject(), maintenanceDocument.getAttachmentPropertyName(), type, maintenanceDocument.getFileAttachment());
 255  0
         } catch (FormatException e) {
 256  0
             throw new RuntimeException("Exception occurred while setting attachment property on NewMaintainable bo", e);
 257  0
         } catch (IllegalAccessException e) {
 258  0
             throw new RuntimeException("Exception occurred while setting attachment property on NewMaintainable bo", e);
 259  0
         } catch (NoSuchMethodException e) {
 260  0
             throw new RuntimeException("Exception occurred while setting attachment property on NewMaintainable bo", e);
 261  0
         } catch (InvocationTargetException e) {
 262  0
             throw new RuntimeException("Exception occurred while setting attachment property on NewMaintainable bo", e);
 263  0
         }
 264  0
     }
 265  
     
 266  
     /**
 267  
      * Merges rows of old and new for each section (tab) of the ui. Also, renames fields to prevent naming conflicts and does
 268  
      * setting of read only fields.
 269  
      * 
 270  
      * @return Returns the maintenanceSections.
 271  
      */
 272  
     public List getSections() {
 273  0
         if (getDocument() == null) {
 274  0
             throw new RuntimeException("Document not set in maintenance form.");
 275  
         }
 276  0
         if (((MaintenanceDocumentBase) getDocument()).getNewMaintainableObject() == null) {
 277  0
             throw new RuntimeException("New maintainable not set in document.");
 278  
         }
 279  0
         if ((KRADConstants.MAINTENANCE_EDIT_ACTION.equals(this.getMaintenanceAction())
 280  
                         || KRADConstants.MAINTENANCE_COPY_ACTION.equals(this.getMaintenanceAction())
 281  
                         || KRADConstants.MAINTENANCE_DELETE_ACTION.equals(this.getMaintenanceAction()))
 282  
                         && ((MaintenanceDocumentBase) getDocument()).getOldMaintainableObject() == null) {
 283  0
             throw new RuntimeException("Old maintainable not set in document.");
 284  
         }
 285  
 
 286  
         // if the authorization stuff hasnt been applied yet, then apply it
 287  
         //if (authorizations == null) {
 288  
         //    applyAuthorizations();
 289  
         //}
 290  
 
 291  
         
 292  
         // get business object being maintained and its keys
 293  0
         List keyFieldNames = KRADServiceLocatorWeb.getBusinessObjectMetaDataService().listPrimaryKeyFieldNames(((MaintenanceDocumentBase) getDocument()).getNewMaintainableObject().getBusinessObject().getClass());
 294  
 
 295  
         // sections for maintenance document
 296  0
         Maintainable oldMaintainable = ((MaintenanceDocumentBase) getDocument()).getOldMaintainableObject();
 297  0
         oldMaintainable.setMaintenanceAction(getMaintenanceAction());
 298  0
         List oldMaintSections = oldMaintainable.getSections((MaintenanceDocument) getDocument(), null);
 299  
         
 300  0
         Maintainable newMaintainable = ((MaintenanceDocumentBase) getDocument()).getNewMaintainableObject();
 301  0
         newMaintainable.setMaintenanceAction(getMaintenanceAction());
 302  0
         List newMaintSections = newMaintainable.getSections((MaintenanceDocument) getDocument(), oldMaintainable);
 303  0
         WorkflowDocument workflowDocument = this.getDocument().getDocumentHeader().getWorkflowDocument();
 304  0
         String documentStatus =  workflowDocument.getStatus().getCode();
 305  0
         String documentInitiatorPrincipalId = workflowDocument.getInitiatorPrincipalId();
 306  
         
 307  
 
 308  
         // mesh sections for proper jsp display
 309  0
         List meshedSections = FieldUtils.meshSections(oldMaintSections, newMaintSections, keyFieldNames, getMaintenanceAction(), isReadOnly(), authorizations, documentStatus, documentInitiatorPrincipalId);
 310  
 
 311  0
         return meshedSections;
 312  
     }    
 313  
 
 314  
     /**
 315  
      * @return Returns the maintenanceAction.
 316  
      */
 317  
     public String getMaintenanceAction() {
 318  0
         return maintenanceAction;
 319  
     }
 320  
 
 321  
     /**
 322  
      * @return Returns the businessObjectClassName.
 323  
      */
 324  
     public String getBusinessObjectClassName() {
 325  0
         return businessObjectClassName;
 326  
     }
 327  
 
 328  
     /**
 329  
      * @param businessObjectClassName The businessObjectClassName to set.
 330  
      */
 331  
     public void setBusinessObjectClassName(String businessObjectClassName) {
 332  0
         this.businessObjectClassName = businessObjectClassName;
 333  0
     }
 334  
 
 335  
     /**
 336  
      * @return Returns the description.
 337  
      */
 338  
     public String getDescription() {
 339  0
         return description;
 340  
     }
 341  
 
 342  
     /**
 343  
      * @param description The description to set.
 344  
      */
 345  
     public void setDescription(String description) {
 346  0
         this.description = description;
 347  0
     }
 348  
 
 349  
     /**
 350  
      * @return Returns the isReadOnly.
 351  
      */
 352  
     public boolean isReadOnly() {
 353  0
         return readOnly;
 354  
     }
 355  
 
 356  
     /**
 357  
      * @param readOnly The isReadOnly to set.
 358  
      */
 359  
     public void setReadOnly(boolean readOnly) {
 360  0
         this.readOnly = readOnly;
 361  0
     }
 362  
 
 363  
     /**
 364  
      * @return Returns the newMaintainableValues.
 365  
      */
 366  
     public Map getNewMaintainableValues() {
 367  0
         return newMaintainableValues;
 368  
     }
 369  
 
 370  
     /**
 371  
      * @return Returns the oldMaintainableValues.
 372  
      */
 373  
     public Map getOldMaintainableValues() {
 374  0
         return oldMaintainableValues;
 375  
     }
 376  
 
 377  
     /**
 378  
      * @param maintenanceAction The maintenanceAction to set.
 379  
      */
 380  
     public void setMaintenanceAction(String maintenanceAction) {
 381  0
         this.maintenanceAction = maintenanceAction;
 382  0
     }
 383  
 
 384  
     /**
 385  
      * Gets the authorizations attribute.
 386  
      * 
 387  
      * @return Returns the authorizations.
 388  
      */
 389  
     public MaintenanceDocumentRestrictions getAuthorizations() {
 390  0
         return authorizations;
 391  
     }
 392  
 
 393  
     /**
 394  
      * Sets the authorizations attribute value.
 395  
      * 
 396  
      * @param authorizations The authorizations to set.
 397  
      */
 398  
     public void setAuthorizations(MaintenanceDocumentRestrictions authorizations) {
 399  0
         this.authorizations = authorizations;
 400  0
     }
 401  
 
 402  
     /**
 403  
      * Sets the newMaintainableValues attribute value.
 404  
      * 
 405  
      * @param newMaintainableValues The newMaintainableValues to set.
 406  
      */
 407  
     public void setNewMaintainableValues(Map newMaintainableValues) {
 408  0
         this.newMaintainableValues = newMaintainableValues;
 409  0
     }
 410  
 
 411  
 
 412  
     /**
 413  
      * Sets the oldMaintainableValues attribute value.
 414  
      * 
 415  
      * @param oldMaintainableValues The oldMaintainableValues to set.
 416  
      */
 417  
     public void setOldMaintainableValues(Map oldMaintainableValues) {
 418  0
         this.oldMaintainableValues = oldMaintainableValues;
 419  0
     }
 420  
 
 421  
 
 422  
     public String getLookupResultsSequenceNumber() {
 423  0
         return lookupResultsSequenceNumber;
 424  
     }
 425  
 
 426  
 
 427  
     public void setLookupResultsSequenceNumber(String lookupResultsSequenceNumber) {
 428  0
         this.lookupResultsSequenceNumber = lookupResultsSequenceNumber;
 429  0
     }
 430  
 
 431  
 
 432  
     public String getLookupResultsBOClassName() {
 433  0
         return lookupResultsBOClassName;
 434  
     }
 435  
 
 436  
 
 437  
     public void setLookupResultsBOClassName(String lookupResultsBOClassName) {
 438  0
         this.lookupResultsBOClassName = lookupResultsBOClassName;
 439  0
     }
 440  
 
 441  
 
 442  
     public String getLookedUpCollectionName() {
 443  0
         return lookedUpCollectionName;
 444  
     }
 445  
 
 446  
 
 447  
     public void setLookedUpCollectionName(String lookedUpCollectionName) {
 448  0
         this.lookedUpCollectionName = lookedUpCollectionName;
 449  0
     }
 450  
 
 451  
     public String getAdditionalSectionsFile() {
 452  0
         if ( businessObjectClassName != null ) {
 453  
             try {
 454  0
                 MaintenanceDocumentDictionaryService maintenanceDocumentDictionaryService = KRADServiceLocatorWeb
 455  
                         .getMaintenanceDocumentDictionaryService();
 456  0
                 String docTypeName = maintenanceDocumentDictionaryService.getDocumentTypeName(Class.forName(businessObjectClassName));
 457  0
                 return maintenanceDocumentDictionaryService.getMaintenanceDocumentEntry(businessObjectClassName).getAdditionalSectionsFile();
 458  0
             } catch ( ClassNotFoundException ex ) {
 459  0
                 LOG.error( "Unable to resolve business object class", ex);
 460  0
             }
 461  
         }else{
 462  0
             MaintenanceDocumentDictionaryService maintenanceDocumentDictionaryService = KRADServiceLocatorWeb
 463  
                     .getMaintenanceDocumentDictionaryService();
 464  0
             return maintenanceDocumentDictionaryService.getMaintenanceDocumentEntry(this.getDocTypeName()).getAdditionalSectionsFile();
 465  
         }
 466  0
         return null;
 467  
     }
 468  
 
 469  
         /**
 470  
          * This overridden method handles the case where maint doc properties do not reflect the true nature of the 
 471  
          * 
 472  
          * @see org.kuali.rice.krad.web.struts.form.KualiForm#retrieveFormValueForLookupInquiryParameters(java.lang.String, java.lang.String)
 473  
          */
 474  
         @Override
 475  
         public String retrieveFormValueForLookupInquiryParameters(String parameterName, String parameterValueLocation) {
 476  0
                 MaintenanceDocument maintDoc = (MaintenanceDocument) getDocument();
 477  0
                 if (parameterValueLocation.toLowerCase().startsWith(KRADConstants.MAINTENANCE_OLD_MAINTAINABLE.toLowerCase())) {
 478  0
                         String propertyName = parameterValueLocation.substring(KRADConstants.MAINTENANCE_OLD_MAINTAINABLE.length());
 479  0
                         if (maintDoc.getOldMaintainableObject() != null && maintDoc.getOldMaintainableObject().getBusinessObject() != null) {
 480  0
                                 Object parameterValue = ObjectUtils.getPropertyValue(maintDoc.getOldMaintainableObject().getBusinessObject(), propertyName);
 481  0
                                 if (parameterValue == null) {
 482  0
                                         return null;
 483  
                                 }
 484  0
                                 if (parameterValue instanceof String) {
 485  0
                                         return (String) parameterValue;
 486  
                                 }
 487  0
                                 Formatter formatter = Formatter.getFormatter(parameterValue.getClass());
 488  0
                                 return (String) formatter.format(parameterValue); 
 489  
                         }
 490  
                 }
 491  0
                 if (parameterValueLocation.toLowerCase().startsWith(KRADConstants.MAINTENANCE_NEW_MAINTAINABLE.toLowerCase())) {
 492  
                         // remove MAINT_NEW_MAINT from the pVL
 493  0
                         String propertyName = parameterValueLocation.substring(KRADConstants.MAINTENANCE_NEW_MAINTAINABLE.length());
 494  0
                         String addPrefix = KRADConstants.ADD_PREFIX.toLowerCase() + ".";
 495  
 
 496  0
                         if (propertyName.toLowerCase().startsWith(addPrefix)) { // 
 497  0
                                 propertyName = propertyName.substring(addPrefix.length()); // remove addPrefix from the propertyName
 498  0
                                 String collectionName = parseAddCollectionName(propertyName);
 499  0
                                 propertyName = propertyName.substring(collectionName.length()); // remove collectionName from pN
 500  0
                                 if (propertyName.startsWith(".")) { propertyName = propertyName.substring(1); } // strip beginning "."
 501  0
                                 PersistableBusinessObject newCollectionLine = 
 502  
                                         maintDoc.getNewMaintainableObject().getNewCollectionLine(collectionName);
 503  0
                                 Object parameterValue = ObjectUtils.getPropertyValue(newCollectionLine, propertyName);
 504  0
                                 if (parameterValue == null) {
 505  0
                                         return null;
 506  
                                 }
 507  0
                                 if (parameterValue instanceof String) {
 508  0
                                         return (String) parameterValue;
 509  
                                 }
 510  0
                                 Formatter formatter = Formatter.getFormatter(parameterValue.getClass());
 511  0
                                 return (String) formatter.format(parameterValue);
 512  0
                         } else if (maintDoc.getNewMaintainableObject() != null && maintDoc.getNewMaintainableObject().getBusinessObject() != null) {
 513  0
                                 Object parameterValue = ObjectUtils.getPropertyValue(maintDoc.getNewMaintainableObject().getBusinessObject(), propertyName);
 514  0
                                 if (parameterValue == null) {
 515  0
                                         return null;
 516  
                                 }
 517  0
                                 if (parameterValue instanceof String) {
 518  0
                                         return (String) parameterValue;
 519  
                                 }
 520  0
                                 Formatter formatter = Formatter.getFormatter(parameterValue.getClass());
 521  0
                                 return (String) formatter.format(parameterValue); 
 522  
                         }
 523  
                 }
 524  0
                 return super.retrieveFormValueForLookupInquiryParameters(parameterName, parameterValueLocation);
 525  
         }
 526  
 
 527  
         /**
 528  
          * This method returns the collection name (including nested collections) from a propertyName string
 529  
          * 
 530  
          * @param propertyName a parameterValueLocation w/ KRADConstants.MAINTENANCE_NEW_MAINTAINABLE +
 531  
          * KRADConstants.ADD_PREFIX + "." stripped off the front
 532  
          * @return the collectionName
 533  
          */
 534  
         protected String parseAddCollectionName(String propertyName) {
 535  0
                 StringBuilder collectionNameBuilder = new StringBuilder();
 536  
 
 537  0
                 boolean firstPathElement = true;
 538  0
                 for (String pathElement : propertyName.split("\\.")) if (!StringUtils.isBlank(pathElement)) {
 539  0
                         if (firstPathElement) {
 540  0
                                 firstPathElement = false;
 541  
                         } else {
 542  0
                                 collectionNameBuilder.append(".");
 543  
                         }
 544  0
                         collectionNameBuilder.append(pathElement);
 545  0
                         if (!(pathElement.endsWith("]") && pathElement.contains("["))) break; 
 546  
                 }
 547  0
                 String collectionName = collectionNameBuilder.toString();
 548  0
                 return collectionName;
 549  
         }
 550  
 
 551  
 
 552  
         /**
 553  
          * This overridden method ...
 554  
          * 
 555  
          * @see org.kuali.rice.krad.web.struts.form.KualiDocumentFormBase#shouldPropertyBePopulatedInForm(java.lang.String, javax.servlet.http.HttpServletRequest)
 556  
          */
 557  
         @Override
 558  
         public boolean shouldPropertyBePopulatedInForm(
 559  
                         String requestParameterName, HttpServletRequest request) {
 560  
                 // the user clicked on a document initiation link
 561  
                 //add delete check for 3070
 562  0
                 String methodToCallActionName = request.getParameter(KRADConstants.DISPATCH_REQUEST_PARAMETER);
 563  0
                 if (StringUtils.equals(methodToCallActionName, KRADConstants.MAINTENANCE_COPY_METHOD_TO_CALL) ||
 564  
                                 StringUtils.equals(methodToCallActionName, KRADConstants.MAINTENANCE_EDIT_METHOD_TO_CALL) ||
 565  
                                 StringUtils.equals(methodToCallActionName, KRADConstants.MAINTENANCE_NEW_METHOD_TO_CALL) ||
 566  
                                 StringUtils.equals(methodToCallActionName, KRADConstants.MAINTENANCE_NEWWITHEXISTING_ACTION) ||
 567  
                                 StringUtils.equals(methodToCallActionName, KRADConstants.MAINTENANCE_DELETE_METHOD_TO_CALL)) {
 568  0
                         return true;
 569  
                 }
 570  0
                 if ( StringUtils.indexOf(methodToCallActionName, KRADConstants.TOGGLE_INACTIVE_METHOD ) == 0 ) {
 571  0
                         return true;
 572  
                 }
 573  0
                 return super.shouldPropertyBePopulatedInForm(requestParameterName, request);
 574  
         }
 575  
 
 576  
         /**
 577  
          * This overridden method ...
 578  
          * 
 579  
          * @see org.kuali.rice.krad.web.struts.form.KualiDocumentFormBase#shouldMethodToCallParameterBeUsed(java.lang.String, java.lang.String, javax.servlet.http.HttpServletRequest)
 580  
          */
 581  
         @Override
 582  
         public boolean shouldMethodToCallParameterBeUsed(
 583  
                         String methodToCallParameterName,
 584  
                         String methodToCallParameterValue, HttpServletRequest request) {
 585  
                 // the user clicked on a document initiation link
 586  0
                 if (StringUtils.equals(methodToCallParameterValue, KRADConstants.MAINTENANCE_COPY_METHOD_TO_CALL) ||
 587  
                                 StringUtils.equals(methodToCallParameterValue, KRADConstants.MAINTENANCE_EDIT_METHOD_TO_CALL) ||
 588  
                                 StringUtils.equals(methodToCallParameterValue, KRADConstants.MAINTENANCE_NEW_METHOD_TO_CALL) ||
 589  
                                 StringUtils.equals(methodToCallParameterValue, KRADConstants.MAINTENANCE_NEWWITHEXISTING_ACTION) ||
 590  
                                 StringUtils.equals(methodToCallParameterValue, KRADConstants.MAINTENANCE_DELETE_METHOD_TO_CALL)) {
 591  0
                         return true;
 592  
                 }
 593  0
                 if ( StringUtils.indexOf(methodToCallParameterName, KRADConstants.DISPATCH_REQUEST_PARAMETER + "." + KRADConstants.TOGGLE_INACTIVE_METHOD ) == 0 ) {
 594  0
                         return true;
 595  
                 }
 596  0
                 return super.shouldMethodToCallParameterBeUsed(methodToCallParameterName,
 597  
                                 methodToCallParameterValue, request);
 598  
         }
 599  
 }
 600  
 
 601