ng-show="tab_inbound">[% l('Receive Item') %]</a></li>
<li><a href="javascript:;" ng-click="checkin()"
ng-show="tab_circulating && orientation_borrower">[% l('Check In') %]</a></li>
- <!-- We need an on-shelf tab for this action to have a home
- <li><a href="javascript:;"
- ng-show="">Check Out</a></li>
- -->
+ <li><a href="javascript:;" ng-click="checkout()"
+ ng-show="tab_onshelf">[% l('Check Out') %]</a></li>
<li><a href="javascript:;" ng-click="mark_lost()"
ng-show="tab_circulating && orientation_borrower">[% l('Mark Lost') %]</a></li>
<li><a href="javascript:;" ng-click="print()">[% l('Print') %]</a></li>
<div class="col-lg-6">
<ul class="nav nav-pills">
<li ng-class="{active : orientation_borrower}">
- <a href="./fulfillment/borrower/{{tabname}}">For My Patrons</a>
+ <a href="./fulfillment/borrower/{{tabname}}">[% l('To My Patrons') %]</a>
</li>
<li ng-class="{active : orientation_lender}">
- <a href="./fulfillment/lender/{{tabname}}">For Other Libraries</a>
+ <a href="./fulfillment/lender/{{tabname}}">[% l('To Other Libraries') %]</a>
</li>
</ul>
</div>
<div class="col-lg-6">
<ul class="nav nav-pills">
<li ng-class="{active : orientation_borrower}">
- <a href="./fulfillment/borrower/{{tabname}}">Items For My Patrons</a>
+ <a href="./fulfillment/borrower/{{tabname}}">[% l('ILLs For My Patrons') %]</a>
</li>
<li ng-class="{active : orientation_lender}">
- <a href="./fulfillment/lender/{{tabname}}">My Returns</a>
+ <a href="./fulfillment/lender/{{tabname}}">[% l('My Returns') %]</a>
</li>
</ul>
</div>
<th ng-show="tab_onshelf">[% l('Shelf Date') %]</th>
<!-- circ columns -->
+ <th ng-show="tab_circulating">[% l('Patron Name') %]</th>
+ <th ng-show="tab_circulating">[% l('Patron Barcode') %]</th>
<th ng-show="tab_circulating">[% l('Checkout Date') %]</th>
<th ng-show="tab_circulating">[% l('Due Date') %]</th>
<th ng-show="tab_circulating">[% l('Circulating Library') %]</th>
<td ng-show="tab_inbound || tab_outbound">{{item.transit_source}}</td>
<td ng-show="tab_inbound || tab_outbound">{{item.transit_dest}}</td>
<td ng-show="tab_onshelf">{{item.hold_shelf_time | date}}</td>
+ <td ng-show="tab_circulating">{{item.circ_usr_name}}</td>
+ <td ng-show="tab_circulating">{{item.circ_usr}}</td>
<td ng-show="tab_circulating">{{item.circ_xact_start | date}}</td>
<td ng-show="tab_circulating">{{item.due_date | date}}</td>
<td ng-show="tab_circulating">{{item.circ_circ_lib}}</td>
<div class="col-lg-6">
<ul class="nav nav-pills">
<li ng-class="{active : orientation_lender}">
- <a href="./fulfillment/lender/{{tabname}}">Items For Other Libraries</a>
+ <a href="./fulfillment/lender/{{tabname}}">[% l('ILLs to Other Libraries') %]</a>
</li>
<li ng-class="{active : orientation_borrower}">
- <a href="./fulfillment/borrower/{{tabname}}">Returns to Other Libraries</a>
+ <a href="./fulfillment/borrower/{{tabname}}">[% l('Returns to Other Libraries') %]</a>
</li>
</ul>
</div>
<div class="col-lg-6">
<ul class="nav nav-pills">
<li ng-class="{active : orientation_borrower}">
- <a href="./fulfillment/borrower/{{tabname}}">[% l('Hold for My Patrons') %]</a>
+ <a href="./fulfillment/borrower/{{tabname}}">[% l('Requests By My Patrons') %]</a>
</li>
<li ng-class="{active : orientation_lender}">
- <a href="./fulfillment/lender/{{tabname}}">[% l('Holds for Other Libraries') %]</a>
+ <a href="./fulfillment/lender/{{tabname}}">[% l('Requests From Other Libraries') %]</a>
</li>
</ul>
</div>
<th>[% l('Expire Date') %]</th>
<th>[% l('Requesting Patron') %]</th>
<th>[% l('Requesting Library') %]</th>
- <th>[% l('Current Copy') %]</th>
+ <th>[% l('Targeted Copy') %]</th>
<th>[% l('Copy Library') %]</th>
<th>[% l('Title') %]</th>
</tr>
item.circ_stop_fines = circ.stop_fines();
item.circ_usr = circ.usr().card() ?
circ.usr().card().barcode() : circ.usr().usrname();
+ item.circ_usr_name = circ.usr().first_given_name() + ' ' + circ.usr().family_name() // i18n
item.can_mark_lost = (item.circ && item.copy.status().id() == 1); // checked out
}