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

(-)a/C4/SIP/ILS/Patron.pm (-1 / +1 lines)
Lines 131-137 sub new { Link Here
131
        fees            => 0,             # currently not distinct from fines
131
        fees            => 0,             # currently not distinct from fines
132
        recall_overdue  => 0,
132
        recall_overdue  => 0,
133
        items_billed    => 0,
133
        items_billed    => 0,
134
        screen_msg      => 'Greetings from Koha. ' . $kp->{opacnote} . $fines_msg,
134
        screen_msg      => process_tt( C4::Context->preference('SIP2ScreenMessageGreeting'), { borrower => $patron, sip_borrower => $kp } ) . $kp->{opacnote} . $fines_msg,
135
        print_line      => '',
135
        print_line      => '',
136
        items           => [],
136
        items           => [],
137
        hold_items      => $flags->{WAITING}->{itemlist},
137
        hold_items      => $flags->{WAITING}->{itemlist},
(-)a/installer/data/mysql/atomicupdate/bug_35369.pl (+17 lines)
Line 0 Link Here
1
use Modern::Perl;
2
3
return {
4
    bug_number  => "BUG_NUMBER",
5
    description => "A single line description",
6
    up          => sub {
7
        my ($args) = @_;
8
        my ( $dbh, $out ) = @$args{qw(dbh out)};
9
10
        $dbh->do(q{
11
            INSERT INTO systempreferences ( `variable`, `value`, `options`, `explanation`, `type` ) VALUES
12
            ('SIP2ScreenMessageGreeting','Greetings from Koha. ','','SIP greetings message that will being each SIP AF field','Free')
13
        });
14
15
        say $out "Added new system preference 'SIP2ScreenMessageGreeting'";
16
    },
17
};
(-)a/installer/data/mysql/mandatory/sysprefs.sql (+1 lines)
Lines 694-699 INSERT INTO systempreferences ( `variable`, `value`, `options`, `explanation`, ` Link Here
694
('ShowReviewerPhoto','1','','If ON, photo of reviewer will be shown beside comments in OPAC','YesNo'),
694
('ShowReviewerPhoto','1','','If ON, photo of reviewer will be shown beside comments in OPAC','YesNo'),
695
('SIP2SortBinMapping','',NULL,'Use the following mappings to determine the sort_bin of a returned item. The mapping should be on the form \"branchcode:item field:item field value:sort bin number\", with one mapping per line.','free'),
695
('SIP2SortBinMapping','',NULL,'Use the following mappings to determine the sort_bin of a returned item. The mapping should be on the form \"branchcode:item field:item field value:sort bin number\", with one mapping per line.','free'),
696
('SIP2AddOpacMessagesToScreenMessage','1','','If enabled, patron OPAC messages will be included in the SIP2 screen message','YesNo'),
696
('SIP2AddOpacMessagesToScreenMessage','1','','If enabled, patron OPAC messages will be included in the SIP2 screen message','YesNo'),
697
('SIP2ScreenMessageGreeting','Greetings from Koha. ','','SIP greetings message that will being each SIP AF field','Free'),
697
('SkipHoldTrapOnNotForLoanValue','',NULL,'If set, Koha will never trap items for hold with this notforloan value','Integer'),
698
('SkipHoldTrapOnNotForLoanValue','',NULL,'If set, Koha will never trap items for hold with this notforloan value','Integer'),
698
('SlipCSS','',NULL,'Slips CSS url.','free'),
699
('SlipCSS','',NULL,'Slips CSS url.','free'),
699
('SMSSendDriver','','','Sets which SMS::Send driver is used to send SMS messages.','free'),
700
('SMSSendDriver','','','Sets which SMS::Send driver is used to send SMS messages.','free'),
(-)a/koha-tmpl/intranet-tmpl/prog/en/modules/admin/preferences/circulation.pref (+3 lines)
Lines 1391-1396 Circulation: Link Here
1391
                  1: Do
1391
                  1: Do
1392
                  0: Don't
1392
                  0: Don't
1393
            - send OPAC patron messages in the SIP2 screen message field.
1393
            - send OPAC patron messages in the SIP2 screen message field.
1394
        -
1395
            - Begin each SIP screen message with the phrase
1396
            - pref: SIP2AddOpacMessagesToScreenMessage
1394
1397
1395
    Curbside pickup module:
1398
    Curbside pickup module:
1396
        -
1399
        -
(-)a/t/db_dependent/SIP/Patron.t (-2 / +19 lines)
Lines 4-10 Link Here
4
# This needs to be extended! Your help is appreciated..
4
# This needs to be extended! Your help is appreciated..
5
5
6
use Modern::Perl;
6
use Modern::Perl;
7
use Test::More tests => 10;
7
use Test::More tests => 11;
8
8
9
use t::lib::Mocks;
9
use t::lib::Mocks;
10
use t::lib::TestBuilder;
10
use t::lib::TestBuilder;
Lines 31-36 is( defined $sip_patron, 1, "Patron is valid" ); Link Here
31
$schema->resultset('Borrower')->search({ cardnumber => $card })->delete;
31
$schema->resultset('Borrower')->search({ cardnumber => $card })->delete;
32
my $sip_patron2 = C4::SIP::ILS::Patron->new( $card );
32
my $sip_patron2 = C4::SIP::ILS::Patron->new( $card );
33
is( $sip_patron2, undef, "Patron is not valid (anymore)" );
33
is( $sip_patron2, undef, "Patron is not valid (anymore)" );
34
t::lib::Mocks::mock_preference( 'SIP2ScreenMessageGreeting', "Greetings from Koha. " );
34
35
35
subtest "new tests" => sub {
36
subtest "new tests" => sub {
36
37
Lines 421-423 subtest "Patron messages tests" => sub { Link Here
421
422
422
    $schema->storage->txn_rollback;
423
    $schema->storage->txn_rollback;
423
};
424
};
424
- 
425
426
subtest "Test SIP2ScreenMessageGreeting" => sub {
427
    plan tests => 2;
428
    $schema->storage->txn_begin;
429
    my $today         = output_pref( { dt => dt_from_string(), dateonly => 1 } );
430
    my $patron        = $builder->build_object( { class => 'Koha::Patrons', value => { opacnote => q{} } } );
431
    my $library       = $builder->build_object( { class => 'Koha::Libraries' } );
432
433
    my $sip_patron = C4::SIP::ILS::Patron->new( $patron->cardnumber );
434
    is( $sip_patron->screen_msg, 'Greetings from Koha. ' );
435
436
    t::lib::Mocks::mock_preference( 'SIP2ScreenMessageGreeting', "Welcome to your local library! " );
437
    $sip_patron = C4::SIP::ILS::Patron->new( $patron->cardnumber );
438
    is( $sip_patron->screen_msg, 'Welcome to your local library! ' );
439
440
    $schema->storage->txn_rollback;
441
};

Return to bug 35369