|
Lines 258-263
my $orderinfo = {
Link Here
|
| 258 |
sort1 => scalar $input->param('sort1'), |
258 |
sort1 => scalar $input->param('sort1'), |
| 259 |
sort2 => scalar $input->param('sort2'), |
259 |
sort2 => scalar $input->param('sort2'), |
| 260 |
subscriptionid => scalar $input->param('subscriptionid'), |
260 |
subscriptionid => scalar $input->param('subscriptionid'), |
|
|
261 |
estimated_delivery_date => scalar $input->param('estimated_delivery_date'), |
| 261 |
}; |
262 |
}; |
| 262 |
|
263 |
|
| 263 |
$orderinfo->{uncertainprice} ||= 0; |
264 |
$orderinfo->{uncertainprice} ||= 0; |
|
Lines 335-341
if ( $basket->{is_standing} || $orderinfo->{quantity} ne '0' ) {
Link Here
|
| 335 |
} |
336 |
} |
| 336 |
|
337 |
|
| 337 |
$orderinfo->{unitprice} = $orderinfo->{ecost} if not defined $orderinfo->{unitprice} or $orderinfo->{unitprice} eq ''; |
338 |
$orderinfo->{unitprice} = $orderinfo->{ecost} if not defined $orderinfo->{unitprice} or $orderinfo->{unitprice} eq ''; |
| 338 |
$orderinfo->{estimated_delivery_date} = $orderinfo->{estimated_delivery_date} ? dt_from_string($orderinfo->{estimated_delivery_date}) : undef; |
|
|
| 339 |
|
339 |
|
| 340 |
my $order; |
340 |
my $order; |
| 341 |
my $log_action_name; |
341 |
my $log_action_name; |
| 342 |
- |
|
|