|
Lines 416-421
subtest 'filter_by_late' => sub {
Link Here
|
| 416 |
datereceived => undef, |
416 |
datereceived => undef, |
| 417 |
datecancellationprinted => undef, |
417 |
datecancellationprinted => undef, |
| 418 |
estimated_delivery_date => undef, |
418 |
estimated_delivery_date => undef, |
|
|
419 |
orderstatus => 'ordered', |
| 419 |
} |
420 |
} |
| 420 |
} |
421 |
} |
| 421 |
); |
422 |
); |
|
Lines 436-441
subtest 'filter_by_late' => sub {
Link Here
|
| 436 |
datereceived => undef, |
437 |
datereceived => undef, |
| 437 |
datecancellationprinted => undef, |
438 |
datecancellationprinted => undef, |
| 438 |
estimated_delivery_date => undef, |
439 |
estimated_delivery_date => undef, |
|
|
440 |
orderstatus => 'ordered', |
| 439 |
} |
441 |
} |
| 440 |
} |
442 |
} |
| 441 |
); |
443 |
); |
|
Lines 456-461
subtest 'filter_by_late' => sub {
Link Here
|
| 456 |
datereceived => undef, |
458 |
datereceived => undef, |
| 457 |
datecancellationprinted => undef, |
459 |
datecancellationprinted => undef, |
| 458 |
estimated_delivery_date => undef, |
460 |
estimated_delivery_date => undef, |
|
|
461 |
orderstatus => 'ordered', |
| 459 |
} |
462 |
} |
| 460 |
} |
463 |
} |
| 461 |
); |
464 |
); |
|
Lines 476-481
subtest 'filter_by_late' => sub {
Link Here
|
| 476 |
datereceived => undef, |
479 |
datereceived => undef, |
| 477 |
datecancellationprinted => undef, |
480 |
datecancellationprinted => undef, |
| 478 |
estimated_delivery_date => undef, |
481 |
estimated_delivery_date => undef, |
|
|
482 |
orderstatus => 'ordered', |
| 483 |
} |
| 484 |
} |
| 485 |
); |
| 486 |
my $order_42 = $builder->build_object( |
| 487 |
{ |
| 488 |
class => 'Koha::Acquisition::Orders', |
| 489 |
value => { |
| 490 |
basketno => $basket_4->basketno, |
| 491 |
datereceived => undef, |
| 492 |
datecancellationprinted => undef, |
| 493 |
estimated_delivery_date => undef, |
| 494 |
orderstatus => 'complete', |
| 479 |
} |
495 |
} |
| 480 |
} |
496 |
} |
| 481 |
); |
497 |
); |
| 482 |
- |
|
|