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

(-)a/acqui/orderreceive.pl (-3 / +6 lines)
Lines 185-190 my $suggestion = GetSuggestionInfoFromBiblionumber($order->{biblionumber}); Link Here
185
185
186
my $authorisedby = $order->{authorisedby};
186
my $authorisedby = $order->{authorisedby};
187
my $authorised_patron = Koha::Patrons->find( $authorisedby );
187
my $authorised_patron = Koha::Patrons->find( $authorisedby );
188
if ( $authorised_patron ) { # This should not happen unless there was a migration issue (or very old install?)
189
    $template->param(
190
        memberfirstname  => $authorised_patron->firstname || "",
191
        membersurname    => $authorised_patron->surname || "",
192
    );
193
}
188
194
189
my $budget = GetBudget( $order->{budget_id} );
195
my $budget = GetBudget( $order->{budget_id} );
190
196
Lines 217-224 $template->param( Link Here
217
    ecost                 => $ecost,
223
    ecost                 => $ecost,
218
    unitprice             => $unitprice,
224
    unitprice             => $unitprice,
219
    tax_rate              => $tax_rate,
225
    tax_rate              => $tax_rate,
220
    memberfirstname       => $authorised_patron->firstname || "",
221
    membersurname         => $authorised_patron->surname || "",
222
    invoiceid             => $invoice->{invoiceid},
226
    invoiceid             => $invoice->{invoiceid},
223
    invoice               => $invoice->{invoicenumber},
227
    invoice               => $invoice->{invoicenumber},
224
    datereceived          => $datereceived,
228
    datereceived          => $datereceived,
225
- 

Return to bug 20303