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

(-)a/acqui/basket.pl (-2 / +4 lines)
Lines 448-455 sub get_order_infos { Link Here
448
    my %line = %{ $order };
448
    my %line = %{ $order };
449
    # Don't show unreceived standing orders as received
449
    # Don't show unreceived standing orders as received
450
    $line{order_received} = ( $qty == $order->{'quantityreceived'} && ( $basket->{is_standing} ? $qty : 1 ) );
450
    $line{order_received} = ( $qty == $order->{'quantityreceived'} && ( $basket->{is_standing} ? $qty : 1 ) );
451
    $line{basketno}       = $basketno;
451
    $line{basketno}      = $basketno;
452
    $line{budget_name}    = $budget->{budget_name};
452
    $line{budget_name}   = $budget->{budget_name};
453
    $line{sort1_authcat} = $budget->{sort1_authcat};
454
    $line{sort2_authcat} = $budget->{sort2_authcat};
453
455
454
    # If we have an actual cost that should be the total, otherwise use the ecost
456
    # If we have an actual cost that should be the total, otherwise use the ecost
455
    $line{unitprice_tax_included} += 0;
457
    $line{unitprice_tax_included} += 0;
(-)a/koha-tmpl/intranet-tmpl/prog/en/modules/acqui/basket.tt (-3 / +2 lines)
Lines 660-667 Link Here
660
                                                                    <i class="fa-solid fa-pencil" aria-hidden="true"></i> Edit</a>
660
                                                                    <i class="fa-solid fa-pencil" aria-hidden="true"></i> Edit</a>
661
                                                            [% END %]
661
                                                            [% END %]
662
                                                        </td>
662
                                                        </td>
663
                                                        <td>[% books_loo.sort1 | html %]</td>
663
                                                        <td>[% AuthorisedValues.GetByCode( books_loo.sort1_authcat, books_loo.sort1 ) | html %]</td>
664
                                                        <td>[% books_loo.sort2 | html %]</td>
664
                                                        <td>[% AuthorisedValues.GetByCode( books_loo.sort2_authcat, books_loo.sort2 ) | html %]</td>
665
                                                        [% IF Koha.Preference('EDIFACT') && ediaccount %]
665
                                                        [% IF Koha.Preference('EDIFACT') && ediaccount %]
666
                                                            <td>[% books_loo.suppliers_report | html %]</td>
666
                                                            <td>[% books_loo.suppliers_report | html %]</td>
667
                                                        [% END %]
667
                                                        [% END %]
668
- 

Return to bug 34752