From f583c6b312694a545592ac09211bf6c3cde2fdb9 Mon Sep 17 00:00:00 2001 From: Demian Katz <demian.katz@villanova.edu> Date: Tue, 23 Oct 2018 10:12:40 -0400 Subject: [PATCH] Add fine creation date to Demo driver. --- module/VuFind/src/VuFind/ILS/Driver/Demo.php | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/module/VuFind/src/VuFind/ILS/Driver/Demo.php b/module/VuFind/src/VuFind/ILS/Driver/Demo.php index c59fd803cf5..7e8e1c5a059 100644 --- a/module/VuFind/src/VuFind/ILS/Driver/Demo.php +++ b/module/VuFind/src/VuFind/ILS/Driver/Demo.php @@ -772,9 +772,10 @@ class Demo extends AbstractBase $fineList[] = [ "amount" => $fine * 100, - "checkout" => $this->dateConverter->convertToDisplayDate( - 'U', $checkout - ), + "checkout" => $this->dateConverter + ->convertToDisplayDate('U', $checkout), + 'createdate' => $this->dateConverter + ->convertToDisplayDate('U', time()), // After 20 days it becomes 'Long Overdue' "fine" => $day_overdue > 20 ? "Long Overdue" : "Overdue", // 50% chance they've paid half of it -- GitLab