Lines 417-422
subtest 'filter_by_late' => sub {
Link Here
|
417 |
datecancellationprinted => undef, |
417 |
datecancellationprinted => undef, |
418 |
estimated_delivery_date => undef, |
418 |
estimated_delivery_date => undef, |
419 |
orderstatus => 'ordered', |
419 |
orderstatus => 'ordered', |
|
|
420 |
quantity => 1, |
421 |
quantityreceived => 0, |
420 |
} |
422 |
} |
421 |
} |
423 |
} |
422 |
); |
424 |
); |
Lines 438-443
subtest 'filter_by_late' => sub {
Link Here
|
438 |
datecancellationprinted => undef, |
440 |
datecancellationprinted => undef, |
439 |
estimated_delivery_date => undef, |
441 |
estimated_delivery_date => undef, |
440 |
orderstatus => 'ordered', |
442 |
orderstatus => 'ordered', |
|
|
443 |
quantity => 1, |
444 |
quantityreceived => 0, |
441 |
} |
445 |
} |
442 |
} |
446 |
} |
443 |
); |
447 |
); |
Lines 459-464
subtest 'filter_by_late' => sub {
Link Here
|
459 |
datecancellationprinted => undef, |
463 |
datecancellationprinted => undef, |
460 |
estimated_delivery_date => undef, |
464 |
estimated_delivery_date => undef, |
461 |
orderstatus => 'ordered', |
465 |
orderstatus => 'ordered', |
|
|
466 |
quantity => 1, |
467 |
quantityreceived => 0, |
462 |
} |
468 |
} |
463 |
} |
469 |
} |
464 |
); |
470 |
); |
Lines 480-485
subtest 'filter_by_late' => sub {
Link Here
|
480 |
datecancellationprinted => undef, |
486 |
datecancellationprinted => undef, |
481 |
estimated_delivery_date => undef, |
487 |
estimated_delivery_date => undef, |
482 |
orderstatus => 'ordered', |
488 |
orderstatus => 'ordered', |
|
|
489 |
quantity => 1, |
490 |
quantityreceived => 0, |
483 |
} |
491 |
} |
484 |
} |
492 |
} |
485 |
); |
493 |
); |
Lines 492-497
subtest 'filter_by_late' => sub {
Link Here
|
492 |
datecancellationprinted => undef, |
500 |
datecancellationprinted => undef, |
493 |
estimated_delivery_date => undef, |
501 |
estimated_delivery_date => undef, |
494 |
orderstatus => 'complete', |
502 |
orderstatus => 'complete', |
|
|
503 |
quantity => 1, |
504 |
quantityreceived => 0, |
495 |
} |
505 |
} |
496 |
} |
506 |
} |
497 |
); |
507 |
); |
Lines 576-581
subtest 'filter_by_late' => sub {
Link Here
|
576 |
datereceived => undef, |
586 |
datereceived => undef, |
577 |
datecancellationprinted => undef, |
587 |
datecancellationprinted => undef, |
578 |
estimated_delivery_date => $now->clone->subtract( days => 2 ), |
588 |
estimated_delivery_date => $now->clone->subtract( days => 2 ), |
|
|
589 |
quantity => 1, |
590 |
quantityreceived => 0, |
579 |
} |
591 |
} |
580 |
} |
592 |
} |
581 |
); |
593 |
); |
582 |
- |
|
|