Lines 448-457
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}; |
453 |
$line{sort1_authcat} = $budget->{sort1_authcat}; |
454 |
$line{sort2_authcat} = $budget->{sort2_authcat}; |
454 |
$line{sort2_authcat} = $budget->{sort2_authcat}; |
455 |
|
455 |
|
456 |
# 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 |
457 |
$line{unitprice_tax_included} += 0; |
457 |
$line{unitprice_tax_included} += 0; |
458 |
- |
|
|