can edit accounts.
This commit is contained in:
BIN
resources/Fratello.jpg
Normal file
BIN
resources/Fratello.jpg
Normal file
Binary file not shown.
|
After Width: | Height: | Size: 20 KiB |
11
scratch-sessions/delete_fake_data.clj
Normal file
11
scratch-sessions/delete_fake_data.clj
Normal file
@@ -0,0 +1,11 @@
|
|||||||
|
(in-ns 'auto-ap.datomic)
|
||||||
|
(doseq [client (->>
|
||||||
|
(d/query {:query {:find '[?c]
|
||||||
|
:in '[$]
|
||||||
|
:where ['[_ :client/code ?c]]}
|
||||||
|
:args [(d/db (d/connect uri))]})
|
||||||
|
(map first)
|
||||||
|
(filter #(clojure.string/starts-with? % "ANOT" )))]
|
||||||
|
@(d/transact (d/connect uri)
|
||||||
|
[[:db/retractEntity [:client/code client]]])
|
||||||
|
)
|
||||||
@@ -420,13 +420,26 @@
|
|||||||
:edit_transaction
|
:edit_transaction
|
||||||
{:fields {:id {:type :id}
|
{:fields {:id {:type :id}
|
||||||
:vendor_id {:type :id}
|
:vendor_id {:type :id}
|
||||||
:account_id {:type :id}}}}
|
:account_id {:type :id}}}
|
||||||
|
|
||||||
|
:edit_account
|
||||||
|
{:fields {:id {:type :id}
|
||||||
|
:type {:type :account_type}
|
||||||
|
:numeric_code {:type 'Int}
|
||||||
|
:account_set {:type 'String}
|
||||||
|
:name {:type 'String}}}}
|
||||||
|
|
||||||
:enums {:payment_type {:values [{:enum-value :check}
|
:enums {:payment_type {:values [{:enum-value :check}
|
||||||
{:enum-value :cash}
|
{:enum-value :cash}
|
||||||
{:enum-value :debit}]}
|
{:enum-value :debit}]}
|
||||||
:bank_account_type {:values [{:enum-value :check}
|
:bank_account_type {:values [{:enum-value :check}
|
||||||
{:enum-value :cash}]}}
|
{:enum-value :cash}]}
|
||||||
|
:account_type {:values [{:enum-value :dividend}
|
||||||
|
{:enum-value :expense}
|
||||||
|
{:enum-value :asset}
|
||||||
|
{:enum-value :liability}
|
||||||
|
{:enum-value :equities}
|
||||||
|
{:enum-value :revenue}]}}
|
||||||
:mutations
|
:mutations
|
||||||
{:reject_invoices {:type '(list :id)
|
{:reject_invoices {:type '(list :id)
|
||||||
:args {:invoices {:type '(list :id)}}
|
:args {:invoices {:type '(list :id)}}
|
||||||
@@ -472,6 +485,9 @@
|
|||||||
:edit_invoice {:type :invoice
|
:edit_invoice {:type :invoice
|
||||||
:args {:invoice {:type :edit_invoice}}
|
:args {:invoice {:type :edit_invoice}}
|
||||||
:resolve :mutation/edit-invoice}
|
:resolve :mutation/edit-invoice}
|
||||||
|
:upsert_account {:type :account
|
||||||
|
:args {:account {:type :edit_account}}
|
||||||
|
:resolve :mutation/upsert-account}
|
||||||
:edit_transaction {:type :transaction
|
:edit_transaction {:type :transaction
|
||||||
:args {:transaction {:type :edit_transaction}}
|
:args {:transaction {:type :edit_transaction}}
|
||||||
:resolve :mutation/edit-transaction}
|
:resolve :mutation/edit-transaction}
|
||||||
@@ -647,6 +663,7 @@
|
|||||||
:mutation/edit-transaction gq-transactions/edit-transaction
|
:mutation/edit-transaction gq-transactions/edit-transaction
|
||||||
:mutation/edit-client gq-clients/edit-client
|
:mutation/edit-client gq-clients/edit-client
|
||||||
:mutation/upsert-vendor gq-vendors/upsert-vendor
|
:mutation/upsert-vendor gq-vendors/upsert-vendor
|
||||||
|
:mutation/upsert-account gq-accounts/upsert-account
|
||||||
:mutation/void-invoice gq-invoices/void-invoice
|
:mutation/void-invoice gq-invoices/void-invoice
|
||||||
:mutation/unvoid-invoice gq-invoices/unvoid-invoice
|
:mutation/unvoid-invoice gq-invoices/unvoid-invoice
|
||||||
:mutation/void-payment gq-checks/void-check
|
:mutation/void-payment gq-checks/void-check
|
||||||
|
|||||||
@@ -2,8 +2,20 @@
|
|||||||
(:require [datomic.api :as d]
|
(:require [datomic.api :as d]
|
||||||
[auto-ap.datomic.accounts :as d-accounts]
|
[auto-ap.datomic.accounts :as d-accounts]
|
||||||
[auto-ap.graphql.utils :refer [->graphql <-graphql] ]
|
[auto-ap.graphql.utils :refer [->graphql <-graphql] ]
|
||||||
[auto-ap.datomic :refer [uri merge-query]]))
|
[auto-ap.datomic :refer [uri merge-query remove-nils]]))
|
||||||
|
|
||||||
(defn get-accounts [context args value]
|
(defn get-accounts [context args value]
|
||||||
(->graphql (d-accounts/get-accounts (<-graphql args))))
|
(->graphql (d-accounts/get-accounts (<-graphql args))))
|
||||||
|
|
||||||
|
(defn upsert-account [context args value]
|
||||||
|
@(d/transact (d/connect uri)
|
||||||
|
[(remove-nils
|
||||||
|
{:db/id (:id (:account args))
|
||||||
|
:account/name (:name (:account args))
|
||||||
|
:account/type (keyword "account-type" (name (:type (:account args))))
|
||||||
|
:account/account-set (:account_set (:account args))
|
||||||
|
:account/numeric-code (if-not (:id (:account args))
|
||||||
|
(:numeric_code (:account args)))
|
||||||
|
})])
|
||||||
|
(:account args))
|
||||||
|
|
||||||
|
|||||||
@@ -1,6 +1,7 @@
|
|||||||
(ns auto-ap.views.pages.admin.accounts
|
(ns auto-ap.views.pages.admin.accounts
|
||||||
(:require [auto-ap.forms :as forms]
|
(:require [auto-ap.forms :as forms]
|
||||||
[auto-ap.subs :as subs]
|
[auto-ap.subs :as subs]
|
||||||
|
[auto-ap.utils :refer [replace-by]]
|
||||||
[auto-ap.views.components.admin.side-bar :refer [admin-side-bar]]
|
[auto-ap.views.components.admin.side-bar :refer [admin-side-bar]]
|
||||||
[auto-ap.views.utils :refer [dispatch-event]]
|
[auto-ap.views.utils :refer [dispatch-event]]
|
||||||
[auto-ap.views.components.layouts
|
[auto-ap.views.components.layouts
|
||||||
@@ -9,7 +10,11 @@
|
|||||||
[auto-ap.views.pages.admin.accounts.form :as account-form]
|
[auto-ap.views.pages.admin.accounts.form :as account-form]
|
||||||
[re-frame.core :as re-frame]))
|
[re-frame.core :as re-frame]))
|
||||||
|
|
||||||
|
(re-frame/reg-event-db
|
||||||
|
::edit-completed
|
||||||
|
(fn [db [_ edit-account]]
|
||||||
|
(-> db
|
||||||
|
(update :accounts replace-by :id edit-account))))
|
||||||
|
|
||||||
(defn accounts-table [{:keys [accounts]} ]
|
(defn accounts-table [{:keys [accounts]} ]
|
||||||
|
|
||||||
@@ -46,4 +51,4 @@
|
|||||||
(let [{:keys [active?]} @(re-frame/subscribe [::forms/form ::account-form/form])]
|
(let [{:keys [active?]} @(re-frame/subscribe [::forms/form ::account-form/form])]
|
||||||
[side-bar-layout {:side-bar [admin-side-bar {}]
|
[side-bar-layout {:side-bar [admin-side-bar {}]
|
||||||
:main [admin-accounts-content]
|
:main [admin-accounts-content]
|
||||||
:right-side-bar [appearing-side-bar {:visible? active?} [account-form/form]]}]))
|
:right-side-bar [appearing-side-bar {:visible? active?} [account-form/form {:edit-completed [::edit-completed]}]]}]))
|
||||||
|
|||||||
@@ -1,21 +1,50 @@
|
|||||||
(ns auto-ap.views.pages.admin.accounts.form
|
(ns auto-ap.views.pages.admin.accounts.form
|
||||||
(:require [auto-ap.forms :as forms]
|
(:require [auto-ap.forms :as forms]
|
||||||
[auto-ap.subs :as subs]
|
[clojure.string :as str]
|
||||||
[auto-ap.views.components.admin.side-bar :refer [admin-side-bar]]
|
|
||||||
[auto-ap.views.utils :refer [bind-field dispatch-event]]
|
[auto-ap.views.utils :refer [bind-field dispatch-event]]
|
||||||
[auto-ap.views.components.layouts
|
|
||||||
:refer
|
|
||||||
[appearing-side-bar side-bar-layout]]
|
|
||||||
[re-frame.core :as re-frame]))
|
[re-frame.core :as re-frame]))
|
||||||
|
|
||||||
(def types [:dividend :expense :asset :liability :equities :revenue])
|
(def types [:dividend :expense :asset :liability :equities :revenue])
|
||||||
|
|
||||||
|
(re-frame/reg-sub
|
||||||
|
::can-submit
|
||||||
|
(fn [db]
|
||||||
|
true))
|
||||||
|
|
||||||
(re-frame/reg-event-db
|
(re-frame/reg-event-db
|
||||||
::editing
|
::editing
|
||||||
(fn [db [_ which]]
|
(fn [db [_ which]]
|
||||||
(-> db
|
(-> db
|
||||||
(forms/start-form ::form which))))
|
(forms/start-form ::form which))))
|
||||||
|
|
||||||
(defn form []
|
(re-frame/reg-event-fx
|
||||||
|
::edited
|
||||||
|
(fn [{:keys [db]} [_ edit-completed {:keys [upsert-account]}]]
|
||||||
|
{:db (-> db
|
||||||
|
(forms/stop-form ::form))
|
||||||
|
:dispatch (conj edit-completed upsert-account)}))
|
||||||
|
|
||||||
|
(re-frame/reg-event-fx
|
||||||
|
::saving
|
||||||
|
(fn [{:keys [db]} [_ edit-completed]]
|
||||||
|
(when @(re-frame/subscribe [::can-submit])
|
||||||
|
(let [{{:keys [id type name numeric-code account-set]} :data :as data} @(re-frame/subscribe [::forms/form ::form])]
|
||||||
|
{:db (forms/loading db ::form )
|
||||||
|
:graphql
|
||||||
|
{:token (-> db :user)
|
||||||
|
:query-obj {:venia/operation {:operation/type :mutation
|
||||||
|
:operation/name "UpsertAccount"}
|
||||||
|
:venia/queries [{:query/data [:upsert-account
|
||||||
|
{:account {:id id
|
||||||
|
:type (keyword type)
|
||||||
|
:numeric-code numeric-code
|
||||||
|
:name name
|
||||||
|
:account-set account-set}}
|
||||||
|
[:id :type :name :account-set :numeric-code]]}]}
|
||||||
|
:on-success [::edited edit-completed]
|
||||||
|
:on-error [::forms/save-error ::form]}}))))
|
||||||
|
|
||||||
|
(defn form [{:keys [edit-completed]}]
|
||||||
(let [{error :error account :data } @(re-frame/subscribe [::forms/form ::form])
|
(let [{error :error account :data } @(re-frame/subscribe [::forms/form ::form])
|
||||||
change-event [::forms/change ::form]]
|
change-event [::forms/change ::form]]
|
||||||
|
|
||||||
@@ -28,6 +57,9 @@
|
|||||||
[bind-field
|
[bind-field
|
||||||
[:input.input {:type "text"
|
[:input.input {:type "text"
|
||||||
:field :numeric-code
|
:field :numeric-code
|
||||||
|
:disabled (if (:id account)
|
||||||
|
"disabled"
|
||||||
|
"")
|
||||||
#_:spec #_:entity/name
|
#_:spec #_:entity/name
|
||||||
:event change-event
|
:event change-event
|
||||||
:subscription account}]]]]
|
:subscription account}]]]]
|
||||||
@@ -52,7 +84,9 @@
|
|||||||
:spec (set types)
|
:spec (set types)
|
||||||
:event change-event
|
:event change-event
|
||||||
:subscription account}
|
:subscription account}
|
||||||
(map (fn [l] [:option {:value l} (name l)]) types)]]]]]
|
(map (fn [l]
|
||||||
|
|
||||||
|
[:option {:value (name l)} (str/capitalize (name l))]) types)]]]]]
|
||||||
|
|
||||||
(when error
|
(when error
|
||||||
[:div.notification.is-warning.animated.fadeInUp
|
[:div.notification.is-warning.animated.fadeInUp
|
||||||
@@ -62,5 +96,5 @@
|
|||||||
[:submit.button.is-large.is-primary {#_:disabled #_(if (s/valid? :entity/client @(re-frame/subscribe [::new-client-request]))
|
[:submit.button.is-large.is-primary {#_:disabled #_(if (s/valid? :entity/client @(re-frame/subscribe [::new-client-request]))
|
||||||
""
|
""
|
||||||
"disabled")
|
"disabled")
|
||||||
:on-click (dispatch-event [::account-saving])
|
:on-click (dispatch-event [::saving edit-completed])
|
||||||
:class (str @(re-frame/subscribe [::forms/loading-class ::form]) (when error " animated shake"))} "Save"]]]))
|
:class (str @(re-frame/subscribe [::forms/loading-class ::form]) (when error " animated shake"))} "Save"]]]))
|
||||||
|
|||||||
Reference in New Issue
Block a user