adds due date column.

This commit is contained in:
2024-07-23 21:37:05 -07:00
parent 803abb5322
commit 8b9fc5a66e
3 changed files with 18 additions and 5 deletions

View File

@@ -508,6 +508,12 @@
:show-starting "lg"
:render (fn [{:invoice/keys [date]}]
(some-> date (atime/unparse-local atime/normal-date)))}
{:key "due"
:sort-key "due"
:name "Due"
:show-starting "xl" ;; xl:table-cell
:render (fn [{:invoice/keys [due]}]
(some-> due (atime/unparse-local atime/normal-date)))}
{:key "status"
:name "Status"
:render (fn [{:invoice/keys [status]}]