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

(-)a/installer/data/mysql/de-DE/mandatory/sample_notices.sql (+6 lines)
Lines 131-133 Wir möchten Sie darüber informieren, dass der Benutzer <<borrowers.firstname>> Link Here
131
Vielen Dank,
131
Vielen Dank,
132
Ihr Biblioheksteam'
132
Ihr Biblioheksteam'
133
);
133
);
134
135
INSERT INTO letter ( module, code, branchcode, name, is_html, title, content, message_transport_type )
136
VALUES ( 'circulation', 'OVERDUES_SLIP', '', 'Overdues Slip', '0', 'OVERDUES_SLIP', 'The following item(s) is/are currently overdue:
137
138
<item>"<<biblio.title>>" by <<biblio.author>>, <<items.itemcallnumber>>, Barcode: <<items.barcode>> Fine: <<items.fine>></item>
139
', 'print' );
(-)a/installer/data/mysql/en/mandatory/sample_notices.sql (+5 lines)
Lines 142-144 Thank you. Link Here
142
142
143
Your library.'
143
Your library.'
144
);
144
);
145
INSERT INTO letter ( module, code, branchcode, name, is_html, title, content, message_transport_type )
146
VALUES ( 'circulation', 'OVERDUES_SLIP', '', 'Overdues Slip', '0', 'OVERDUES_SLIP', 'The following item(s) is/are currently overdue:
147
148
<item>"<<biblio.title>>" by <<biblio.author>>, <<items.itemcallnumber>>, Barcode: <<items.barcode>> Fine: <<items.fine>></item>
149
', 'print' );
(-)a/installer/data/mysql/fr-FR/1-Obligatoire/sample_notices.sql (+5 lines)
Lines 145-147 Thank you. Link Here
145
145
146
Your library.'
146
Your library.'
147
);
147
);
148
INSERT INTO letter ( module, code, branchcode, name, is_html, title, content, message_transport_type )
149
VALUES ( 'circulation', 'OVERDUES_SLIP', '', 'Overdues Slip', '0', 'OVERDUES_SLIP', 'The following item(s) is/are currently overdue:
150
151
<item>"<<biblio.title>>" by <<biblio.author>>, <<items.itemcallnumber>>, Barcode: <<items.barcode>> Fine: <<items.fine>></item>
152
', 'print' );
(-)a/installer/data/mysql/nb-NO/1-Obligatorisk/sample_notices.sql (+5 lines)
Lines 163-165 Thank you. Link Here
163
163
164
Your library.'
164
Your library.'
165
);
165
);
166
INSERT INTO letter ( module, code, branchcode, name, is_html, title, content, message_transport_type )
167
VALUES ( 'circulation', 'OVERDUES_SLIP', '', 'Overdues Slip', '0', 'OVERDUES_SLIP', 'The following item(s) is/are currently overdue:
168
169
<item>"<<biblio.title>>" by <<biblio.author>>, <<items.itemcallnumber>>, Barcode: <<items.barcode>> Fine: <<items.fine>></item>
170
', 'print' );
(-)a/installer/data/mysql/pl-PL/mandatory/sample_notices.sql (+5 lines)
Lines 145-147 Thank you. Link Here
145
145
146
Your library.'
146
Your library.'
147
);
147
);
148
INSERT INTO letter ( module, code, branchcode, name, is_html, title, content, message_transport_type )
149
VALUES ( 'circulation', 'OVERDUES_SLIP', '', 'Overdues Slip', '0', 'OVERDUES_SLIP', 'The following item(s) is/are currently overdue:
150
151
<item>"<<biblio.title>>" by <<biblio.author>>, <<items.itemcallnumber>>, Barcode: <<items.barcode>> Fine: <<items.fine>></item>
152
', 'print' );
(-)a/installer/data/mysql/ru-RU/mandatory/sample_notices.sql (+5 lines)
Lines 145-147 Thank you. Link Here
145
145
146
Your library.'
146
Your library.'
147
);
147
);
148
INSERT INTO letter ( module, code, branchcode, name, is_html, title, content, message_transport_type )
149
VALUES ( 'circulation', 'OVERDUES_SLIP', '', 'Overdues Slip', '0', 'OVERDUES_SLIP', 'The following item(s) is/are currently overdue:
150
151
<item>"<<biblio.title>>" by <<biblio.author>>, <<items.itemcallnumber>>, Barcode: <<items.barcode>> Fine: <<items.fine>></item>
152
', 'print' );
(-)a/installer/data/mysql/uk-UA/mandatory/sample_notices.sql (+5 lines)
Lines 144-146 Thank you. Link Here
144
144
145
Your library.'
145
Your library.'
146
);
146
);
147
INSERT INTO letter ( module, code, branchcode, name, is_html, title, content, message_transport_type )
148
VALUES ( 'circulation', 'OVERDUES_SLIP', '', 'Overdues Slip', '0', 'OVERDUES_SLIP', 'The following item(s) is/are currently overdue:
149
150
<item>"<<biblio.title>>" by <<biblio.author>>, <<items.itemcallnumber>>, Barcode: <<items.barcode>> Fine: <<items.fine>></item>
151
', 'print' );
(-)a/installer/data/mysql/updatedatabase.pl (-1 / +13 lines)
Lines 9585-9590 if ( CheckVersion($DBversion) ) { Link Here
9585
    SetVersion ($DBversion);
9585
    SetVersion ($DBversion);
9586
}
9586
}
9587
9587
9588
$DBversion = "3.19.00.XXX";
9589
if ( CheckVersion($DBversion) ) {
9590
    $dbh->do(q{
9591
    INSERT INTO letter ( module, code, branchcode, name, is_html, title, content, message_transport_type )
9592
    VALUES ( 'circulation', 'OVERDUES_SLIP', '', 'Overdues Slip', '0', 'OVERDUES_SLIP', 'The following item(s) is/are currently overdue:
9593
9594
<item>"<<biblio.title>>" by <<biblio.author>>, <<items.itemcallnumber>>, Barcode: <<items.barcode>> Fine: <<items.fine>></item>
9595
', 'print' )
9596
    });
9597
    print "Upgrade to $DBversion done (Bug 12933 - Add ability to print overdue slip from staff intranet)\n";
9598
    SetVersion ($DBversion);
9599
}
9600
9588
=head1 FUNCTIONS
9601
=head1 FUNCTIONS
9589
9602
9590
=head2 TableExists($table)
9603
=head2 TableExists($table)
9591
- 

Return to bug 12933