removing cruft.

This commit is contained in:
Bryce Covert
2019-04-12 18:09:11 -07:00
parent 0be29d74ac
commit a2cd6d0759
4 changed files with 6 additions and 25 deletions

View File

@@ -22,7 +22,6 @@
[auto-ap.graphql.clients :as gq-clients]
[auto-ap.graphql.vendors :as gq-vendors]
[auto-ap.graphql.checks :as gq-checks]
[auto-ap.graphql.expense-accounts :as expense-accounts]
[auto-ap.graphql.invoices :as gq-invoices]
[auto-ap.graphql.transactions :as gq-transactions]
[clojure.walk :as walk]
@@ -180,11 +179,7 @@
:role {:type 'String}
:clients {:type '(list :client)}}}
:expense_account {:fields {:id {:type :id}
:location {:type 'String}
:name {:type 'String}
:parent {:type :expense_account
:resolve :get-expense-account-parent}}}
:account {:fields {:id {:type :id}
:numeric_code {:type 'Int}
@@ -197,11 +192,8 @@
{:fields {:id {:type :id}
:invoice_id {:type 'String}
:account {:type :account}
:expense_account_id {:type 'Int}
:location {:type 'String}
:expense_account {:type :expense_account
:resolve :get-expense-account
}
:amount {:type 'String}}}
:invoice
@@ -668,9 +660,7 @@
:mutation/unvoid-invoice gq-invoices/unvoid-invoice
:mutation/void-payment gq-checks/void-check
:mutation/edit-expense-accounts gq-invoices/edit-expense-accounts
:get-vendor get-vendor
:get-expense-account expense-accounts/get-expense-account
:get-expense-account-parent expense-accounts/get-parent})
:get-vendor get-vendor})
schema/compile))

View File

@@ -1,9 +0,0 @@
(ns auto-ap.graphql.expense-accounts
(:require [auto-ap.graphql.utils :refer [->graphql]]
[auto-ap.expense-accounts :as expense-accounts]))
(defn get-expense-account [context args value]
(->graphql (expense-accounts/expense-accounts (:expense_account_id value))))
(defn get-parent [context args value]
(->graphql (expense-accounts/expense-accounts (:parent value))))

View File

@@ -27,8 +27,8 @@
[:id :total :outstanding-balance :invoice-number :date :status :original-id
[:payments [:amount [:payment [:check-number :memo [:bank_account [:id :name :number :bank-name :bank-code :code]]]]]]
[:vendor [:name :id [:primary_contact [:name]] [:address [:street1 :city :state :zip]]]]
[:expense_accounts [:amount :id :expense_account_id :location
[:expense_account [:id :name [:parent [:id :name]]]]]]
[:expense_accounts [:amount :id :location
[:account [:id :numeric-code :name]]]]
[:client [:name :id :code :locations]]]]]
invoices (graphql/query identity (venia/graphql-query {:venia/queries (->graphql query)}))]

View File

@@ -93,7 +93,7 @@
expense-accounts)}
[:id :total :outstanding-balance :invoice-number :date :status
[:vendor [:name :id]]
[:expense_accounts [:amount :id :location :expense_account_id
[:expense_accounts [:amount :id :location
[:account [:id :name :numeric-code :location]]]]
[:client [:name :id :locations]]
[:payments [:amount :id [:payment [:amount :s3_url :check_number ]]]]]]}]}