Merge remote-tracking branch 'origin/new/bug_7986'
authorPaul Poulain <paul.poulain@biblibre.com>
Thu, 4 Oct 2012 16:12:14 +0000 (18:12 +0200)
committerPaul Poulain <paul.poulain@biblibre.com>
Thu, 4 Oct 2012 16:12:14 +0000 (18:12 +0200)
1  2 
koha-tmpl/intranet-tmpl/prog/en/modules/circ/circulation.tt

@@@ -364,19 -364,8 +364,19 @@@ function validate1(date) 
  [% IF ( ITEM_LOST ) %]
      <li>This item has been lost with a status of "[% ITEM_LOST %]". Check out anyway?</li>
  [% END %]
 +
 +[% IF  HIGHHOLDS %]
 +      <li>High demand item. Loan period shortened to [% HIGHHOLDS.duration %] days (due [% HIGHHOLDS.returndate %]). Check out anyway?</li>
 +[% END %]
  </ul>
  
 +[% IF HIGHHOLDS %]
 +      <script language="JavaScript" type="text/javascript">
 +      $(document).ready(function() {
 +              $("input[name=duedatespec]:hidden").val('[% HIGHHOLDS.returndate %]');
 +      });
 +      </script>
 +[% END %]
  <form method="post" action="/cgi-bin/koha/circ/circulation.pl" autocomplete="off">
  
  [% IF ( RESERVED ) %]
@@@ -774,7 -763,9 +774,9 @@@ No patron matched <span class="ex">[% m
          <th scope="col">Price</th>
          <th scope="col">Renew <p class="column-tool"><a href="#" id="CheckAllitems">select all</a> | <a href="#" id="CheckNoitems">none</a></p></th>
          <th scope="col">Check in <p class="column-tool"><a href="#" id="CheckAllreturns">select all</a> | <a href="#" id="CheckNoreturns">none</a></p></th>
-         <th scope="col">Export <p class="column-tool"><a href="#" id="CheckAllexports">select all</a> | <a href="#" id="CheckNoexports">none</a></p></th>
+         [% IF export_remove_fields OR export_with_csv_profile %]
+           <th scope="col">Export <p class="column-tool"><a href="#" id="CheckAllexports">select all</a> | <a href="#" id="CheckNoexports">none</a></p></th>
+         [% END %]
      </tr>
  [% IF ( todayissues ) %]</thead>
  [% INCLUDE 'checkouts-table-footer.inc' %]
              </td>
              [% END %]
          [% END %]
-         <td style="text-align:center;">
+         [% IF export_remove_fields OR export_with_csv_profile %]
+           <td style="text-align:center;">
              <input type="checkbox" id="export_[% todayissue.biblionumber %]" name="biblionumbers" value="[% todayissue.biblionumber %]" />
              <input type="checkbox" name="itemnumbers" value="[% todayissue.itemnumber %]" style="visibility:hidden;" />
-         </td>
+           </td>
+         [% END %]
      </tr>
      [% END %] <!-- /loop todayissues -->
      <!-- /if todayissues -->[% END %]
          </td>
          [% END %]
                  [% IF ( previssue.return_failed ) %]
 -            <td class="problem">Checkin failed</td>
 +            <td class="problem">Check-in failed</td>
          [% ELSE %]
              [% IF ( previssue.renew_error_on_reserve ) %]
                 <td><a href="/cgi-bin/koha/reserve/request.pl?biblionumber=[% previssue.biblionumber %]">On hold</a>
              </td>
              [% END %]
          [% END %]
-         <td style="text-align:center;">
+         [% IF export_remove_fields OR export_with_csv_profile %]
+           <td style="text-align:center;">
              <input type="checkbox" id="export_[% previssue.biblionumber %]" name="biblionumbers" value="[% previssue.biblionumber %]" />
              <input type="checkbox" name="itemnumbers" value="[% previssue.itemnumber %]" style="visibility:hidden;" />
-         </td>
+           </td>
+         [% END %]
      </tr>
      <!-- /loop previssues -->[% END %]
  <!--/if previssues -->[% END %]
          [% END %]
          <input type="submit" name="renew_checked" value="Renew or Return checked items" />
          <input type="submit" id="renew_all" name="renew_all" value="Renew all" />
-         <br/><br/>
-         Don't export fields : <input type="text" id="export_remove_fields" name="export_remove_fields" value="[% export_remove_fields %]" title="Use for iso2709 exports" />
-         <span id="exportmenuc">Export</span>
-         <input type="hidden" name="op" value="export" />
-         <input type="hidden" id="export_format" name="format" value="iso2709" />
-         <input type="hidden" id="dont_export_item" name="dont_export_item" value="0" />
-         <input type="hidden" id="record_type" name="record_type" value="bibs" />
+         [% IF export_remove_fields OR export_with_csv_profile %]
+             <br/><br/>
+             Don't export fields : <input type="text" id="export_remove_fields" name="export_remove_fields" value="[% export_remove_fields %]" title="Use for iso2709 exports" />
+             <span id="exportmenuc">Export</span>
+             <input type="hidden" name="op" value="export" />
+             <input type="hidden" id="export_format" name="format" value="iso2709" />
+             <input type="hidden" id="dont_export_item" name="dont_export_item" value="0" />
+             <input type="hidden" id="record_type" name="record_type" value="bibs" />
+         [% END %]
      </fieldset>
      [% END %]
      </form>