View | Details | Raw Unified | Return to bug 24733
Collapse All | Expand All

(-)a/acqui/duplicate_orders.pl (-2 / +2 lines)
Lines 65-72 my $filters = { Link Here
65
    orderstatus             => scalar $input->param('orderstatus'),
65
    orderstatus             => scalar $input->param('orderstatus'),
66
    ordernumber             => scalar $input->param('ordernumber'),
66
    ordernumber             => scalar $input->param('ordernumber'),
67
    search_children_too     => scalar $input->param('search_children_too'),
67
    search_children_too     => scalar $input->param('search_children_too'),
68
    created_by              => scalar $input->multi_param('created_by'),
68
    created_by              => [$input->multi_param('created_by')]
69
};
69
};
70
70
my $from_placed_on =
71
my $from_placed_on =
71
  eval { dt_from_string( scalar $input->param('from') ) } || dt_from_string;
72
  eval { dt_from_string( scalar $input->param('from') ) } || dt_from_string;
72
my $to_placed_on =
73
my $to_placed_on =
73
- 

Return to bug 24733