|
Lines 83-91
Link Here
|
| 83 |
Checkout notes |
83 |
Checkout notes |
| 84 |
</div> |
84 |
</div> |
| 85 |
|
85 |
|
| 86 |
<div id="doc" class="yui-t7"> <!-- <div id="doc3" class="yui-t2" --> |
86 |
[% IF Koha.Preference('CircSidebar') %]<div id="doc3" class="yui-t2">[% ELSE %]<div id="doc" class="yui-t7">[% END %] |
| 87 |
<div id="bd"> |
87 |
<div id="bd"> |
| 88 |
<div id="yui-main"> |
88 |
<div id="yui-main"> |
|
|
89 |
[% IF Koha.Preference('CircSidebar') %]<div class="yui-b">[% END %] |
| 89 |
|
90 |
|
| 90 |
<h1>Checkout notes</h1> |
91 |
<h1>Checkout notes</h1> |
| 91 |
|
92 |
|
|
Lines 128-147
Link Here
|
| 128 |
[% FOREACH note IN notes %] |
129 |
[% FOREACH note IN notes %] |
| 129 |
<tr> |
130 |
<tr> |
| 130 |
<td><input type="checkbox" name="issue_ids" value="[% note.issue_id %]"></td> |
131 |
<td><input type="checkbox" name="issue_ids" value="[% note.issue_id %]"></td> |
| 131 |
<td>[% note.item.biblionumber.title %] - [% note.item.biblionumber.author %] (<a href="/cgi-bin/koha/catalogue/detail.pl?biblionumber=[% note.item.biblionumber.biblionumber %]">[% note.item.barcode %]</a>)</td> |
132 |
<td>[% note.item.biblio.title %] - [% note.item.biblio.author %] (<a href="/cgi-bin/koha/catalogue/detail.pl?biblionumber=[% note.item.biblionumber %]">[% note.item.barcode %]</a>)</td> |
| 132 |
<td>[% note.note %]</td> |
133 |
<td>[% note.note %]</td> |
| 133 |
<td>[% note.notedate | $KohaDates %]</td> |
134 |
<td>[% note.notedate | $KohaDates %]</td> |
| 134 |
<td>[% note.borrower.firstname %] [% note.borrower.surname %] (<a href="/cgi-bin/koha/circ/circulation.pl?borrowernumber=[% note.borrower.borrowernumber %]">[% note.borrower.cardnumber %]</a>)</td> |
135 |
<td>[% IF ( note.borrower.title ) %][% note.borrower.title %] [% END %][% note.borrower.firstname %] [% note.borrower.surname %] (<a href="/cgi-bin/koha/circ/circulation.pl?borrowernumber=[% note.borrower.borrowernumber %]">[% note.borrower.cardnumber %]</a>)</td> |
| 135 |
<td>[% IF ( note.noteseen == 0 ) %] |
136 |
<td> |
| 136 |
<span id="status_[% note.issue_id %]">Not seen</span> |
137 |
[% IF ( note.noteseen == 0 ) %] |
| 137 |
[% ELSIF ( note.noteseen == 1 ) %] |
138 |
<span id="status_[% note.issue_id %]">Not seen</span> |
| 138 |
<span id="status_[% note.issue_id %]">Seen</span> |
139 |
[% ELSIF ( note.noteseen == 1 ) %] |
| 139 |
[% END %]</td> |
140 |
<span id="status_[% note.issue_id %]">Seen</span> |
| 140 |
<td class="actions">[% IF ( note.noteseen == 1 ) %] |
141 |
[% END %] |
| 141 |
<button name="seen" data-issue_id="[% note.issue_id %]" class="seen btn btn-default btn-xs" disabled="disabled"><i class="fa fa-eye"></i> Mark seen</button> <button name="notseen" data-issue_id="[% note.issue_id %]" class="notseen btn btn-default btn-xs"><i class="fa fa-eye-slash"></i> Mark not seen</button> |
142 |
</td> |
| 142 |
[% ELSIF ( note.noteseen == 0 ) %] |
143 |
<td class="actions"> |
| 143 |
<button name="seen" data-issue_id="[% note.issue_id %]" class="seen btn btn-default btn-xs"><i class="fa fa-eye"></i> Mark seen</button> <button name="notseen" data-issue_id="[% note.issue_id %]" class="notseen btn btn-default btn-xs" disabled="disabled"><i class="fa fa-eye-slash"></i> Mark not seen</button> |
144 |
[% IF ( note.noteseen == 1 ) %] |
| 144 |
[% END %]</td> |
145 |
<button name="seen" data-issue_id="[% note.issue_id %]" class="seen btn btn-default btn-xs" disabled="disabled"><i class="fa fa-eye"></i> Mark seen</button> <button name="notseen" data-issue_id="[% note.issue_id %]" class="notseen btn btn-default btn-xs"><i class="fa fa-eye-slash"></i> Mark not seen</button> |
|
|
146 |
[% ELSIF ( note.noteseen == 0 ) %] |
| 147 |
<button name="seen" data-issue_id="[% note.issue_id %]" class="seen btn btn-default btn-xs"><i class="fa fa-eye"></i> Mark seen</button> <button name="notseen" data-issue_id="[% note.issue_id %]" class="notseen btn btn-default btn-xs" disabled="disabled"><i class="fa fa-eye-slash"></i> Mark not seen</button> |
| 148 |
[% END %] |
| 149 |
</td> |
| 145 |
</tr> |
150 |
</tr> |
| 146 |
[% END %] |
151 |
[% END %] |
| 147 |
</tbody> |
152 |
</tbody> |
|
Lines 158-164
Link Here
|
| 158 |
|
163 |
|
| 159 |
[% END %] <!-- selected_count --> |
164 |
[% END %] <!-- selected_count --> |
| 160 |
|
165 |
|
| 161 |
</div> <!-- yui-main --> |
166 |
</div> <!-- yui-main --> |
|
|
167 |
|
| 168 |
[% IF Koha.Preference('CircSidebar') %] |
| 169 |
</div> |
| 170 |
<div class="yui-b noprint"> |
| 171 |
[% INCLUDE 'circ-nav.inc' %] |
| 172 |
</div> |
| 173 |
[% END %] |
| 162 |
</div> <!-- bd --> |
174 |
</div> <!-- bd --> |
| 163 |
</div> <!-- doc3 --> |
175 |
</div> <!-- doc3 --> |
| 164 |
|
176 |
|
| 165 |
- |
|
|