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 127-146
Link Here
|
127 |
[% FOREACH note IN notes %] |
128 |
[% FOREACH note IN notes %] |
128 |
<tr> |
129 |
<tr> |
129 |
<td><input type="checkbox" name="issue_ids" value="[% note.issue_id %]"></td> |
130 |
<td><input type="checkbox" name="issue_ids" value="[% note.issue_id %]"></td> |
130 |
<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> |
131 |
<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> |
131 |
<td>[% note.note %]</td> |
132 |
<td>[% note.note %]</td> |
132 |
<td>[% note.notedate | $KohaDates %]</td> |
133 |
<td>[% note.notedate | $KohaDates %]</td> |
133 |
<td>[% note.borrower.firstname %] [% note.borrower.surname %] (<a href="/cgi-bin/koha/circ/circulation.pl?borrowernumber=[% note.borrower.borrowernumber %]">[% note.borrower.cardnumber %]</a>)</td> |
134 |
<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> |
134 |
<td>[% IF ( note.noteseen == 0 ) %] |
135 |
<td> |
135 |
<span id="status_[% note.issue_id %]">Not seen</span> |
136 |
[% IF ( note.noteseen == 0 ) %] |
136 |
[% ELSIF ( note.noteseen == 1 ) %] |
137 |
<span id="status_[% note.issue_id %]">Not seen</span> |
137 |
<span id="status_[% note.issue_id %]">Seen</span> |
138 |
[% ELSIF ( note.noteseen == 1 ) %] |
138 |
[% END %]</td> |
139 |
<span id="status_[% note.issue_id %]">Seen</span> |
139 |
<td class="actions">[% IF ( note.noteseen == 1 ) %] |
140 |
[% END %] |
140 |
<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> |
141 |
</td> |
141 |
[% ELSIF ( note.noteseen == 0 ) %] |
142 |
<td class="actions"> |
142 |
<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> |
143 |
[% IF ( note.noteseen == 1 ) %] |
143 |
[% END %]</td> |
144 |
<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> |
|
|
145 |
[% ELSIF ( note.noteseen == 0 ) %] |
146 |
<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> |
147 |
[% END %] |
148 |
</td> |
144 |
</tr> |
149 |
</tr> |
145 |
[% END %] |
150 |
[% END %] |
146 |
</tbody> |
151 |
</tbody> |
Lines 157-163
Link Here
|
157 |
|
162 |
|
158 |
[% END %] <!-- selected_count --> |
163 |
[% END %] <!-- selected_count --> |
159 |
|
164 |
|
160 |
</div> <!-- yui-main --> |
165 |
</div> <!-- yui-imain --> |
|
|
166 |
|
167 |
[% IF Koha.Preference('CircSidebar') %] |
168 |
</div> |
169 |
|
170 |
<div class="yui-b noprint"> |
171 |
[% INCLUDE 'circ-nav.inc' %] |
172 |
</div> |
173 |
[% END %] |
174 |
|
161 |
</div> <!-- bd --> |
175 |
</div> <!-- bd --> |
162 |
</div> <!-- doc3 --> |
176 |
</div> <!-- doc3 --> |
163 |
|
177 |
|
164 |
- |
|
|