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

(-)a/Koha/Notice/Message.pm (-6 / +5 lines)
Lines 67-84 EOS Link Here
67
67
68
=head3 patron
68
=head3 patron
69
69
70
    my $patron = $message->patron;
70
    my $patron = $checkout->patron
71
71
72
Returns the Koha::Patron object for the recipient of the queued message
72
Return the patron by whom the checkout was done
73
73
74
=cut
74
=cut
75
75
76
sub patron {
76
sub patron {
77
    my ($self) = @_;
77
    my ($self) = @_;
78
78
    my $patron_rs = $self->_result->borrowernumber;
79
    $self->{_patron} ||= Koha::Patrons->find( $self->borrowernumber );
79
    return unless $patron_rs;
80
80
    return Koha::Patron->_new_from_dbic($patron_rs);
81
    return $self->{_patron};
82
}
81
}
83
82
84
=head3 type
83
=head3 type
(-)a/t/db_dependent/Koha/Notice/Message.t (-2 / +21 lines)
Lines 19-25 Link Here
19
19
20
use Modern::Perl;
20
use Modern::Perl;
21
21
22
use Test::More tests => 1;
22
use Test::More tests => 2;
23
23
24
use C4::Letters qw( GetPreparedLetter EnqueueLetter );
24
use C4::Letters qw( GetPreparedLetter EnqueueLetter );
25
25
Lines 119-122 WRAPPED Link Here
119
    $schema->storage->txn_rollback;
119
    $schema->storage->txn_rollback;
120
};
120
};
121
121
122
subtest 'patron() tests' => sub {
123
124
    plan tests => 2;
125
126
    $schema->storage->txn_begin;
127
128
    my $patron  = $builder->build_object( { class => 'Koha::Patrons' } );
129
    my $message = $builder->build_object(
130
        {
131
            class => 'Koha::Notice::Messages',
132
            value => { borrowernumber => $patron->borrowernumber }
133
        }
134
    );
135
136
    is( ref( $message->patron ),          'Koha::Patron',          'Object type is correct' );
137
    is( $message->patron->borrowernumber, $patron->borrowernumber, 'Right patron linked' );
138
139
    $schema->storage->txn_rollback;
140
};
141
122
1;
142
1;
123
- 

Return to bug 33260