View | Details | Raw Unified | Return to bug 17698
Collapse All | Expand All

(-)a/Koha/Schema/Result/Issue.pm (-2 / +9 lines)
Lines 112-117 __PACKAGE__->table("issues"); Link Here
112
  datetime_undef_if_invalid: 1
112
  datetime_undef_if_invalid: 1
113
  is_nullable: 1
113
  is_nullable: 1
114
114
115
=head2 noteseen
116
117
  data_type: 'integer'
118
  is_nullable: 1
119
115
=cut
120
=cut
116
121
117
__PACKAGE__->add_columns(
122
__PACKAGE__->add_columns(
Lines 170-175 __PACKAGE__->add_columns( Link Here
170
    datetime_undef_if_invalid => 1,
175
    datetime_undef_if_invalid => 1,
171
    is_nullable => 1,
176
    is_nullable => 1,
172
  },
177
  },
178
  "noteseen",
179
  { data_type => "integer", is_nullable => 1 },
173
);
180
);
174
181
175
=head1 PRIMARY KEY
182
=head1 PRIMARY KEY
Lines 241-248 __PACKAGE__->belongs_to( Link Here
241
);
248
);
242
249
243
250
244
# Created by DBIx::Class::Schema::Loader v0.07042 @ 2018-02-16 17:54:53
251
# Created by DBIx::Class::Schema::Loader v0.07042 @ 2018-06-05 23:11:40
245
# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:skFfce3y1eEx3rSdFaLmPg
252
# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:QTDac8miU8pYCJsmIcWhvQ
246
253
247
__PACKAGE__->belongs_to(
254
__PACKAGE__->belongs_to(
248
    "borrower",
255
    "borrower",
(-)a/koha-tmpl/intranet-tmpl/prog/en/modules/circ/checkout-notes.tt (-1 / +1 lines)
Lines 64-70 Link Here
64
                                        <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>
64
                                        <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>
65
                                        <td>[% note.note %]</td>
65
                                        <td>[% note.note %]</td>
66
                                        <td>[% note.notedate | $KohaDates %]</td>
66
                                        <td>[% note.notedate | $KohaDates %]</td>
67
                                        <td>[% IF note.patron.title %][% note.patron.title %][% END %][% note.patron.firstname %] [% note.patron.surname %] (<a href="/cgi-bin/koha/circ/circulation.pl?borrowernumber=[% note.patron.borrowernumber %]">[% note.patron.cardnumber %]</a>)</td>
67
                                        <td>[% IF note.patron.title %][% note.patron.title %] [% END %][% note.patron.firstname %] [% note.patron.surname %] (<a href="/cgi-bin/koha/circ/circulation.pl?borrowernumber=[% note.patron.borrowernumber %]">[% note.patron.cardnumber %]</a>)</td>
68
                                        <td>
68
                                        <td>
69
                                            [% IF ( note.noteseen == 0 ) %]
69
                                            [% IF ( note.noteseen == 0 ) %]
70
                                                <span id="status_[% note.issue_id %]">Not seen</span>
70
                                                <span id="status_[% note.issue_id %]">Not seen</span>
(-)a/koha-tmpl/intranet-tmpl/prog/en/modules/circ/circulation-home.tt (-2 / +1 lines)
Lines 41-47 Link Here
41
                    [% END %]
41
                    [% END %]
42
                    [% IF ( Koha.Preference('AllowCheckoutNotes') && CAN_user_circulate_manage_checkout_notes ) %]
42
                    [% IF ( Koha.Preference('AllowCheckoutNotes') && CAN_user_circulate_manage_checkout_notes ) %]
43
                        <li>
43
                        <li>
44
                            <a href="/cgi-bin/koha/circ/checkout-notes.pl">Checkout notes</a> [% IF ( pending_checkout_notes ) %]<span class="number_box"><a href="/cgi-bin/koha/circ/checkout-notes.pl">[% pending_checkout_notes %]</a></span>[% END %]
44
                            <a class="circ-button" href="/cgi-bin/koha/circ/checkout-notes.pl"><i class="fa fa-sticky-note"></i> Checkout notes</a> [% IF ( pending_checkout_notes ) %]<span class="number_box"><a href="/cgi-bin/koha/circ/checkout-notes.pl">[% pending_checkout_notes %]</a></span>[% END %]
45
                        </li>
45
                        </li>
46
                    [% END %]
46
                    [% END %]
47
                </ul>
47
                </ul>
48
- 

Return to bug 17698