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

(-)a/C4/SIP/ILS/Patron.pm (-1 / +1 lines)
Lines 149-155 sub new { Link Here
149
        fees            => 0,             # currently not distinct from fines
149
        fees            => 0,             # currently not distinct from fines
150
        recall_overdue  => 0,
150
        recall_overdue  => 0,
151
        items_billed    => 0,
151
        items_billed    => 0,
152
        screen_msg      => 'Greetings from Koha. ' . $kp->{opacnote} . $fines_msg,
152
        screen_msg      => process_tt( C4::Context->preference('SIP2ScreenMessageGreeting'), { borrower => $patron, sip_borrower => $kp } ) . $kp->{opacnote} . $fines_msg,
153
        print_line      => '',
153
        print_line      => '',
154
        items           => [],
154
        items           => [],
155
        hold_items      => $flags->{WAITING}->{itemlist},
155
        hold_items      => $flags->{WAITING}->{itemlist},
(-)a/installer/data/mysql/atomicupdate/bug_35369.pl (+19 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(
11
            q{
12
            INSERT IGNORE INTO systempreferences ( `variable`, `value`, `options`, `explanation`, `type` ) VALUES
13
            ('SIP2ScreenMessageGreeting','Greetings from Koha. ','','SIP greetings message that will being each SIP AF field','Free')
14
        }
15
        );
16
17
        say $out "Added new system preference 'SIP2ScreenMessageGreeting'";
18
    },
19
};
(-)a/installer/data/mysql/mandatory/sysprefs.sql (+1 lines)
Lines 711-716 INSERT INTO systempreferences ( `variable`, `value`, `options`, `explanation`, ` Link Here
711
('ShowReviewer','full','none|full|first|surname|firstandinitial|username','Choose how a commenter\'s identity is presented alongside comments in the OPAC','Choice'),
711
('ShowReviewer','full','none|full|first|surname|firstandinitial|username','Choose how a commenter\'s identity is presented alongside comments in the OPAC','Choice'),
712
('ShowReviewerPhoto','1','','If ON, photo of reviewer will be shown beside comments in OPAC','YesNo'),
712
('ShowReviewerPhoto','1','','If ON, photo of reviewer will be shown beside comments in OPAC','YesNo'),
713
('SIP2AddOpacMessagesToScreenMessage','1','','If enabled, patron OPAC messages will be included in the SIP2 screen message','YesNo'),
713
('SIP2AddOpacMessagesToScreenMessage','1','','If enabled, patron OPAC messages will be included in the SIP2 screen message','YesNo'),
714
('SIP2ScreenMessageGreeting','Greetings from Koha. ','','SIP greetings message that will being each SIP AF field','Free'),
714
('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'),
715
('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'),
715
('SkipHoldTrapOnNotForLoanValue','',NULL,'If set, Koha will never trap items for hold with this notforloan value','Integer'),
716
('SkipHoldTrapOnNotForLoanValue','',NULL,'If set, Koha will never trap items for hold with this notforloan value','Integer'),
716
('SlipCSS','',NULL,'Slips CSS url.','free'),
717
('SlipCSS','',NULL,'Slips CSS url.','free'),
(-)a/koha-tmpl/intranet-tmpl/prog/en/modules/admin/preferences/circulation.pref (+3 lines)
Lines 1416-1421 Circulation: Link Here
1416
                  1: Send
1416
                  1: Send
1417
                  0: Don't send
1417
                  0: Don't send
1418
            - OPAC patron messages in the SIP2 screen message field.
1418
            - OPAC patron messages in the SIP2 screen message field.
1419
        -
1420
            - Begin each SIP screen message with the phrase
1421
            - pref: SIP2ScreenMessageGreeting
1419
1422
1420
    Curbside pickup module:
1423
    Curbside pickup module:
1421
        -
1424
        -
(-)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 => 11;
7
use Test::More tests => 12;
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 477-479 subtest "Patron messages tests" => sub { Link Here
477
478
478
    $schema->storage->txn_rollback;
479
    $schema->storage->txn_rollback;
479
};
480
};
480
- 
481
482
subtest "Test SIP2ScreenMessageGreeting" => sub {
483
    plan tests => 2;
484
    $schema->storage->txn_begin;
485
    my $today   = output_pref( { dt => dt_from_string(), dateonly => 1 } );
486
    my $patron  = $builder->build_object( { class => 'Koha::Patrons', value => { opacnote => q{} } } );
487
    my $library = $builder->build_object( { class => 'Koha::Libraries' } );
488
489
    my $sip_patron = C4::SIP::ILS::Patron->new( $patron->cardnumber );
490
    is( $sip_patron->screen_msg, 'Greetings from Koha. ' );
491
492
    t::lib::Mocks::mock_preference( 'SIP2ScreenMessageGreeting', "Welcome to your local library! " );
493
    $sip_patron = C4::SIP::ILS::Patron->new( $patron->cardnumber );
494
    is( $sip_patron->screen_msg, 'Welcome to your local library! ' );
495
496
    $schema->storage->txn_rollback;
497
};

Return to bug 35369