Lines 77-86
for my $s (@suppliers) {
Link Here
|
77 |
for my $ord ( @{$orders} ) { |
77 |
for my $ord ( @{$orders} ) { |
78 |
push @{$loop_basket}, { |
78 |
push @{$loop_basket}, { |
79 |
basketno => $ord->{'basketno'}, |
79 |
basketno => $ord->{'basketno'}, |
80 |
total => $ord->{'count(*)'}, |
|
|
81 |
authorisedby => $ord->{'authorisedby'}, |
80 |
authorisedby => $ord->{'authorisedby'}, |
82 |
creationdate => output_pref( { str => $ord->{'creationdate'} } ), |
81 |
creationdate => scalar output_pref( { str => $ord->{'creationdate'} } ), |
83 |
closedate => output_pref( { str => $ord->{'closedate'} } ), |
82 |
closedate => scalar output_pref( { str => $ord->{'closedate'} } ), |
84 |
}; |
83 |
}; |
85 |
} |
84 |
} |
86 |
push @{$loop_suppliers}, { |
85 |
push @{$loop_suppliers}, { |
87 |
- |
|
|