This commit is contained in:
Bryce Covert
2018-05-18 11:23:54 -07:00
parent 4312c0e2ad
commit d020a4d254
7 changed files with 386 additions and 263 deletions

View File

@@ -162,7 +162,7 @@
:content-type "application/pdf"}) :content-type "application/pdf"})
(str "http://" (:data-bucket env) ".s3-website-us-east-1.amazonaws.com/merged-checks/" uuid ".pdf"))) (str "http://" (:data-bucket env) ".s3-website-us-east-1.amazonaws.com/merged-checks/" uuid ".pdf")))
(defn check-for-invoices [invoices vendor-id vendors company bank-account-id index] (defn check-for-invoices [invoices vendor-id vendors company bank-account-id index invoice-amounts]
(let [uuid (str (UUID/randomUUID)) (let [uuid (str (UUID/randomUUID))
vendor (vendors vendor-id) vendor (vendors vendor-id)
bank-account (first (filter #(= (:id %) bank-account-id) (:bank-accounts company))) bank-account (first (filter #(= (:id %) bank-account-id) (:bank-accounts company)))
@@ -170,19 +170,19 @@
memo (str "Invoice #'s: " memo (str "Invoice #'s: "
(str/join ", " (str/join ", "
(map (fn [i] (map (fn [i]
(str (:invoice-number i) "(" (:total i) ")")) (str (:invoice-number i) "(" (invoice-amounts (:id i)) ")"))
invoices)))] invoices)))]
{:s3-uuid uuid {:s3-uuid uuid
:s3-key (str "checks/" uuid ".pdf") :s3-key (str "checks/" uuid ".pdf")
:s3-url (str "http://" (:data-bucket env) ".s3-website-us-east-1.amazonaws.com/checks/" uuid ".pdf") :s3-url (str "http://" (:data-bucket env) ".s3-website-us-east-1.amazonaws.com/checks/" uuid ".pdf")
:check-number (+ index (:check-number bank-account)) :check-number (+ index (:check-number bank-account))
:amount (reduce + 0 (map :total invoices)) :amount (reduce + 0 (map (comp invoice-amounts :id) invoices))
:memo memo :memo memo
:vendor-id (:id vendor) :vendor-id (:id vendor)
:company-id (:id company) :company-id (:id company)
:pdf-data {:vendor vendor :pdf-data {:vendor vendor
:paid-to (:name vendor) :paid-to (:name vendor)
:amount (reduce + 0 (map :total invoices)) :amount (reduce + 0 (map (comp invoice-amounts :id) invoices))
:check (str (+ index (:check-number bank-account))) :check (str (+ index (:check-number bank-account)))
:memo memo :memo memo
:date (date->str (local-now)) :date (date->str (local-now))
@@ -201,7 +201,7 @@
invoice-amounts (by :invoice-id :amount invoice-payments) invoice-amounts (by :invoice-id :amount invoice-payments)
invoices-grouped-by-vendor (group-by :vendor-id invoices) invoices-grouped-by-vendor (group-by :vendor-id invoices)
checks (-> (for [[[vendor-id invoices] index] (map vector invoices-grouped-by-vendor (range))] checks (-> (for [[[vendor-id invoices] index] (map vector invoices-grouped-by-vendor (range))]
[invoices (checks/insert! (check-for-invoices invoices vendor-id vendors company bank-account-id index))]) [invoices (checks/insert! (check-for-invoices invoices vendor-id vendors company bank-account-id index invoice-amounts))])
doall) doall)
invoice-checks (invoices-checks/insert-multi! invoice-checks (invoices-checks/insert-multi!
(mapcat (mapcat

View File

@@ -9,7 +9,8 @@
[cljs-time.format :as format] [cljs-time.format :as format]
[goog.string :as gstring])) [goog.string :as gstring]))
;; TODO partial payments ;; TODO graphql schema enforcement
;; TODO postgres constraints for data integrity
;; TODO performance ;; TODO performance
;; TODO refactor graphql ;; TODO refactor graphql

View File

@@ -0,0 +1,18 @@
(ns auto-ap.views.components.modal
(:require [re-frame.core :as re-frame]))
(defn modal [{:keys [title foot hide-event]} & body]
[:div.modal.is-active
[:div.modal-background {:on-click (fn [] (re-frame/dispatch hide-event ))}]
[:div.modal-card
[:header.modal-card-head
[:p.modal-card-title
title]
[:button.delete {:on-click (fn [] (re-frame/dispatch hide-event))}]]
[:section.modal-card-body
body]
(when foot
[:footer.modal-card-foot
foot])]])

View File

@@ -7,6 +7,7 @@
[auto-ap.entities.companies :as entity] [auto-ap.entities.companies :as entity]
[auto-ap.views.components.address :refer [address-field]] [auto-ap.views.components.address :refer [address-field]]
[auto-ap.views.utils :refer [login-url dispatch-value-change bind-field horizontal-field]] [auto-ap.views.utils :refer [login-url dispatch-value-change bind-field horizontal-field]]
[auto-ap.views.components.modal :refer [modal]]
[cljs.reader :as edn] [cljs.reader :as edn]
[auto-ap.routes :as routes] [auto-ap.routes :as routes]
[bidi.bidi :as bidi])) [bidi.bidi :as bidi]))
@@ -34,19 +35,14 @@
[:h1.title "Companies"] [:h1.title "Companies"]
[companies-table] [companies-table]
(when editing-company (when editing-company
[:div.modal.is-active [modal {:title (str "Edit " (:name editing-company))
[:div.modal-background {:on-click (fn [] (re-frame/dispatch [::events/edit nil]))}] :foot [:a.button.is-primary {:on-click (fn [] (re-frame/dispatch [::events/save]))}
[:span "Save"]
[:div.modal-card (when (:saving? editing-company)
[:header.modal-card-head [:span.icon
[:p.modal-card-title [:i.fa.fa-spin.fa-spinner]])]
(str "Edit " (:name editing-company))] :hide-event [::events/edit nil]}
[:button.delete {:on-click (fn [] (re-frame/dispatch [::events/edit nil]))}]]
[:section.modal-card-body
[horizontal-field [horizontal-field
[:label.label "Name"] [:label.label "Name"]
[:div.control [:div.control
@@ -81,11 +77,4 @@
^{:key id} [:li number " - " check-number])]]] ^{:key id} [:li number " - " check-number])]]]
(when (:saving? editing-company) [:div.is-overlay {:style {"backgroundColor" "rgba(150,150,150, 0.5)"}}])] (when (:saving? editing-company) [:div.is-overlay {:style {"backgroundColor" "rgba(150,150,150, 0.5)"}}])])])])
[:footer.modal-card-foot
[:a.button.is-primary {:on-click (fn [] (re-frame/dispatch [::events/save]))}
[:span "Save"]
(when (:saving? editing-company)
[:span.icon
[:i.fa.fa-spin.fa-spinner]])]]]])])])

