Lines 87-93
my $filters = {
Link Here
|
87 |
orderstatus => scalar $input->param('orderstatus'), |
87 |
orderstatus => scalar $input->param('orderstatus'), |
88 |
ordernumber => scalar $input->param('ordernumber'), |
88 |
ordernumber => scalar $input->param('ordernumber'), |
89 |
search_children_too => scalar $input->param('search_children_too'), |
89 |
search_children_too => scalar $input->param('search_children_too'), |
90 |
created_by => scalar $input->multi_param('created_by'), |
90 |
created_by => [ $input->multi_param('created_by') ], |
91 |
}; |
91 |
}; |
92 |
my $from_placed_on = eval { dt_from_string( scalar $input->param('from') ) } || dt_from_string; |
92 |
my $from_placed_on = eval { dt_from_string( scalar $input->param('from') ) } || dt_from_string; |
93 |
my $to_placed_on = eval { dt_from_string( scalar $input->param('to') ) } || dt_from_string; |
93 |
my $to_placed_on = eval { dt_from_string( scalar $input->param('to') ) } || dt_from_string; |
94 |
- |
|
|