Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.
Comment: Migration of unmigrated content due to installation of a new plugin

...

Two other fields, entry method and current location fitness will use the UI interface to edit list items.

Wiki Markup
{composition-setup}{composition-setup}
Remove unused fields from core.messages.bundle

The Intake section now looks like this Wiki Markup{toggle-cloak:id=i11}

Wiki Markup
{cloak:id=i11}
Code Block
controlstrue
languagexml
linenumbersfalse
#intake:
#intake-insuranceRenewalDateLabel: Renewal Date
intake-currentLocationGroupLabel: Current Location
#intake-valuerLabel: Valuer
#intake-fieldCollectionMethodsLabel: Field collection method
intake-Label: Method
#intake-valuationInformationLabel: Valuation
intake-conditionCheckReasonsLabel: Condition Check Reason
#intake-normalLocationLabel: Normal Location
intake-entryNoteLabel: Entry Note
#intake-fieldCollectionNumberLabel: Field collection number
#intake-insurersLabel: Insurer
intake-returnDateLabel: Return Date
intake-conditionInformationLabel: Condition
intake-objectEntryInformationLabel: Object Entry
#intake-fieldCollectionPlaceLabel: Field collection place
intake-entryReasonLabel: Entry Reason
intake-locationInformationLabel: Location
#intake-fieldCollectionEventNameLabel: Field collection event name
#intake-fieldCollectionEventNamesLabel: Field collection event name
intake-depositorsRequirementsLabel: Depositor Requirements
intake-depositorLabel: Depositor
#intake-fieldCollectionDateLabel: Field Collection Date
#intake-fieldCollectionNoteLabel: Field collection note
intake-currentOwnerLabel: Current Owner
intake-conditionCheckMethodsLabel: Condition Check Method
intake-locationDateLabel: Location Date
#intake-valuationReferenceNumberLabel: Reference Number
#intake-insuranceReferenceNumberLabel: Reference Number
#intake-insuranceNoteLabel: Insurance Note
#intake-fieldCollectionSourcesLabel: Field collection source
intake-entryNumberLabel: Intake Entry Number
intake-conditionCheckDateLabel: Condition Check Date
#intake-insuranceInformationLabel: Insurance
intake-conditionCheckNoteLabel: Condition Check Note
intake-entryDateLabel: Entry Date
#intake-conditionCheckReferenceNumberLabel: Condition Check Reference Number
#intake-insurancePolicyNumberLabel: Policy Number
#intake-fieldCollectorsLabel: Field collector
#intake-objectCollectionInformationLabel: Object Collection Information
intake-conditionCheckersOrAssessorsLabel: Condition checker
intake-depositorGroupLabel:Depositor
intake-packingNoteLabel:Packing Note
intake-currentLocationLabel:Current Location
intake-currentLocationFitnessLabel: Current Location Fitness
intake-currentLocationNoteLabel: Current Location Note
intake-entryMethodsLabel: Entry Method
intake-entryMethodLabel: Entry Method
intake-updatedAtLabel: Modified Date
intake-updatedAtStartLabel: Earliest
intake-updatedAtEndLabel: Latest
intake-editUsernameLabel: Record Modified By
intake-createdAtLabel:
intake-tenantIDLabel:
intake-entryDateStartLabel: Earliest
intake-entryDateEndLabel: Latest
intake-returnDateStartLabel: Earliest
intake-returnDateEndLabel: Latest

Note the change for intake-conditionCheckersOrAssessorsLabel

Wiki Markup
{cloak}
Remove fields and information groups from the IntakeTemplate.html

...

1. Make the following changes to base-procedure-intake.xml

Wiki Markup
{toggle-cloak:id=i12}

Wiki Markup
{cloak:id=i12}
Code Block
controlstrue
languagexml
linenumbersfalse
<section id="conditionInformation">
      <repeat id="conditionCheckMethods">
          <!--<field id="conditionCheckMethod" autocomplete="vocab-conditioncheckmethod" ui-type="enum"></field>-->
          <field id="conditionCheckMethod">
              <selector>intake-conditionCheckMethod</selector>
          </field>
      </repeat>
      <repeat id="conditionCheckReasons">
          <!--<field id="conditionCheckReason" autocomplete="vocab-conditioncheckreason" ui-type="enum"></field>-->
          <field id="conditionCheckReason">
              <selector>intake-conditionCheckReason</selector>
          </field>
      </repeat>
      
...
Wiki Markup
{cloak}

2. Make the following changes to IntakeTemplate.html

Wiki Markup
{toggle-cloak:id=i13}

unmigrated-inline-wiki-markup

{cloak:id=i13}

Change from <select ... into <input ...

Code Block
controlstrue
languagehtml
linenumbersfalse
                        <div class="info-pair">
                            <div class="header">
                                <div class="label csc-intake-conditionCheckMethods-label"></div>
                            </div>
                            <div class="content">
                                <!--<select class="input-select csc-intake-conditionCheckMethodx"><option value="">Options not loaded</option></select>-->
                                <input type="text" class="csc-intake-conditionCheckMethod" />
                            </div>
                        </div>
                        
                        <div class="info-pair">
                            <div class="header">
                                <div class="label csc-intake-conditionCheckReasons-label"></div>
                            </div>
                            <div class="content">
                                <!--<select class="input-select csc-intake-conditionCheckReasonx"><option value="">Options not loaded</option></select>-->
                                <input type="text" class="csc-intake-conditionCheckReason" />
                            </div>
                        </div>

Wiki Markup
{cloak}

Not sure if there needs to be any additional changes to anything in the app or UI layers...