View File

@@ -7,6 +7,7 @@
[auto-ap.events.admin.vendors :as events] [auto-ap.events.admin.vendors :as events]
[auto-ap.entities.vendors :as entity] [auto-ap.entities.vendors :as entity]
[auto-ap.views.components.address :refer [address-field]] [auto-ap.views.components.address :refer [address-field]]
[auto-ap.views.components.modal :refer [modal]]
[clojure.spec.alpha :as s] [clojure.spec.alpha :as s]
[auto-ap.views.utils :refer [login-url dispatch-value-change dispatch-event bind-field horizontal-field]] [auto-ap.views.utils :refer [login-url dispatch-value-change dispatch-event bind-field horizontal-field]]
[cljs.reader :as edn] [cljs.reader :as edn]
@@ -55,20 +56,21 @@
(let [editing-vendor (:vendor @(re-frame/subscribe [::subs/admin])) (let [editing-vendor (:vendor @(re-frame/subscribe [::subs/admin]))
companies-by-id @(re-frame/subscribe [::subs/companies-by-id])] companies-by-id @(re-frame/subscribe [::subs/companies-by-id])]
[:div.modal.is-active [modal {:title [:span (if (:id editing-vendor)
[:div.modal-background {:on-click (fn [] (re-frame/dispatch [::events/edit nil]))}]
[:div.modal-card
[:header.modal-card-head
[:p.modal-card-title
(if (:id editing-vendor)
(str "Edit " (or (:name editing-vendor) "<vendor>")) (str "Edit " (or (:name editing-vendor) "<vendor>"))
(str "Add " (or (:name editing-vendor) "<new vendor>")))] (str "Add " (or (:name editing-vendor) "<new vendor>")))
(when (:error editing-vendor) (when (:error editing-vendor)
[:span.icon.has-text-danger [:span.icon.has-text-danger
[:i.fa.fa-exclamation-triangle]]) [:i.fa.fa-exclamation-triangle]])]
[:button.delete {:on-click (fn [] (re-frame/dispatch [::events/edit nil]))}]] :foot [:button.button.is-primary {:on-click (fn [] (re-frame/dispatch [::events/save]))
[:section.modal-card-body :disabled (when (not (s/valid? ::entity/vendor editing-vendor ))
"disabled")}
[:span "Save"]
(when (:saving? editing-vendor)
[:span.icon
[:i.fa.fa-spin.fa-spinner]])]
:hide-event [::events/edit nil]}
[horizontal-field [horizontal-field
[:label.label "Name"] [:label.label "Name"]
[:div.control [:div.control
@@ -197,8 +199,7 @@
[:select {:type "select" [:select {:type "select"
:field :new-relationship-company :field :new-relationship-company
:event ::events/change :event ::events/change
:subscription editing-vendor :subscription editing-vendor}
}
(for [company @(re-frame/subscribe [::subs/companies])] (for [company @(re-frame/subscribe [::subs/companies])]
[:option {:value (:id company)} (:name company)])]]]] [:option {:value (:id company)} (:name company)])]]]]
[:div.control [:div.control
@@ -227,16 +228,7 @@
[:i.fa.fa-times]]]])]] [:i.fa.fa-times]]]])]]
(when (:saving? editing-vendor) [:div.is-overlay {:style {"backgroundColor" "rgba(150,150,150, 0.5)"}}])] (when (:saving? editing-vendor) [:div.is-overlay {:style {"backgroundColor" "rgba(150,150,150, 0.5)"}}])]))
[:footer.modal-card-foot
[:button.button.is-primary {:on-click (fn [] (re-frame/dispatch [::events/save]))
:disabled (when (not (s/valid? ::entity/vendor editing-vendor ))
"disabled")}
[:span "Save"]
(when (:saving? editing-vendor)
[:span.icon
[:i.fa.fa-spin.fa-spinner]])]]]]))
(defn admin-vendors-page [] (defn admin-vendors-page []
[(with-meta [(with-meta

View File

@@ -3,10 +3,11 @@
[auto-ap.entities.companies :as company] [auto-ap.entities.companies :as company]
[auto-ap.entities.vendors :as vendor] [auto-ap.entities.vendors :as vendor]
[auto-ap.events :as events] [auto-ap.events :as events]
[auto-ap.views.utils :refer [dispatch-event]] [auto-ap.views.utils :refer [dispatch-event bind-field]]
[auto-ap.utils :refer [by]] [auto-ap.utils :refer [by]]
[auto-ap.views.pages.check :as check] [auto-ap.views.pages.check :as check]
[auto-ap.views.components.invoice-table :refer [invoice-table] :as invoice-table] [auto-ap.views.components.invoice-table :refer [invoice-table] :as invoice-table]
[auto-ap.views.components.modal :refer [modal]]
[auto-ap.subs :as subs] [auto-ap.subs :as subs]
[auto-ap.events :as events])) [auto-ap.events :as events]))
@@ -15,6 +16,12 @@
(fn [db] (fn [db]
(-> db ::invoice-page))) (-> db ::invoice-page)))
(re-frame/reg-sub
::advanced-print-checks
(fn [db]
(-> db ::advanced-print-checks)))
(re-frame/reg-sub (re-frame/reg-sub
::params ::params
(fn [db] (fn [db]
@@ -52,29 +59,86 @@
(fn [db _] (fn [db _]
(update-in db [::invoice-page :print-checks-shown?] #(not %) ))) (update-in db [::invoice-page :print-checks-shown?] #(not %) )))
(re-frame/reg-event-db
::advanced-print-checks
(fn [db _]
(let [{:keys [checked invoices]} (get-in db [::invoice-page])]
(-> db
(update-in [::invoice-page :print-checks-shown?] #(not %) )
(assoc-in [::advanced-print-checks] {:shown? true
:bank-account-id (:id (first (:bank-accounts @(re-frame/subscribe [::subs/company]))))
:invoices (->> invoices
(filter (comp checked :id))
(map #(assoc % :amount (:outstanding-balance %))))} )))))
(re-frame/reg-event-db
::cancel-advanced-print
(fn [db _]
(assoc-in db [::advanced-print-checks :shown?] false )))
(re-frame/reg-event-db
::edit-payment-bank-account
(fn [db [_ f v]]
(assoc-in db [::advanced-print-checks :bank-account-id] v)))
(re-frame/reg-event-db
::edit-payment
(fn [db [_ which f v]]
(update-in db [::advanced-print-checks :invoices]
(fn [is]
(for [i is]
(if (= which (:id i))
(assoc-in i f v)
i))))))
(defn print-checks-query [invoice-payments bank-account-id company-id]
{:venia/operation {:operation/type :mutation
:operation/name "PrintChecks"}
:venia/queries [[:print-checks
{:invoice_payments invoice-payments
:bank_account_id bank-account-id
:company_id company-id}
[[:invoices [:id :outstanding-balance [:checks [:amount [:check [:amount :s3_url :check_number ]]]]]]
:pdf_url]]]})
(re-frame/reg-event-fx (re-frame/reg-event-fx
::print-checks ::print-checks
(fn [{:keys [db]} [_ bank-account-id]] (fn [{:keys [db]} [_ bank-account-id]]
(let [invoice-amounts (by :id :total (get-in db [::invoice-page :invoices]))] (let [invoice-amounts (by :id :outstanding-balance (get-in db [::invoice-page :invoices]))]
{
:db (-> db {:db (-> db
(assoc-in [::invoice-page :print-checks-shown?] false ) (assoc-in [::invoice-page :print-checks-shown?] false )
(assoc-in [::invoice-page :print-checks-loading?] true )) (assoc-in [::invoice-page :print-checks-loading?] true ))
:graphql :graphql
{:token (-> db :user) {:token (-> db :user)
:query-obj {:venia/operation {:operation/type :mutation :query-obj (print-checks-query (map (fn [id]
:operation/name "PrintChecks"}
:venia/queries [[:print-checks
{:invoice_payments (map (fn [id]
{:invoice-id id {:invoice-id id
:amount (invoice-amounts id)}) :amount (invoice-amounts id)})
(get-in db [::invoice-page :checked])) (get-in db [::invoice-page :checked]))
:bank_account_id bank-account-id bank-account-id
:company_id (:company db)} (:company db))
[[:invoices [:id :outstanding-balance [:checks [:amount [:check [:amount :s3_url :check_number ]]]]]] :on-success [::checks-created]}})))
:pdf_url]]]}
(re-frame/reg-event-fx
::advanced-print-checks-submitted
(fn [{:keys [db]} [_ bank-account-id]]
(let [invoice-amounts (by :id (comp js/parseFloat :amount) (get-in db [::advanced-print-checks :invoices]))
bank-account-id (get-in db [::advanced-print-checks :bank-account-id])]
{:db (-> db
(assoc-in [::advanced-print-checks :printing?] true ))
:graphql
{:token (-> db :user)
:query-obj (print-checks-query (map (fn [x]
{:invoice-id (:id x)
:amount (invoice-amounts (:id x))})
(get-in db [::advanced-print-checks :invoices]))
bank-account-id
(:company db))
:on-success [::checks-created]}}))) :on-success [::checks-created]}})))
@@ -91,23 +155,74 @@
(merge i (invoices-by-id (:id i)))) (merge i (invoices-by-id (:id i))))
invoices))) invoices)))
(assoc-in [::invoice-page :checked] nil) (assoc-in [::invoice-page :checked] nil)
(assoc-in [::invoice-page :print-checks-loading?] false))}))) (assoc-in [::invoice-page :print-checks-loading?] false)
(assoc-in [::advanced-print-checks :printing?] false)
(assoc-in [::advanced-print-checks :shown?] false)
)})))
(re-frame/reg-event-fx (re-frame/reg-event-fx
::invalidated ::invalidated
(fn [cofx [_ params]] (fn [cofx [_ params]]
{:dispatch [::params-change @(re-frame/subscribe [::params])]})) {:dispatch [::params-change @(re-frame/subscribe [::params])]}))
(defn modal-dialog []
(let [{:keys [checked]} @(re-frame/subscribe [::invoice-page])
{:keys [shown? invoices printing?] :as advanced-print-checks} @(re-frame/subscribe [::advanced-print-checks])
current-company @(re-frame/subscribe [::subs/company])]
(when shown?
[modal {:title "Print Checks"
:foot [:button.button.is-primary {:on-click (dispatch-event [::advanced-print-checks-submitted])
:class (if printing? "is-loading" "")}
[:span "Print"]]
:hide-event [::cancel-advanced-print]}
"Print using"
[:span.field
[:span.select
[bind-field
[:select {:type "select"
:field :bank-account-id
:event ::edit-payment-bank-account
:subscription advanced-print-checks}
(for [{:keys [id number name]} (:bank-accounts current-company)]
^{:key id} [:option {:value id} name])]]]]
[:table.table
[:thead
[:tr
[:th "Vendor"]
[:th "Invoice ID"]
[:th {:style {"width" "10em"}} "Payment"]]]
[:tbody
(for [{:keys [vendor payment outstanding-balance invoice-number id] :as i} invoices]
^{:key id}
[:tr
[:td (:name vendor)]
[:td invoice-number]
[:td [:div.field.has-addons.is-extended
[:p.control [:a.button.is-static "$"]]
[:p.control
[bind-field
[:input.input {:type "number"
:field :amount
:event [::edit-payment id]
:subscription i
:value payment
:max outstanding-balance
:step "0.01"}]]]]]])]]])))
(def unpaid-invoices-page (def unpaid-invoices-page
(with-meta (with-meta
(fn [] (fn []
(let [{:keys [checked print-checks-shown? print-checks-loading?]} @(re-frame/subscribe [::invoice-page]) (let [{:keys [checked print-checks-shown? print-checks-loading? advanced-print-shown?]} @(re-frame/subscribe [::invoice-page])
current-company @(re-frame/subscribe [::subs/company])] current-company @(re-frame/subscribe [::subs/company])]
[:div [:div
[:h1.title "Unpaid invoices"] [:h1.title "Unpaid invoices"]
[:div.is-pulled-right [:div.is-pulled-right
(when current-company (when current-company
[:div.dropdown {:class (if print-checks-shown? [:div.dropdown.is-right {:class (if print-checks-shown?
"is-active" "is-active"
"")} "")}
[:div.dropdown-trigger [:div.dropdown-trigger
@@ -119,15 +234,16 @@
:class (if print-checks-loading? :class (if print-checks-loading?
"is-loading" "is-loading"
"") "")}
}
"Print checks " "Print checks "
[:span.icon.is-small [:i.fa.fa-angle-down {:aria-hidden "true"}]]]] [:span.icon.is-small [:i.fa.fa-angle-down {:aria-hidden "true"}]]]]
[:div.dropdown-menu {:role "menu"} [:div.dropdown-menu {:role "menu"}
[:div.dropdown-content [:div.dropdown-content
(list
(for [{:keys [id number name]} (:bank-accounts current-company)] (for [{:keys [id number name]} (:bank-accounts current-company)]
^{:key id} [:a.dropdown-item {:on-click (dispatch-event [::print-checks id])} name])]]])] ^{:key id} [:a.dropdown-item {:on-click (dispatch-event [::print-checks id])} name])
^{:key "advanced-divider"} [:hr.dropdown-divider]
^{:key "advanced"} [:a.dropdown-item {:on-click (dispatch-event [::advanced-print-checks])} "Advanced..."])]]])]
[invoice-table {:id :unpaid [invoice-table {:id :unpaid
:params (re-frame/subscribe [::params]) :params (re-frame/subscribe [::params])
:invoice-page (re-frame/subscribe [::invoice-page]) :invoice-page (re-frame/subscribe [::invoice-page])
@@ -137,5 +253,8 @@
:check-boxes true :check-boxes true
:checked checked :checked checked
:on-check-changed (fn [which] :on-check-changed (fn [which]
(re-frame/dispatch [::toggle-check which]))}]])) (re-frame/dispatch [::toggle-check which]))}]
[modal-dialog]
]))
{:component-will-mount #(re-frame/dispatch-sync [::params-change {}]) })) {:component-will-mount #(re-frame/dispatch-sync [::params-change {}]) }))

View File

@@ -39,8 +39,9 @@
(defmethod do-bind "select" [dom {:keys [field subscription event class value spec] :as keys} & rest] (defmethod do-bind "select" [dom {:keys [field subscription event class value spec] :as keys} & rest]
(let [field (if (keyword? field) [field] field) (let [field (if (keyword? field) [field] field)
event (if (keyword? event) [event] event)
keys (assoc keys keys (assoc keys
:on-change (dispatch-value-change [event field]) :on-change (dispatch-value-change (conj event field))
:class (str class :class (str class
(when (and spec (not (s/valid? spec (get-in subscription field)))) (when (and spec (not (s/valid? spec (get-in subscription field))))
" is-danger"))) " is-danger")))
@@ -50,8 +51,9 @@
(defmethod do-bind "radio" [dom {:keys [field subscription event class value spec] :as keys} & rest] (defmethod do-bind "radio" [dom {:keys [field subscription event class value spec] :as keys} & rest]
(let [field (if (keyword? field) [field] field) (let [field (if (keyword? field) [field] field)
event (if (keyword? event) [event] event)
keys (assoc keys keys (assoc keys
:on-change (dispatch-value-change [event field]) :on-change (dispatch-value-change (conj event field))
:checked (= (get-in subscription field) value) :checked (= (get-in subscription field) value)
:class (str class :class (str class
(when (and spec (not (s/valid? spec (get-in subscription field )))) (when (and spec (not (s/valid? spec (get-in subscription field ))))
@@ -62,8 +64,10 @@
(defmethod do-bind :default [dom {:keys [field event subscription class spec] :as keys} & rest] (defmethod do-bind :default [dom {:keys [field event subscription class spec] :as keys} & rest]
(let [field (if (keyword? field) [field] field) (let [field (if (keyword? field) [field] field)
event (if (keyword? event) [event] event)
_ (println field event dom rest)
keys (assoc keys keys (assoc keys
:on-change (dispatch-value-change [event field]) :on-change (dispatch-value-change (conj event field))
:value (get-in subscription field) :value (get-in subscription field)
:class (str class :class (str class
(when (and spec (not (s/valid? spec (get-in subscription field)))) (when (and spec (not (s/valid? spec (get-in subscription field))))