|
Lines 221-227
sub calculate {
Link Here
|
| 221 |
my %cell; |
221 |
my %cell; |
| 222 |
( @$filters[$i] ) or next; |
222 |
( @$filters[$i] ) or next; |
| 223 |
if ( ( $i == 1 ) and ( @$filters[ $i - 1 ] ) ) { |
223 |
if ( ( $i == 1 ) and ( @$filters[ $i - 1 ] ) ) { |
| 224 |
$cell{err} = 1 if ( @$filters[$i] < @$filters[ $i - 1 ] ); |
224 |
$cell{err} = 1 if ( @$filters[$i] lt @$filters[ $i - 1 ] ); |
| 225 |
} |
225 |
} |
| 226 |
|
226 |
|
| 227 |
# format the dates filters, otherwise just fill as is |
227 |
# format the dates filters, otherwise just fill as is |
| 228 |
- |
|
|