|
Lines 223-232
sub calculate {
Link Here
|
| 223 |
: ( $i == 10 ) ? "Materials" |
223 |
: ( $i == 10 ) ? "Materials" |
| 224 |
: ( $i == 12 and $filters->[11] == 0 ) ? "Barcode (not like)" |
224 |
: ( $i == 12 and $filters->[11] == 0 ) ? "Barcode (not like)" |
| 225 |
: ( $i == 12 and $filters->[11] == 1 ) ? "Barcode (like)" |
225 |
: ( $i == 12 and $filters->[11] == 1 ) ? "Barcode (like)" |
| 226 |
: ( $i == 13 ) ? "Acquired date from" |
226 |
: ( $i == 13 ) ? "Date acquired (item) from" |
| 227 |
: ( $i == 14 ) ? "Acquired date to" |
227 |
: ( $i == 14 ) ? "Date acquired (item) to" |
| 228 |
: ( $i == 15 ) ? "Removed date from" |
228 |
: ( $i == 15 ) ? "Date deleted (item) from" |
| 229 |
: ( $i == 16 ) ? "Removed date to" |
229 |
: ( $i == 16 ) ? "Date deleted (item) to" |
| 230 |
: ''; |
230 |
: ''; |
| 231 |
|
231 |
|
| 232 |
push @loopfilter, \%cell; |
232 |
push @loopfilter, \%cell; |
| 233 |
- |
|
|