Changeset 1956


Ignore:
Timestamp:
Apr 25, 2013, 9:19:36 AM (10 years ago)
Author:
olle
Message:

Fixes #486. Monthly operation list export updated by not including "Specimen/NoSpecimen" sub-types and patient ID in the export:

  • JSP script export_monthly_oplist.jsp in reggie/resources/personal/ updated by removal of the check boxes for optional columns and always setting the values of boolean variables exportSubtype and exportPatientId to 0 when calling servlet ExportServlet.java in reggie/src/net/sf/basedb/reggie/servlet/with variable cmd set to "ExportMontlyOpList".


File:
1 edited

Legend:

Unmodified
Added
Removed
  • extensions/net.sf.basedb.reggie/trunk/resources/personal/export_monthly_oplist.jsp

    r1915 r1956  
    4040  var url = '../Export.servlet?ID=<%=ID%>&cmd=ExportMonthlyOpList';
    4141  url += '&time=' + frm.time.value;
    42   url += '&exportSubtype='+(frm.exportSubtype.checked ? 1 : 0);
    43   url += '&exportPatientId='+(frm.exportPatientId.checked ? 1 : 0);
     42  url += '&exportSubtype=0';
     43  url += '&exportPatientId=0';
    4444  if (preview)
    4545  {
     
    248248      </tr>
    249249     
    250       <tr style="vertical-align: top;">
    251         <td class="prompt">Optional columns</td>
    252         <td class="input">
    253           <input type="checkbox" name="exportSubtype" value="1" id="exportSubtype">
    254           <label for="exportSubtype">Specimen/NoSpecimen</label><br>
    255           <input type="checkbox" name="exportPatientId" value="1" id="exportPatientId">
    256           <label for="exportPatientId">Patient ID</label>
    257         </td>
    258         <td class="help"><span id="subtype.message" class="message" style="display: none;"></span></td>
    259       </tr>
    260250      </table>
    261251    </td>
Note: See TracChangeset for help on using the changeset viewer.