mirror of
https://github.com/bigcapitalhq/bigcapital.git
synced 2026-02-19 06:10:31 +00:00
Compare commits
56 Commits
print-reso
...
BIG-213
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
882fc20ac1 | ||
|
|
e783cfeafa | ||
|
|
7b4afd3859 | ||
|
|
590715037b | ||
|
|
1e53a8e85e | ||
|
|
2ad77103ac | ||
|
|
c1fc70863b | ||
|
|
125dff8376 | ||
|
|
84da7b7df5 | ||
|
|
4c82f6f8ad | ||
|
|
0d7aad5448 | ||
|
|
74b74a2722 | ||
|
|
3a0a0db8a7 | ||
|
|
265ea9ca48 | ||
|
|
cfd37f8894 | ||
|
|
d1caa5c5ce | ||
|
|
d998d716b7 | ||
|
|
031ccc4a0b | ||
|
|
e4f61823b3 | ||
|
|
1cbc1c056f | ||
|
|
4d4ef54c56 | ||
|
|
f7fcfefc78 | ||
|
|
858f347fd4 | ||
|
|
4d73b59cf3 | ||
|
|
bc67f0cca8 | ||
|
|
ef2d1ff141 | ||
|
|
dc4cdb2a8f | ||
|
|
8862810706 | ||
|
|
3dadbeac4d | ||
|
|
494d2c1fe0 | ||
|
|
d27562bd43 | ||
|
|
8b99e0938d | ||
|
|
94192bfc29 | ||
|
|
708a4dda9e | ||
|
|
10fcf94c92 | ||
|
|
fc9995c4da | ||
|
|
7dc769004d | ||
|
|
5dbfd36415 | ||
|
|
044f11ff74 | ||
|
|
6afe1a09c6 | ||
|
|
909a70e2c5 | ||
|
|
84dd0fa86b | ||
|
|
a4719fe15b | ||
|
|
fd915b503f | ||
|
|
bbba54c08e | ||
|
|
f241e2bede | ||
|
|
175bc243f3 | ||
|
|
7c06c8bb8a | ||
|
|
8fd930caac | ||
|
|
e175307da4 | ||
|
|
b1bf932e88 | ||
|
|
aa897212ab | ||
|
|
890903e08b | ||
|
|
16b2a33cf6 | ||
|
|
382d4ab028 | ||
|
|
85f26e1079 |
27
.env.example
27
.env.example
@@ -75,38 +75,17 @@ PLAID_ENV=sandbox
|
|||||||
# Your Plaid keys, which can be found in the Plaid Dashboard.
|
# Your Plaid keys, which can be found in the Plaid Dashboard.
|
||||||
# https://dashboard.plaid.com/account/keys
|
# https://dashboard.plaid.com/account/keys
|
||||||
PLAID_CLIENT_ID=
|
PLAID_CLIENT_ID=
|
||||||
PLAID_SECRET_DEVELOPMENT=
|
PLAID_SECRET=
|
||||||
PLAID_SECRET_SANDBOX=
|
|
||||||
|
|
||||||
PLAID_LINK_WEBHOOK=
|
PLAID_LINK_WEBHOOK=
|
||||||
|
|
||||||
# (Optional) Redirect URI settings section
|
|
||||||
# Only required for OAuth redirect URI testing (not common on desktop):
|
|
||||||
# Sandbox Mode:
|
|
||||||
# Set the PLAID_SANDBOX_REDIRECT_URI below to 'http://localhost:3001/oauth-link'.
|
|
||||||
# The OAuth redirect flow requires an endpoint on the developer's website
|
|
||||||
# that the bank website should redirect to. You will also need to configure
|
|
||||||
# this redirect URI for your client ID through the Plaid developer dashboard
|
|
||||||
# at https://dashboard.plaid.com/team/api.
|
|
||||||
# Development mode:
|
|
||||||
# When running in development mode, you must use an https:// url.
|
|
||||||
# You will need to configure this https:// redirect URI in the Plaid developer dashboard.
|
|
||||||
# Instructions to create a self-signed certificate for localhost can be found at
|
|
||||||
# https://github.com/plaid/pattern/blob/master/README.md#testing-oauth.
|
|
||||||
# If your system is not set up to run localhost with https://, you will be unable to test
|
|
||||||
# the OAuth in development and should leave the PLAID_DEVELOPMENT_REDIRECT_URI blank.
|
|
||||||
|
|
||||||
PLAID_SANDBOX_REDIRECT_URI=
|
|
||||||
PLAID_DEVELOPMENT_REDIRECT_URI=
|
|
||||||
|
|
||||||
# https://docs.lemonsqueezy.com/guides/developer-guide/getting-started#create-an-api-key
|
# https://docs.lemonsqueezy.com/guides/developer-guide/getting-started#create-an-api-key
|
||||||
LEMONSQUEEZY_API_KEY=
|
LEMONSQUEEZY_API_KEY=
|
||||||
LEMONSQUEEZY_STORE_ID=
|
LEMONSQUEEZY_STORE_ID=
|
||||||
LEMONSQUEEZY_WEBHOOK_SECRET=
|
LEMONSQUEEZY_WEBHOOK_SECRET=
|
||||||
|
|
||||||
# S3 documents and attachments
|
# S3 documents and attachments
|
||||||
S3_REGION=
|
S3_REGION=US
|
||||||
S3_ACCESS_KEY_ID=
|
S3_ACCESS_KEY_ID=
|
||||||
S3_SECRET_ACCESS_KEY=
|
S3_SECRET_ACCESS_KEY=
|
||||||
S3_ENDPOINT=
|
S3_ENDPOINT=
|
||||||
S3_BUCKET=
|
S3_BUCKET=
|
||||||
|
|||||||
127
.github/workflows/build-deploy-develop-container.yaml
vendored
Normal file
127
.github/workflows/build-deploy-develop-container.yaml
vendored
Normal file
@@ -0,0 +1,127 @@
|
|||||||
|
# This workflow will build a docker container, publish it to Github Registry.
|
||||||
|
name: Build and Deploy Develop Docker Container
|
||||||
|
on:
|
||||||
|
push:
|
||||||
|
branches:
|
||||||
|
- develop
|
||||||
|
|
||||||
|
env:
|
||||||
|
WEBAPP_IMAGE_NAME: bigcapitalhq/webapp
|
||||||
|
SERVER_IMAGE_NAME: bigcapitalhq/server
|
||||||
|
|
||||||
|
jobs:
|
||||||
|
build-publish-webapp:
|
||||||
|
strategy:
|
||||||
|
fail-fast: false
|
||||||
|
name: Build and deploy webapp container
|
||||||
|
runs-on: ubuntu-latest
|
||||||
|
environment: production
|
||||||
|
steps:
|
||||||
|
- name: Prepare
|
||||||
|
run: |
|
||||||
|
platform=${{ matrix.platform }}
|
||||||
|
echo "PLATFORM_PAIR=${platform//\//-}" >> $GITHUB_ENV
|
||||||
|
|
||||||
|
- name: Checkout
|
||||||
|
uses: actions/checkout@v4
|
||||||
|
|
||||||
|
- name: Set up Docker Buildx
|
||||||
|
uses: docker/setup-buildx-action@v3
|
||||||
|
|
||||||
|
# Login to Container registry.
|
||||||
|
- name: Log in to the Container registry
|
||||||
|
uses: docker/login-action@v3
|
||||||
|
with:
|
||||||
|
username: ${{ secrets.DOCKER_USERNAME }}
|
||||||
|
password: ${{ secrets.DOCKER_PASSWORD }}
|
||||||
|
|
||||||
|
- name: Extract metadata (tags, labels) for Docker
|
||||||
|
id: meta
|
||||||
|
uses: docker/metadata-action@98669ae865ea3cffbcbaa878cf57c20bbf1c6c38
|
||||||
|
with:
|
||||||
|
images: ${{ env.WEBAPP_IMAGE_NAME }}
|
||||||
|
|
||||||
|
# Builds and push the Docker image.
|
||||||
|
- name: Build and push Docker image
|
||||||
|
uses: docker/build-push-action@v5
|
||||||
|
id: build
|
||||||
|
with:
|
||||||
|
context: ./
|
||||||
|
file: ./packages/webapp/Dockerfile
|
||||||
|
platforms: linux/amd64
|
||||||
|
push: true
|
||||||
|
labels: ${{ steps.meta.outputs.labels }}
|
||||||
|
tags: bigcapitalhq/webapp:develop
|
||||||
|
|
||||||
|
- name: Export digest
|
||||||
|
run: |
|
||||||
|
mkdir -p /tmp/digests
|
||||||
|
digest="${{ steps.build.outputs.digest }}"
|
||||||
|
touch "/tmp/digests/${digest#sha256:}"
|
||||||
|
|
||||||
|
- name: Upload digest
|
||||||
|
uses: actions/upload-artifact@v4
|
||||||
|
with:
|
||||||
|
name: digests-webapp
|
||||||
|
path: /tmp/digests/*
|
||||||
|
if-no-files-found: error
|
||||||
|
retention-days: 1
|
||||||
|
# Send notification to Slack channel.
|
||||||
|
- name: Slack Notification built and published webapp container successfully.
|
||||||
|
uses: rtCamp/action-slack-notify@v2
|
||||||
|
env:
|
||||||
|
SLACK_WEBHOOK: ${{ secrets.SLACK_WEBHOOK }}
|
||||||
|
|
||||||
|
build-publish-server:
|
||||||
|
name: Build and deploy server container
|
||||||
|
runs-on: ubuntu-latest
|
||||||
|
steps:
|
||||||
|
- name: Prepare
|
||||||
|
run: |
|
||||||
|
platform=${{ matrix.platform }}
|
||||||
|
echo "PLATFORM_PAIR=${platform//\//-}" >> $GITHUB_ENV
|
||||||
|
|
||||||
|
- name: Checkout
|
||||||
|
uses: actions/checkout@v4
|
||||||
|
|
||||||
|
- name: Set up Docker Buildx
|
||||||
|
uses: docker/setup-buildx-action@v3
|
||||||
|
|
||||||
|
# Login to Container registry.
|
||||||
|
- name: Log in to the Container registry
|
||||||
|
uses: docker/login-action@v3
|
||||||
|
with:
|
||||||
|
username: ${{ secrets.DOCKER_USERNAME }}
|
||||||
|
password: ${{ secrets.DOCKER_PASSWORD }}
|
||||||
|
|
||||||
|
# Builds and push the Docker image.
|
||||||
|
- name: Build and push Docker image
|
||||||
|
uses: docker/build-push-action@v5
|
||||||
|
id: build
|
||||||
|
with:
|
||||||
|
context: ./
|
||||||
|
file: ./packages/server/Dockerfile
|
||||||
|
platforms: linux/amd64
|
||||||
|
push: true
|
||||||
|
tags: bigcapitalhq/server:develop
|
||||||
|
labels: ${{ steps.meta.outputs.labels }}
|
||||||
|
|
||||||
|
- name: Export digest
|
||||||
|
run: |
|
||||||
|
mkdir -p /tmp/digests
|
||||||
|
digest="${{ steps.build.outputs.digest }}"
|
||||||
|
touch "/tmp/digests/${digest#sha256:}"
|
||||||
|
|
||||||
|
- name: Upload digest
|
||||||
|
uses: actions/upload-artifact@v4
|
||||||
|
with:
|
||||||
|
name: digests-server
|
||||||
|
path: /tmp/digests/*
|
||||||
|
if-no-files-found: error
|
||||||
|
retention-days: 1
|
||||||
|
|
||||||
|
# Send notification to Slack channel.
|
||||||
|
- name: Slack Notification built and published server container successfully.
|
||||||
|
uses: rtCamp/action-slack-notify@v2
|
||||||
|
env:
|
||||||
|
SLACK_WEBHOOK: ${{ secrets.SLACK_WEBHOOK }}
|
||||||
43
CHANGELOG.md
43
CHANGELOG.md
@@ -2,6 +2,49 @@
|
|||||||
|
|
||||||
All notable changes to Bigcapital server-side will be in this file.
|
All notable changes to Bigcapital server-side will be in this file.
|
||||||
|
|
||||||
|
## [v0.17.5] - 17-06-2024
|
||||||
|
|
||||||
|
* fix: Balance sheet and P/L nested accounts by @abouolia in https://github.com/bigcapitalhq/bigcapital/pull/501
|
||||||
|
* fix: add space between buttons on floating actions bar by @abouolia in https://github.com/bigcapitalhq/bigcapital/pull/508
|
||||||
|
* feat: Migrating to Envoy proxy instead of Nginx by @abouolia in https://github.com/bigcapitalhq/bigcapital/pull/509
|
||||||
|
* fix: Disable email confirmation does not work with invited users by @abouolia in https://github.com/bigcapitalhq/bigcapital/pull/497
|
||||||
|
* feat: Setting up the date format in the whole system dates by @abouolia in https://github.com/bigcapitalhq/bigcapital/pull/506
|
||||||
|
|
||||||
|
## [0.17.0] - 04-06-2024
|
||||||
|
|
||||||
|
### New
|
||||||
|
|
||||||
|
* feat: Upload and attach documents by @abouolia in https://github.com/bigcapitalhq/bigcapital/pull/461
|
||||||
|
* feat: Export resource tables to pdf by @abouolia in https://github.com/bigcapitalhq/bigcapital/pull/460
|
||||||
|
* feat: Build and deploy develop Docker container by @abouolia in https://github.com/bigcapitalhq/bigcapital/pull/476
|
||||||
|
* feat: Internal docker virtual network by @abouolia in https://github.com/bigcapitalhq/bigcapital/pull/478
|
||||||
|
|
||||||
|
### Fixes
|
||||||
|
|
||||||
|
* fix: Skip send confirmation email if disabled by @abouolia in https://github.com/bigcapitalhq/bigcapital/pull/459
|
||||||
|
* fix: Lemon Squeezy redirect to base url by @abouolia in https://github.com/bigcapitalhq/bigcapital/pull/479
|
||||||
|
* fix: Organize Plaid env variables for development and sandbox envs by @abouolia in https://github.com/bigcapitalhq/bigcapital/pull/480
|
||||||
|
* fix: Plaid syncs deposit imports as withdrawals by @abouolia in https://github.com/bigcapitalhq/bigcapital/pull/481
|
||||||
|
* fix: Validate the s3 configures exist by @abouolia in https://github.com/bigcapitalhq/bigcapital/pull/482
|
||||||
|
* fix: Run migrations only for initialized tenants by @abouolia in https://github.com/bigcapitalhq/bigcapital/pull/484
|
||||||
|
|
||||||
|
## [0.16.16] -
|
||||||
|
|
||||||
|
* feat: handle http exceptions by @abouolia in https://github.com/bigcapitalhq/bigcapital/pull/456
|
||||||
|
* feat: add the missing Newrelic env vars to docker-compose.prod file by @abouolia in https://github.com/bigcapitalhq/bigcapital/pull/457
|
||||||
|
* fix: add the signup email confirmation env var by @abouolia in https://github.com/bigcapitalhq/bigcapital/pull/458
|
||||||
|
|
||||||
|
## [0.16.14] -
|
||||||
|
|
||||||
|
* fix: Typo in setup wizard by @ccantrell72 in https://github.com/bigcapitalhq/bigcapital/pull/440
|
||||||
|
* fix: Showing the real mail address on email confirmation view by @abouolia in https://github.com/bigcapitalhq/bigcapital/pull/445
|
||||||
|
* fix: Auto-increment setting parsing by @abouolia in https://github.com/bigcapitalhq/bigcapital/pull/453
|
||||||
|
|
||||||
|
## [0.16.12] -
|
||||||
|
|
||||||
|
* feat: Create a manifest list for `webapp` Docker image and push it to DockerHub. by @abouolia in https://github.com/bigcapitalhq/bigcapital/pull/436
|
||||||
|
* feat: Combine arm64 and amd64 in one Github action runner by @abouolia in https://github.com/bigcapitalhq/bigcapital/pull/437
|
||||||
|
|
||||||
## [0.16.11] - 06-05-2024
|
## [0.16.11] - 06-05-2024
|
||||||
|
|
||||||
### improvements
|
### improvements
|
||||||
|
|||||||
@@ -3,30 +3,27 @@
|
|||||||
version: '3.3'
|
version: '3.3'
|
||||||
|
|
||||||
services:
|
services:
|
||||||
nginx:
|
proxy:
|
||||||
container_name: bigcapital-nginx-gateway
|
image: envoyproxy/envoy:v1.30-latest
|
||||||
build:
|
depends_on:
|
||||||
context: ./docker/nginx
|
- server
|
||||||
args:
|
- webapp
|
||||||
- SERVER_PROXY_PORT=3000
|
|
||||||
- WEB_SSL=false
|
|
||||||
- SELF_SIGNED=false
|
|
||||||
volumes:
|
|
||||||
- ./data/logs/nginx/:/var/log/nginx
|
|
||||||
- ./docker/certbot/certs/:/var/certs
|
|
||||||
ports:
|
ports:
|
||||||
- '${PUBLIC_PROXY_PORT:-80}:80'
|
- '${PUBLIC_PROXY_PORT:-80}:80'
|
||||||
- '${PUBLIC_PROXY_SSL_PORT:-443}:443'
|
- '${PUBLIC_PROXY_SSL_PORT:-443}:443'
|
||||||
tty: true
|
tty: true
|
||||||
depends_on:
|
volumes:
|
||||||
- server
|
- ./docker/envoy/envoy.yaml:/etc/envoy/envoy.yaml
|
||||||
- webapp
|
|
||||||
restart: on-failure
|
restart: on-failure
|
||||||
|
networks:
|
||||||
|
- bigcapital_network
|
||||||
|
|
||||||
webapp:
|
webapp:
|
||||||
container_name: bigcapital-webapp
|
container_name: bigcapital-webapp
|
||||||
image: bigcapitalhq/webapp:latest
|
image: bigcapitalhq/webapp:latest
|
||||||
restart: on-failure
|
restart: on-failure
|
||||||
|
networks:
|
||||||
|
- bigcapital_network
|
||||||
|
|
||||||
server:
|
server:
|
||||||
container_name: bigcapital-server
|
container_name: bigcapital-server
|
||||||
@@ -42,6 +39,8 @@ services:
|
|||||||
- mongo
|
- mongo
|
||||||
- redis
|
- redis
|
||||||
restart: on-failure
|
restart: on-failure
|
||||||
|
networks:
|
||||||
|
- bigcapital_network
|
||||||
environment:
|
environment:
|
||||||
# Mail
|
# Mail
|
||||||
- MAIL_HOST=${MAIL_HOST}
|
- MAIL_HOST=${MAIL_HOST}
|
||||||
@@ -89,14 +88,17 @@ services:
|
|||||||
- GOTENBERG_URL=${GOTENBERG_URL}
|
- GOTENBERG_URL=${GOTENBERG_URL}
|
||||||
- GOTENBERG_DOCS_URL=${GOTENBERG_DOCS_URL}
|
- GOTENBERG_DOCS_URL=${GOTENBERG_DOCS_URL}
|
||||||
|
|
||||||
|
# Exchange Rate
|
||||||
|
- EXCHANGE_RATE_SERVICE=${EXCHANGE_RATE_SERVICE}
|
||||||
|
- OPEN_EXCHANGE_RATE_APP_ID-${OPEN_EXCHANGE_RATE_APP_ID}
|
||||||
|
|
||||||
# Bank Sync
|
# Bank Sync
|
||||||
- BANKING_CONNECT=${BANKING_CONNECT}
|
- BANKING_CONNECT=${BANKING_CONNECT}
|
||||||
|
|
||||||
# Plaid
|
# Plaid
|
||||||
- PLAID_ENV=${PLAID_ENV}
|
- PLAID_ENV=${PLAID_ENV}
|
||||||
- PLAID_CLIENT_ID=${PLAID_CLIENT_ID}
|
- PLAID_CLIENT_ID=${PLAID_CLIENT_ID}
|
||||||
- PLAID_SECRET_DEVELOPMENT=${PLAID_SECRET_DEVELOPMENT}
|
- PLAID_SECRET=${PLAID_SECRET}
|
||||||
- PLAID_SECRET_SANDBOX=${b8cf42b441e110451e2f69ad7e1e9f}
|
|
||||||
- PLAID_LINK_WEBHOOK=${PLAID_LINK_WEBHOOK}
|
- PLAID_LINK_WEBHOOK=${PLAID_LINK_WEBHOOK}
|
||||||
|
|
||||||
# Lemon Squeez
|
# Lemon Squeez
|
||||||
@@ -114,6 +116,13 @@ services:
|
|||||||
- NEW_RELIC_LICENSE_KEY=${NEW_RELIC_LICENSE_KEY}
|
- NEW_RELIC_LICENSE_KEY=${NEW_RELIC_LICENSE_KEY}
|
||||||
- NEW_RELIC_APP_NAME=${NEW_RELIC_APP_NAME}
|
- NEW_RELIC_APP_NAME=${NEW_RELIC_APP_NAME}
|
||||||
|
|
||||||
|
# S3
|
||||||
|
- S3_REGION=${S3_REGION}
|
||||||
|
- S3_ACCESS_KEY_ID=${S3_ACCESS_KEY_ID}
|
||||||
|
- S3_SECRET_ACCESS_KEY=${S3_SECRET_ACCESS_KEY}
|
||||||
|
- S3_ENDPOINT=${S3_ENDPOINT}
|
||||||
|
- S3_BUCKET=${S3_BUCKET}
|
||||||
|
|
||||||
database_migration:
|
database_migration:
|
||||||
container_name: bigcapital-database-migration
|
container_name: bigcapital-database-migration
|
||||||
build:
|
build:
|
||||||
@@ -130,6 +139,8 @@ services:
|
|||||||
- TENANT_DB_NAME_PERFIX=${TENANT_DB_NAME_PERFIX}
|
- TENANT_DB_NAME_PERFIX=${TENANT_DB_NAME_PERFIX}
|
||||||
depends_on:
|
depends_on:
|
||||||
- mysql
|
- mysql
|
||||||
|
networks:
|
||||||
|
- bigcapital_network
|
||||||
|
|
||||||
mysql:
|
mysql:
|
||||||
container_name: bigcapital-mysql
|
container_name: bigcapital-mysql
|
||||||
@@ -145,6 +156,8 @@ services:
|
|||||||
- mysql:/var/lib/mysql
|
- mysql:/var/lib/mysql
|
||||||
expose:
|
expose:
|
||||||
- '3306'
|
- '3306'
|
||||||
|
networks:
|
||||||
|
- bigcapital_network
|
||||||
|
|
||||||
mongo:
|
mongo:
|
||||||
container_name: bigcapital-mongo
|
container_name: bigcapital-mongo
|
||||||
@@ -154,6 +167,8 @@ services:
|
|||||||
- '27017'
|
- '27017'
|
||||||
volumes:
|
volumes:
|
||||||
- mongo:/var/lib/mongodb
|
- mongo:/var/lib/mongodb
|
||||||
|
networks:
|
||||||
|
- bigcapital_network
|
||||||
|
|
||||||
redis:
|
redis:
|
||||||
container_name: bigcapital-redis
|
container_name: bigcapital-redis
|
||||||
@@ -164,11 +179,15 @@ services:
|
|||||||
- '6379'
|
- '6379'
|
||||||
volumes:
|
volumes:
|
||||||
- redis:/data
|
- redis:/data
|
||||||
|
networks:
|
||||||
|
- bigcapital_network
|
||||||
|
|
||||||
gotenberg:
|
gotenberg:
|
||||||
image: gotenberg/gotenberg:7
|
image: gotenberg/gotenberg:7
|
||||||
expose:
|
expose:
|
||||||
- '9000'
|
- '9000'
|
||||||
|
networks:
|
||||||
|
- bigcapital_network
|
||||||
|
|
||||||
# Volumes
|
# Volumes
|
||||||
volumes:
|
volumes:
|
||||||
@@ -183,3 +202,8 @@ volumes:
|
|||||||
redis:
|
redis:
|
||||||
name: bigcapital_prod_redis
|
name: bigcapital_prod_redis
|
||||||
driver: local
|
driver: local
|
||||||
|
|
||||||
|
# Networks
|
||||||
|
networks:
|
||||||
|
bigcapital_network:
|
||||||
|
driver: bridge
|
||||||
|
|||||||
62
docker/envoy/envoy.yaml
Normal file
62
docker/envoy/envoy.yaml
Normal file
@@ -0,0 +1,62 @@
|
|||||||
|
static_resources:
|
||||||
|
listeners:
|
||||||
|
- name: listener_0
|
||||||
|
address:
|
||||||
|
socket_address:
|
||||||
|
address: 0.0.0.0
|
||||||
|
port_value: 80
|
||||||
|
filter_chains:
|
||||||
|
- filters:
|
||||||
|
- name: envoy.filters.network.http_connection_manager
|
||||||
|
typed_config:
|
||||||
|
'@type': type.googleapis.com/envoy.extensions.filters.network.http_connection_manager.v3.HttpConnectionManager
|
||||||
|
stat_prefix: ingress_http
|
||||||
|
route_config:
|
||||||
|
name: local_route
|
||||||
|
virtual_hosts:
|
||||||
|
- name: backend
|
||||||
|
domains: ['*']
|
||||||
|
routes:
|
||||||
|
- match:
|
||||||
|
prefix: '/api'
|
||||||
|
route:
|
||||||
|
cluster: dynamic_server
|
||||||
|
- match:
|
||||||
|
prefix: '/'
|
||||||
|
route:
|
||||||
|
cluster: webapp
|
||||||
|
http_filters:
|
||||||
|
- name: envoy.filters.http.router
|
||||||
|
typed_config:
|
||||||
|
"@type": type.googleapis.com/envoy.extensions.filters.http.router.v3.Router
|
||||||
|
|
||||||
|
clusters:
|
||||||
|
- name: dynamic_server
|
||||||
|
connect_timeout: 0.25s
|
||||||
|
type: STRICT_DNS
|
||||||
|
dns_lookup_family: V4_ONLY
|
||||||
|
lb_policy: ROUND_ROBIN
|
||||||
|
load_assignment:
|
||||||
|
cluster_name: dynamic_server
|
||||||
|
endpoints:
|
||||||
|
- lb_endpoints:
|
||||||
|
- endpoint:
|
||||||
|
address:
|
||||||
|
socket_address:
|
||||||
|
address: server
|
||||||
|
port_value: 3000
|
||||||
|
|
||||||
|
- name: webapp
|
||||||
|
connect_timeout: 0.25s
|
||||||
|
type: STRICT_DNS
|
||||||
|
dns_lookup_family: V4_ONLY
|
||||||
|
lb_policy: ROUND_ROBIN
|
||||||
|
load_assignment:
|
||||||
|
cluster_name: webapp
|
||||||
|
endpoints:
|
||||||
|
- lb_endpoints:
|
||||||
|
- endpoint:
|
||||||
|
address:
|
||||||
|
socket_address:
|
||||||
|
address: webapp
|
||||||
|
port_value: 80
|
||||||
@@ -1,21 +0,0 @@
|
|||||||
FROM nginx:1.11
|
|
||||||
|
|
||||||
RUN mkdir /etc/nginx/sites-available && rm /etc/nginx/conf.d/default.conf
|
|
||||||
ADD nginx.conf /etc/nginx/
|
|
||||||
|
|
||||||
COPY scripts /root/scripts/
|
|
||||||
COPY certs /etc/ssl/
|
|
||||||
|
|
||||||
COPY sites /etc/nginx/templates
|
|
||||||
|
|
||||||
ARG SERVER_PROXY_PORT=3000
|
|
||||||
ARG WEB_SSL=false
|
|
||||||
ARG SELF_SIGNED=false
|
|
||||||
|
|
||||||
ENV SERVER_PROXY_PORT=$SERVER_PROXY_PORT
|
|
||||||
ENV WEB_SSL=$WEB_SSL
|
|
||||||
ENV SELF_SIGNED=$SELF_SIGNED
|
|
||||||
|
|
||||||
RUN /bin/bash /root/scripts/build-nginx.sh
|
|
||||||
|
|
||||||
CMD nginx
|
|
||||||
@@ -1,33 +0,0 @@
|
|||||||
user www-data;
|
|
||||||
worker_processes auto;
|
|
||||||
pid /run/nginx.pid;
|
|
||||||
daemon off;
|
|
||||||
|
|
||||||
events {
|
|
||||||
worker_connections 2048;
|
|
||||||
use epoll;
|
|
||||||
}
|
|
||||||
|
|
||||||
http {
|
|
||||||
server_tokens off;
|
|
||||||
sendfile on;
|
|
||||||
tcp_nopush on;
|
|
||||||
tcp_nodelay on;
|
|
||||||
keepalive_timeout 15;
|
|
||||||
types_hash_max_size 2048;
|
|
||||||
client_max_body_size 20M;
|
|
||||||
open_file_cache max=100;
|
|
||||||
gzip on;
|
|
||||||
gzip_disable "msie6";
|
|
||||||
|
|
||||||
ssl_protocols TLSv1 TLSv1.1 TLSv1.2;
|
|
||||||
ssl_ciphers 'ECDHE-ECDSA-CHACHA20-POLY1305:ECDHE-RSA-CHACHA20-POLY1305:ECDHE-ECDSA-AES128-GCM-SHA256:ECDHE-RSA-AES128-GCM-SHA256:ECDHE-ECDSA-AES256-GCM-SHA384:ECDHE-RSA-AES256-GCM-SHA384:DHE-RSA-AES128-GCM-SHA256:DHE-RSA-AES256-GCM-SHA384:ECDHE-ECDSA-AES128-SHA256:ECDHE-RSA-AES128-SHA256:ECDHE-ECDSA-AES128-SHA:ECDHE-RSA-AES256-SHA384:ECDHE-RSA-AES128-SHA:ECDHE-ECDSA-AES256-SHA384:ECDHE-ECDSA-AES256-SHA:ECDHE-RSA-AES256-SHA:DHE-RSA-AES128-SHA256:DHE-RSA-AES128-SHA:DHE-RSA-AES256-SHA256:DHE-RSA-AES256-SHA:ECDHE-ECDSA-DES-CBC3-SHA:ECDHE-RSA-DES-CBC3-SHA:EDH-RSA-DES-CBC3-SHA:AES128-GCM-SHA256:AES256-GCM-SHA384:AES128-SHA256:AES256-SHA256:AES128-SHA:AES256-SHA:DES-CBC3-SHA:!DSS';
|
|
||||||
|
|
||||||
include /etc/nginx/mime.types;
|
|
||||||
default_type application/octet-stream;
|
|
||||||
|
|
||||||
include /etc/nginx/conf.d/*.conf;
|
|
||||||
include /etc/nginx/sites-available/*;
|
|
||||||
access_log /var/log/nginx/access.log;
|
|
||||||
error_log /var/log/nginx/error.log;
|
|
||||||
}
|
|
||||||
@@ -1,9 +0,0 @@
|
|||||||
#!/bin/bash
|
|
||||||
|
|
||||||
for conf in /etc/nginx/templates/*.conf; do
|
|
||||||
mv $conf "/etc/nginx/sites-available/"$(basename $conf) > /dev/null
|
|
||||||
done
|
|
||||||
|
|
||||||
for template in /etc/nginx/templates/*.template; do
|
|
||||||
envsubst < $template > "/etc/nginx/sites-available/"$(basename $template)".conf"
|
|
||||||
done
|
|
||||||
@@ -1,16 +0,0 @@
|
|||||||
server {
|
|
||||||
listen 80 default_server;
|
|
||||||
|
|
||||||
location /api {
|
|
||||||
proxy_pass http://server:${SERVER_PROXY_PORT};
|
|
||||||
}
|
|
||||||
|
|
||||||
location / {
|
|
||||||
proxy_pass http://webapp;
|
|
||||||
}
|
|
||||||
|
|
||||||
location /.well-known/acme-challenge/ {
|
|
||||||
root /var/www/letsencrypt/;
|
|
||||||
log_not_found off;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
@@ -25,6 +25,7 @@
|
|||||||
"@casl/ability": "^5.4.3",
|
"@casl/ability": "^5.4.3",
|
||||||
"@hapi/boom": "^7.4.3",
|
"@hapi/boom": "^7.4.3",
|
||||||
"@lemonsqueezy/lemonsqueezy.js": "^2.2.0",
|
"@lemonsqueezy/lemonsqueezy.js": "^2.2.0",
|
||||||
|
"@supercharge/promise-pool": "^3.2.0",
|
||||||
"@types/express": "^4.17.21",
|
"@types/express": "^4.17.21",
|
||||||
"@types/i18n": "^0.8.7",
|
"@types/i18n": "^0.8.7",
|
||||||
"@types/knex": "^0.16.1",
|
"@types/knex": "^0.16.1",
|
||||||
|
|||||||
@@ -4,12 +4,16 @@ import { Router, Response, NextFunction, Request } from 'express';
|
|||||||
import { body, param } from 'express-validator';
|
import { body, param } from 'express-validator';
|
||||||
import BaseController from '@/api/controllers/BaseController';
|
import BaseController from '@/api/controllers/BaseController';
|
||||||
import { AttachmentsApplication } from '@/services/Attachments/AttachmentsApplication';
|
import { AttachmentsApplication } from '@/services/Attachments/AttachmentsApplication';
|
||||||
|
import { AttachmentUploadPipeline } from '@/services/Attachments/S3UploadPipeline';
|
||||||
|
|
||||||
@Service()
|
@Service()
|
||||||
export class AttachmentsController extends BaseController {
|
export class AttachmentsController extends BaseController {
|
||||||
@Inject()
|
@Inject()
|
||||||
private attachmentsApplication: AttachmentsApplication;
|
private attachmentsApplication: AttachmentsApplication;
|
||||||
|
|
||||||
|
@Inject()
|
||||||
|
private uploadPipelineService: AttachmentUploadPipeline;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Router constructor.
|
* Router constructor.
|
||||||
*/
|
*/
|
||||||
@@ -18,7 +22,8 @@ export class AttachmentsController extends BaseController {
|
|||||||
|
|
||||||
router.post(
|
router.post(
|
||||||
'/',
|
'/',
|
||||||
this.attachmentsApplication.uploadPipeline.single('file'),
|
this.uploadPipelineService.validateS3Configured,
|
||||||
|
this.uploadPipelineService.uploadPipeline().single('file'),
|
||||||
this.validateUploadedFileExistance,
|
this.validateUploadedFileExistance,
|
||||||
this.uploadAttachment.bind(this)
|
this.uploadAttachment.bind(this)
|
||||||
);
|
);
|
||||||
|
|||||||
@@ -5,7 +5,7 @@ import DashboardService from '@/services/Dashboard/DashboardService';
|
|||||||
@Service()
|
@Service()
|
||||||
export default class DashboardMetaController {
|
export default class DashboardMetaController {
|
||||||
@Inject()
|
@Inject()
|
||||||
dashboardService: DashboardService;
|
private dashboardService: DashboardService;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Constructor router.
|
* Constructor router.
|
||||||
|
|||||||
@@ -1,7 +1,6 @@
|
|||||||
import { Router } from 'express';
|
import { NextFunction, Router, Request, Response } from 'express';
|
||||||
import { PlaidApplication } from '@/services/Banking/Plaid/PlaidApplication';
|
|
||||||
import { Request, Response } from 'express';
|
|
||||||
import { Inject, Service } from 'typedi';
|
import { Inject, Service } from 'typedi';
|
||||||
|
import { PlaidApplication } from '@/services/Banking/Plaid/PlaidApplication';
|
||||||
import BaseController from '../BaseController';
|
import BaseController from '../BaseController';
|
||||||
import { LemonSqueezyWebhooks } from '@/services/Subscription/LemonSqueezyWebhooks';
|
import { LemonSqueezyWebhooks } from '@/services/Subscription/LemonSqueezyWebhooks';
|
||||||
import { PlaidWebhookTenantBootMiddleware } from '@/services/Banking/Plaid/PlaidWebhookTenantBootMiddleware';
|
import { PlaidWebhookTenantBootMiddleware } from '@/services/Banking/Plaid/PlaidWebhookTenantBootMiddleware';
|
||||||
@@ -34,7 +33,7 @@ export class Webhooks extends BaseController {
|
|||||||
* @param {Response} res
|
* @param {Response} res
|
||||||
* @returns {Response}
|
* @returns {Response}
|
||||||
*/
|
*/
|
||||||
public async lemonWebhooks(req: Request, res: Response, next: any) {
|
public async lemonWebhooks(req: Request, res: Response, next: NextFunction) {
|
||||||
const data = req.body;
|
const data = req.body;
|
||||||
const signature = req.headers['x-signature'] ?? '';
|
const signature = req.headers['x-signature'] ?? '';
|
||||||
const rawBody = req.rawBody;
|
const rawBody = req.rawBody;
|
||||||
@@ -57,20 +56,25 @@ export class Webhooks extends BaseController {
|
|||||||
* @param {Response} res
|
* @param {Response} res
|
||||||
* @returns {Response}
|
* @returns {Response}
|
||||||
*/
|
*/
|
||||||
public async plaidWebhooks(req: Request, res: Response) {
|
public async plaidWebhooks(req: Request, res: Response, next: NextFunction) {
|
||||||
const { tenantId } = req;
|
const { tenantId } = req;
|
||||||
const {
|
|
||||||
webhook_type: webhookType,
|
|
||||||
webhook_code: webhookCode,
|
|
||||||
item_id: plaidItemId,
|
|
||||||
} = req.body;
|
|
||||||
|
|
||||||
await this.plaidApp.webhooks(
|
try {
|
||||||
tenantId,
|
const {
|
||||||
plaidItemId,
|
webhook_type: webhookType,
|
||||||
webhookType,
|
webhook_code: webhookCode,
|
||||||
webhookCode
|
item_id: plaidItemId,
|
||||||
);
|
} = req.body;
|
||||||
return res.status(200).send({ code: 200, message: 'ok' });
|
|
||||||
|
await this.plaidApp.webhooks(
|
||||||
|
tenantId,
|
||||||
|
plaidItemId,
|
||||||
|
webhookType,
|
||||||
|
webhookCode
|
||||||
|
);
|
||||||
|
return res.status(200).send({ code: 200, message: 'ok' });
|
||||||
|
} catch (error) {
|
||||||
|
next(error);
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -4,6 +4,7 @@ import color from 'colorette';
|
|||||||
import argv from 'getopts';
|
import argv from 'getopts';
|
||||||
import Knex from 'knex';
|
import Knex from 'knex';
|
||||||
import { knexSnakeCaseMappers } from 'objection';
|
import { knexSnakeCaseMappers } from 'objection';
|
||||||
|
import { PromisePool } from '@supercharge/promise-pool';
|
||||||
import '../before';
|
import '../before';
|
||||||
import config from '../config';
|
import config from '../config';
|
||||||
|
|
||||||
@@ -28,7 +29,7 @@ function initSystemKnex() {
|
|||||||
});
|
});
|
||||||
}
|
}
|
||||||
|
|
||||||
function initTenantKnex(organizationId) {
|
function initTenantKnex(organizationId: string = '') {
|
||||||
return Knex({
|
return Knex({
|
||||||
client: config.tenant.db_client,
|
client: config.tenant.db_client,
|
||||||
connection: {
|
connection: {
|
||||||
@@ -71,6 +72,12 @@ function getAllSystemTenants(knex) {
|
|||||||
return knex('tenants');
|
return knex('tenants');
|
||||||
}
|
}
|
||||||
|
|
||||||
|
function getAllInitializedTenants(knex) {
|
||||||
|
return knex('tenants').whereNotNull('initializedAt');
|
||||||
|
}
|
||||||
|
|
||||||
|
const MIGRATION_CONCURRENCY = 10;
|
||||||
|
|
||||||
// module.exports = {
|
// module.exports = {
|
||||||
// log,
|
// log,
|
||||||
// success,
|
// success,
|
||||||
@@ -87,6 +94,7 @@ function getAllSystemTenants(knex) {
|
|||||||
// - bigcapital tenants:migrate:make
|
// - bigcapital tenants:migrate:make
|
||||||
// - bigcapital system:migrate:make
|
// - bigcapital system:migrate:make
|
||||||
// - bigcapital tenants:list
|
// - bigcapital tenants:list
|
||||||
|
// - bigcapital tenants:list --all
|
||||||
|
|
||||||
commander
|
commander
|
||||||
.command('system:migrate:rollback')
|
.command('system:migrate:rollback')
|
||||||
@@ -145,10 +153,13 @@ commander
|
|||||||
commander
|
commander
|
||||||
.command('tenants:list')
|
.command('tenants:list')
|
||||||
.description('Retrieve a list of all system tenants databases.')
|
.description('Retrieve a list of all system tenants databases.')
|
||||||
|
.option('-a, --all', 'All tenants even are not initialized.')
|
||||||
.action(async (cmd) => {
|
.action(async (cmd) => {
|
||||||
try {
|
try {
|
||||||
const sysKnex = await initSystemKnex();
|
const sysKnex = await initSystemKnex();
|
||||||
const tenants = await getAllSystemTenants(sysKnex);
|
const tenants = cmd?.all
|
||||||
|
? await getAllSystemTenants(sysKnex)
|
||||||
|
: await getAllInitializedTenants(sysKnex);
|
||||||
|
|
||||||
tenants.forEach((tenant) => {
|
tenants.forEach((tenant) => {
|
||||||
const dbName = `${config.tenant.db_name_prefix}${tenant.organizationId}`;
|
const dbName = `${config.tenant.db_name_prefix}${tenant.organizationId}`;
|
||||||
@@ -179,18 +190,20 @@ commander
|
|||||||
commander
|
commander
|
||||||
.command('tenants:migrate:latest')
|
.command('tenants:migrate:latest')
|
||||||
.description('Migrate all tenants or the given tenant id.')
|
.description('Migrate all tenants or the given tenant id.')
|
||||||
.option('-t, --tenant_id [tenant_id]', 'Which tenant id do you migrate.')
|
.option(
|
||||||
|
'-t, --tenant_id [tenant_id]',
|
||||||
|
'Which organization id do you migrate.'
|
||||||
|
)
|
||||||
.action(async (cmd) => {
|
.action(async (cmd) => {
|
||||||
try {
|
try {
|
||||||
const sysKnex = await initSystemKnex();
|
const sysKnex = await initSystemKnex();
|
||||||
const tenants = await getAllSystemTenants(sysKnex);
|
const tenants = await getAllInitializedTenants(sysKnex);
|
||||||
const tenantsOrgsIds = tenants.map((tenant) => tenant.organizationId);
|
const tenantsOrgsIds = tenants.map((tenant) => tenant.organizationId);
|
||||||
|
|
||||||
if (cmd.tenant_id && tenantsOrgsIds.indexOf(cmd.tenant_id) === -1) {
|
if (cmd.tenant_id && tenantsOrgsIds.indexOf(cmd.tenant_id) === -1) {
|
||||||
exit(`The given tenant id ${cmd.tenant_id} is not exists.`);
|
exit(`The given tenant id ${cmd.tenant_id} is not exists.`);
|
||||||
}
|
}
|
||||||
// Validate the tenant id exist first of all.
|
// Validate the tenant id exist first of all.
|
||||||
const migrateOpers = [];
|
|
||||||
const migrateTenant = async (organizationId) => {
|
const migrateTenant = async (organizationId) => {
|
||||||
try {
|
try {
|
||||||
const tenantKnex = await initTenantKnex(organizationId);
|
const tenantKnex = await initTenantKnex(organizationId);
|
||||||
@@ -212,18 +225,17 @@ commander
|
|||||||
}
|
}
|
||||||
};
|
};
|
||||||
if (!cmd.tenant_id) {
|
if (!cmd.tenant_id) {
|
||||||
tenants.forEach((tenant) => {
|
await PromisePool.withConcurrency(MIGRATION_CONCURRENCY)
|
||||||
const oper = migrateTenant(tenant.organizationId);
|
.for(tenants)
|
||||||
migrateOpers.push(oper);
|
.process((tenant, index, pool) => {
|
||||||
});
|
return migrateTenant(tenant.organizationId);
|
||||||
|
})
|
||||||
|
.then(() => {
|
||||||
|
success('All tenants are migrated.');
|
||||||
|
});
|
||||||
} else {
|
} else {
|
||||||
const oper = migrateTenant(cmd.tenant_id);
|
await migrateTenant(cmd.tenant_id);
|
||||||
migrateOpers.push(oper);
|
|
||||||
}
|
}
|
||||||
|
|
||||||
Promise.all(migrateOpers).then(() => {
|
|
||||||
success('All tenants are migrated.');
|
|
||||||
});
|
|
||||||
} catch (error) {
|
} catch (error) {
|
||||||
exit(error);
|
exit(error);
|
||||||
}
|
}
|
||||||
@@ -232,19 +244,21 @@ commander
|
|||||||
commander
|
commander
|
||||||
.command('tenants:migrate:rollback')
|
.command('tenants:migrate:rollback')
|
||||||
.description('Rollback the last batch of tenants migrations.')
|
.description('Rollback the last batch of tenants migrations.')
|
||||||
.option('-t, --tenant_id [tenant_id]', 'Which tenant id do you migrate.')
|
.option(
|
||||||
|
'-t, --tenant_id [tenant_id]',
|
||||||
|
'Which organization id do you migrate.'
|
||||||
|
)
|
||||||
.action(async (cmd) => {
|
.action(async (cmd) => {
|
||||||
try {
|
try {
|
||||||
const sysKnex = await initSystemKnex();
|
const sysKnex = await initSystemKnex();
|
||||||
const tenants = await getAllSystemTenants(sysKnex);
|
const tenants = await getAllInitializedTenants(sysKnex);
|
||||||
const tenantsOrgsIds = tenants.map((tenant) => tenant.organizationId);
|
const tenantsOrgsIds = tenants.map((tenant) => tenant.organizationId);
|
||||||
|
|
||||||
if (cmd.tenant_id && tenantsOrgsIds.indexOf(cmd.tenant_id) === -1) {
|
if (cmd.tenant_id && tenantsOrgsIds.indexOf(cmd.tenant_id) === -1) {
|
||||||
exit(`The given tenant id ${cmd.tenant_id} is not exists.`);
|
exit(`The given tenant id ${cmd.tenant_id} is not exists.`);
|
||||||
}
|
}
|
||||||
|
|
||||||
const migrateOpers = [];
|
const migrateTenant = async (organizationId: string) => {
|
||||||
const migrateTenant = async (organizationId) => {
|
|
||||||
try {
|
try {
|
||||||
const tenantKnex = await initTenantKnex(organizationId);
|
const tenantKnex = await initTenantKnex(organizationId);
|
||||||
const [batchNo, _log] = await tenantKnex.migrate.rollback();
|
const [batchNo, _log] = await tenantKnex.migrate.rollback();
|
||||||
@@ -265,19 +279,18 @@ commander
|
|||||||
};
|
};
|
||||||
|
|
||||||
if (!cmd.tenant_id) {
|
if (!cmd.tenant_id) {
|
||||||
tenants.forEach((tenant) => {
|
await PromisePool.withConcurrency(MIGRATION_CONCURRENCY)
|
||||||
const oper = migrateTenant(tenant.organizationId);
|
.for(tenants)
|
||||||
migrateOpers.push(oper);
|
.process((tenant, index, pool) => {
|
||||||
});
|
return migrateTenant(tenant.organizationId);
|
||||||
|
})
|
||||||
|
.then(() => {
|
||||||
|
success('All tenants are rollbacked.');
|
||||||
|
});
|
||||||
} else {
|
} else {
|
||||||
const oper = migrateTenant(cmd.tenant_id);
|
await migrateTenant(cmd.tenant_id);
|
||||||
migrateOpers.push(oper);
|
|
||||||
}
|
}
|
||||||
Promise.all(migrateOpers).then(() => {
|
|
||||||
success('All tenants are rollbacked.');
|
|
||||||
});
|
|
||||||
} catch (error) {
|
} catch (error) {
|
||||||
exit(error);
|
exit(error);
|
||||||
}
|
}
|
||||||
});
|
});
|
||||||
|
|
||||||
|
|||||||
@@ -204,10 +204,7 @@ module.exports = {
|
|||||||
plaid: {
|
plaid: {
|
||||||
env: process.env.PLAID_ENV || 'sandbox',
|
env: process.env.PLAID_ENV || 'sandbox',
|
||||||
clientId: process.env.PLAID_CLIENT_ID,
|
clientId: process.env.PLAID_CLIENT_ID,
|
||||||
secretDevelopment: process.env.PLAID_SECRET_DEVELOPMENT,
|
secret: process.env.PLAID_SECRET,
|
||||||
secretSandbox: process.env.PLAID_SECRET_SANDBOX,
|
|
||||||
redirectSandBox: process.env.PLAID_SANDBOX_REDIRECT_URI,
|
|
||||||
redirectDevelopment: process.env.PLAID_DEVELOPMENT_REDIRECT_URI,
|
|
||||||
linkWebhook: process.env.PLAID_LINK_WEBHOOK,
|
linkWebhook: process.env.PLAID_LINK_WEBHOOK,
|
||||||
},
|
},
|
||||||
|
|
||||||
@@ -218,6 +215,7 @@ module.exports = {
|
|||||||
key: process.env.LEMONSQUEEZY_API_KEY,
|
key: process.env.LEMONSQUEEZY_API_KEY,
|
||||||
storeId: process.env.LEMONSQUEEZY_STORE_ID,
|
storeId: process.env.LEMONSQUEEZY_STORE_ID,
|
||||||
webhookSecret: process.env.LEMONSQUEEZY_WEBHOOK_SECRET,
|
webhookSecret: process.env.LEMONSQUEEZY_WEBHOOK_SECRET,
|
||||||
|
redirectTo: `${process.env.BASE_URL}/setup`,
|
||||||
},
|
},
|
||||||
|
|
||||||
/**
|
/**
|
||||||
@@ -237,6 +235,6 @@ module.exports = {
|
|||||||
accessKeyId: process.env.S3_ACCESS_KEY_ID,
|
accessKeyId: process.env.S3_ACCESS_KEY_ID,
|
||||||
secretAccessKey: process.env.S3_SECRET_ACCESS_KEY,
|
secretAccessKey: process.env.S3_SECRET_ACCESS_KEY,
|
||||||
endpoint: process.env.S3_ENDPOINT,
|
endpoint: process.env.S3_ENDPOINT,
|
||||||
bucket: process.env.S3_BUCKET,
|
bucket: process.env.S3_BUCKET || 'bigcapital-documents',
|
||||||
},
|
},
|
||||||
};
|
};
|
||||||
|
|||||||
@@ -0,0 +1,14 @@
|
|||||||
|
exports.up = function (knex) {
|
||||||
|
return knex.schema.createTable('storage', (table) => {
|
||||||
|
table.increments('id').primary();
|
||||||
|
table.string('key').notNullable();
|
||||||
|
table.string('path').notNullable();
|
||||||
|
table.string('extension').notNullable();
|
||||||
|
table.integer('expire_in');
|
||||||
|
table.timestamps();
|
||||||
|
});
|
||||||
|
};
|
||||||
|
|
||||||
|
exports.down = function (knex) {
|
||||||
|
return knex.schema.dropTableIfExists('storage');
|
||||||
|
};
|
||||||
@@ -0,0 +1,5 @@
|
|||||||
|
exports.up = function (knex) {
|
||||||
|
return knex.schema.dropTableIfExists('storage');
|
||||||
|
};
|
||||||
|
|
||||||
|
exports.down = function (knex) {};
|
||||||
@@ -164,3 +164,7 @@ export enum TaxRateAction {
|
|||||||
DELETE = 'Delete',
|
DELETE = 'Delete',
|
||||||
VIEW = 'View',
|
VIEW = 'View',
|
||||||
}
|
}
|
||||||
|
|
||||||
|
export interface CreateAccountParams {
|
||||||
|
ignoreUniqueName: boolean;
|
||||||
|
}
|
||||||
|
|||||||
@@ -56,6 +56,8 @@ export interface IGeneralLedgerSheetAccount {
|
|||||||
transactions: IGeneralLedgerSheetAccountTransaction[];
|
transactions: IGeneralLedgerSheetAccountTransaction[];
|
||||||
openingBalance: IGeneralLedgerSheetAccountBalance;
|
openingBalance: IGeneralLedgerSheetAccountBalance;
|
||||||
closingBalance: IGeneralLedgerSheetAccountBalance;
|
closingBalance: IGeneralLedgerSheetAccountBalance;
|
||||||
|
closingBalanceSubaccounts?: IGeneralLedgerSheetAccountBalance;
|
||||||
|
children?: IGeneralLedgerSheetAccount[];
|
||||||
}
|
}
|
||||||
|
|
||||||
export type IGeneralLedgerSheetData = IGeneralLedgerSheetAccount[];
|
export type IGeneralLedgerSheetData = IGeneralLedgerSheetAccount[];
|
||||||
|
|||||||
@@ -70,10 +70,7 @@ export class PlaidClientWrapper {
|
|||||||
baseOptions: {
|
baseOptions: {
|
||||||
headers: {
|
headers: {
|
||||||
'PLAID-CLIENT-ID': config.plaid.clientId,
|
'PLAID-CLIENT-ID': config.plaid.clientId,
|
||||||
'PLAID-SECRET':
|
'PLAID-SECRET': config.plaid.secret,
|
||||||
config.plaid.env === 'development'
|
|
||||||
? config.plaid.secretDevelopment
|
|
||||||
: config.plaid.secretSandbox,
|
|
||||||
'Plaid-Version': '2020-09-14',
|
'Plaid-Version': '2020-09-14',
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
|
|||||||
@@ -149,13 +149,19 @@ export class Transformer {
|
|||||||
return this.excludeAttributes().length > 0;
|
return this.excludeAttributes().length > 0;
|
||||||
};
|
};
|
||||||
|
|
||||||
|
private dateFormat = 'YYYY MMM DD';
|
||||||
|
|
||||||
|
setDateFormat(format: string) {
|
||||||
|
this.dateFormat = format;
|
||||||
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
*
|
*
|
||||||
* @param date
|
* @param date
|
||||||
* @returns
|
* @returns
|
||||||
*/
|
*/
|
||||||
protected formatDate(date) {
|
protected formatDate(date) {
|
||||||
return date ? moment(date).format('YYYY/MM/DD') : '';
|
return date ? moment(date).format(this.dateFormat) : '';
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
@@ -193,6 +199,7 @@ export class Transformer {
|
|||||||
) {
|
) {
|
||||||
transformer.setOptions(options);
|
transformer.setOptions(options);
|
||||||
transformer.setContext(this.context);
|
transformer.setContext(this.context);
|
||||||
|
transformer.setDateFormat(this.dateFormat);
|
||||||
|
|
||||||
return transformer.work(obj);
|
return transformer.work(obj);
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -24,6 +24,17 @@ export class TransformerInjectable {
|
|||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Retrieves the given tenatn date format.
|
||||||
|
* @param {number} tenantId
|
||||||
|
* @returns {string}
|
||||||
|
*/
|
||||||
|
async getTenantDateFormat(tenantId: number) {
|
||||||
|
const metadata = await TenantMetadata.query().findOne('tenantId', tenantId);
|
||||||
|
|
||||||
|
return metadata.dateFormat;
|
||||||
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Transformes the given transformer after inject the tenant context.
|
* Transformes the given transformer after inject the tenant context.
|
||||||
* @param {number} tenantId
|
* @param {number} tenantId
|
||||||
@@ -41,7 +52,11 @@ export class TransformerInjectable {
|
|||||||
if (!isNull(tenantId)) {
|
if (!isNull(tenantId)) {
|
||||||
const context = await this.getApplicationContext(tenantId);
|
const context = await this.getApplicationContext(tenantId);
|
||||||
transformer.setContext(context);
|
transformer.setContext(context);
|
||||||
|
|
||||||
|
const dateFormat = await this.getTenantDateFormat(tenantId);
|
||||||
|
transformer.setDateFormat(dateFormat);
|
||||||
}
|
}
|
||||||
|
|
||||||
transformer.setOptions(options);
|
transformer.setOptions(options);
|
||||||
|
|
||||||
return transformer.work(object);
|
return transformer.work(object);
|
||||||
|
|||||||
@@ -104,10 +104,10 @@ export default class UncategorizedCashflowTransaction extends mixin(
|
|||||||
*/
|
*/
|
||||||
private async updateUncategorizedTransactionCount(
|
private async updateUncategorizedTransactionCount(
|
||||||
queryContext: QueryContext,
|
queryContext: QueryContext,
|
||||||
increment: boolean
|
increment: boolean,
|
||||||
|
amount: number = 1
|
||||||
) {
|
) {
|
||||||
const operation = increment ? 'increment' : 'decrement';
|
const operation = increment ? 'increment' : 'decrement';
|
||||||
const amount = increment ? 1 : -1;
|
|
||||||
|
|
||||||
await Account.query(queryContext.transaction)
|
await Account.query(queryContext.transaction)
|
||||||
.findById(this.accountId)
|
.findById(this.accountId)
|
||||||
|
|||||||
@@ -51,7 +51,7 @@ export default class Ledger implements ILedger {
|
|||||||
|
|
||||||
/**
|
/**
|
||||||
* Filters entries by the given accounts ids then returns a new ledger.
|
* Filters entries by the given accounts ids then returns a new ledger.
|
||||||
* @param {number[]} accountIds
|
* @param {number[]} accountIds
|
||||||
* @returns {ILedger}
|
* @returns {ILedger}
|
||||||
*/
|
*/
|
||||||
public whereAccountsIds(accountIds: number[]): ILedger {
|
public whereAccountsIds(accountIds: number[]): ILedger {
|
||||||
@@ -274,4 +274,14 @@ export default class Ledger implements ILedger {
|
|||||||
const entries = Ledger.mappingTransactions(transactions);
|
const entries = Ledger.mappingTransactions(transactions);
|
||||||
return new Ledger(entries);
|
return new Ledger(entries);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Retrieve the transaction amount.
|
||||||
|
* @param {number} credit - Credit amount.
|
||||||
|
* @param {number} debit - Debit amount.
|
||||||
|
* @param {string} normal - Credit or debit.
|
||||||
|
*/
|
||||||
|
static getAmount(credit: number, debit: number, normal: string) {
|
||||||
|
return normal === 'credit' ? credit - debit : debit - credit;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -7,6 +7,7 @@ import {
|
|||||||
IAccountEventCreatedPayload,
|
IAccountEventCreatedPayload,
|
||||||
IAccountEventCreatingPayload,
|
IAccountEventCreatingPayload,
|
||||||
IAccountCreateDTO,
|
IAccountCreateDTO,
|
||||||
|
CreateAccountParams,
|
||||||
} from '@/interfaces';
|
} from '@/interfaces';
|
||||||
import events from '@/subscribers/events';
|
import events from '@/subscribers/events';
|
||||||
import UnitOfWork from '@/services/UnitOfWork';
|
import UnitOfWork from '@/services/UnitOfWork';
|
||||||
@@ -30,19 +31,22 @@ export class CreateAccount {
|
|||||||
|
|
||||||
/**
|
/**
|
||||||
* Authorize the account creation.
|
* Authorize the account creation.
|
||||||
* @param {number} tenantId
|
* @param {number} tenantId
|
||||||
* @param {IAccountCreateDTO} accountDTO
|
* @param {IAccountCreateDTO} accountDTO
|
||||||
*/
|
*/
|
||||||
private authorize = async (
|
private authorize = async (
|
||||||
tenantId: number,
|
tenantId: number,
|
||||||
accountDTO: IAccountCreateDTO,
|
accountDTO: IAccountCreateDTO,
|
||||||
baseCurrency: string
|
baseCurrency: string,
|
||||||
|
params?: CreateAccountParams
|
||||||
) => {
|
) => {
|
||||||
// Validate account name uniquiness.
|
// Validate account name uniquiness.
|
||||||
await this.validator.validateAccountNameUniquiness(
|
if (!params.ignoreUniqueName) {
|
||||||
tenantId,
|
await this.validator.validateAccountNameUniquiness(
|
||||||
accountDTO.name
|
tenantId,
|
||||||
);
|
accountDTO.name
|
||||||
|
);
|
||||||
|
}
|
||||||
// Validate the account code uniquiness.
|
// Validate the account code uniquiness.
|
||||||
if (accountDTO.code) {
|
if (accountDTO.code) {
|
||||||
await this.validator.isAccountCodeUniqueOrThrowError(
|
await this.validator.isAccountCodeUniqueOrThrowError(
|
||||||
@@ -82,7 +86,7 @@ export class CreateAccount {
|
|||||||
|
|
||||||
/**
|
/**
|
||||||
* Transformes the create account DTO to input model.
|
* Transformes the create account DTO to input model.
|
||||||
* @param {IAccountCreateDTO} createAccountDTO
|
* @param {IAccountCreateDTO} createAccountDTO
|
||||||
*/
|
*/
|
||||||
private transformDTOToModel = (
|
private transformDTOToModel = (
|
||||||
createAccountDTO: IAccountCreateDTO,
|
createAccountDTO: IAccountCreateDTO,
|
||||||
@@ -104,7 +108,8 @@ export class CreateAccount {
|
|||||||
public createAccount = async (
|
public createAccount = async (
|
||||||
tenantId: number,
|
tenantId: number,
|
||||||
accountDTO: IAccountCreateDTO,
|
accountDTO: IAccountCreateDTO,
|
||||||
trx?: Knex.Transaction
|
trx?: Knex.Transaction,
|
||||||
|
params: CreateAccountParams = { ignoreUniqueName: false }
|
||||||
): Promise<IAccount> => {
|
): Promise<IAccount> => {
|
||||||
const { Account } = this.tenancy.models(tenantId);
|
const { Account } = this.tenancy.models(tenantId);
|
||||||
|
|
||||||
@@ -112,8 +117,12 @@ export class CreateAccount {
|
|||||||
const tenantMeta = await TenantMetadata.query().findOne({ tenantId });
|
const tenantMeta = await TenantMetadata.query().findOne({ tenantId });
|
||||||
|
|
||||||
// Authorize the account creation.
|
// Authorize the account creation.
|
||||||
await this.authorize(tenantId, accountDTO, tenantMeta.baseCurrency);
|
await this.authorize(
|
||||||
|
tenantId,
|
||||||
|
accountDTO,
|
||||||
|
tenantMeta.baseCurrency,
|
||||||
|
params
|
||||||
|
);
|
||||||
// Transformes the DTO to model.
|
// Transformes the DTO to model.
|
||||||
const accountInputModel = this.transformDTOToModel(
|
const accountInputModel = this.transformDTOToModel(
|
||||||
accountDTO,
|
accountDTO,
|
||||||
@@ -148,3 +157,4 @@ export class CreateAccount {
|
|||||||
);
|
);
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
@@ -2,11 +2,9 @@ import { Inject, Service } from 'typedi';
|
|||||||
import { UploadDocument } from './UploadDocument';
|
import { UploadDocument } from './UploadDocument';
|
||||||
import { DeleteAttachment } from './DeleteAttachment';
|
import { DeleteAttachment } from './DeleteAttachment';
|
||||||
import { GetAttachment } from './GetAttachment';
|
import { GetAttachment } from './GetAttachment';
|
||||||
import { AttachmentUploadPipeline } from './S3UploadPipeline';
|
|
||||||
import { LinkAttachment } from './LinkAttachment';
|
import { LinkAttachment } from './LinkAttachment';
|
||||||
import { UnlinkAttachment } from './UnlinkAttachment';
|
import { UnlinkAttachment } from './UnlinkAttachment';
|
||||||
import { getAttachmentPresignedUrl } from './GetAttachmentPresignedUrl';
|
import { getAttachmentPresignedUrl } from './GetAttachmentPresignedUrl';
|
||||||
import type { Multer } from 'multer';
|
|
||||||
|
|
||||||
@Service()
|
@Service()
|
||||||
export class AttachmentsApplication {
|
export class AttachmentsApplication {
|
||||||
@@ -19,9 +17,6 @@ export class AttachmentsApplication {
|
|||||||
@Inject()
|
@Inject()
|
||||||
private getDocumentService: GetAttachment;
|
private getDocumentService: GetAttachment;
|
||||||
|
|
||||||
@Inject()
|
|
||||||
private uploadPipelineService: AttachmentUploadPipeline;
|
|
||||||
|
|
||||||
@Inject()
|
@Inject()
|
||||||
private linkDocumentService: LinkAttachment;
|
private linkDocumentService: LinkAttachment;
|
||||||
|
|
||||||
@@ -31,14 +26,6 @@ export class AttachmentsApplication {
|
|||||||
@Inject()
|
@Inject()
|
||||||
private getPresignedUrlService: getAttachmentPresignedUrl;
|
private getPresignedUrlService: getAttachmentPresignedUrl;
|
||||||
|
|
||||||
/**
|
|
||||||
* Express middleware for uploading attachments to an S3 bucket.
|
|
||||||
* @returns {Multer}
|
|
||||||
*/
|
|
||||||
get uploadPipeline(): Multer {
|
|
||||||
return this.uploadPipelineService.uploadPipeline();
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Saves the metadata of uploaded document to S3 on database.
|
* Saves the metadata of uploaded document to S3 on database.
|
||||||
* @param {number} tenantId
|
* @param {number} tenantId
|
||||||
|
|||||||
@@ -1,12 +1,38 @@
|
|||||||
import multer from 'multer';
|
import multer from 'multer';
|
||||||
import type { Multer } from 'multer'
|
import type { Multer } from 'multer';
|
||||||
import multerS3 from 'multer-s3';
|
import multerS3 from 'multer-s3';
|
||||||
import { s3 } from '@/lib/S3/S3';
|
import { s3 } from '@/lib/S3/S3';
|
||||||
import { Service } from 'typedi';
|
import { Service } from 'typedi';
|
||||||
import config from '@/config';
|
import config from '@/config';
|
||||||
|
import { NextFunction, Request, Response } from 'express';
|
||||||
|
|
||||||
@Service()
|
@Service()
|
||||||
export class AttachmentUploadPipeline {
|
export class AttachmentUploadPipeline {
|
||||||
|
/**
|
||||||
|
* Middleware to ensure that S3 configuration is properly set before proceeding.
|
||||||
|
* This function checks if the necessary S3 configuration keys are present and throws an error if any are missing.
|
||||||
|
*
|
||||||
|
* @param req The HTTP request object.
|
||||||
|
* @param res The HTTP response object.
|
||||||
|
* @param next The callback to pass control to the next middleware function.
|
||||||
|
*/
|
||||||
|
public validateS3Configured(req: Request, res: Response, next: NextFunction) {
|
||||||
|
if (
|
||||||
|
!config.s3.region ||
|
||||||
|
!config.s3.accessKeyId ||
|
||||||
|
!config.s3.secretAccessKey
|
||||||
|
) {
|
||||||
|
const missingKeys = [];
|
||||||
|
if (!config.s3.region) missingKeys.push('region');
|
||||||
|
if (!config.s3.accessKeyId) missingKeys.push('accessKeyId');
|
||||||
|
if (!config.s3.secretAccessKey) missingKeys.push('secretAccessKey');
|
||||||
|
const missing = missingKeys.join(', ');
|
||||||
|
|
||||||
|
throw new Error(`S3 configuration error: Missing ${missing}`);
|
||||||
|
}
|
||||||
|
next();
|
||||||
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Express middleware for uploading attachments to an S3 bucket.
|
* Express middleware for uploading attachments to an S3 bucket.
|
||||||
* It utilizes the multer middleware for handling multipart/form-data, specifically for file uploads.
|
* It utilizes the multer middleware for handling multipart/form-data, specifically for file uploads.
|
||||||
|
|||||||
@@ -1,6 +1,6 @@
|
|||||||
import { Container, Inject } from 'typedi';
|
import { Container, Inject } from 'typedi';
|
||||||
import { cloneDeep } from 'lodash';
|
import { cloneDeep } from 'lodash';
|
||||||
import { Tenant } from '@/system/models';
|
import { SystemUser, Tenant } from '@/system/models';
|
||||||
import {
|
import {
|
||||||
IAuthSignedInEventPayload,
|
IAuthSignedInEventPayload,
|
||||||
IAuthSigningInEventPayload,
|
IAuthSigningInEventPayload,
|
||||||
@@ -64,7 +64,9 @@ export class AuthSigninService {
|
|||||||
const { systemUserRepository } = this.sysRepositories;
|
const { systemUserRepository } = this.sysRepositories;
|
||||||
|
|
||||||
// Finds the user of the given email address.
|
// Finds the user of the given email address.
|
||||||
const user = await systemUserRepository.findOneByEmail(email);
|
const user = await SystemUser.query()
|
||||||
|
.findOne('email', email)
|
||||||
|
.modify('inviteAccepted');
|
||||||
|
|
||||||
// Validate the given email and password.
|
// Validate the given email and password.
|
||||||
await this.validateSignIn(user, email, password);
|
await this.validateSignIn(user, email, password);
|
||||||
|
|||||||
@@ -3,7 +3,11 @@ import { Inject, Service } from 'typedi';
|
|||||||
import bluebird from 'bluebird';
|
import bluebird from 'bluebird';
|
||||||
import { entries, groupBy } from 'lodash';
|
import { entries, groupBy } from 'lodash';
|
||||||
import { CreateAccount } from '@/services/Accounts/CreateAccount';
|
import { CreateAccount } from '@/services/Accounts/CreateAccount';
|
||||||
import { PlaidAccount, PlaidTransaction } from '@/interfaces';
|
import {
|
||||||
|
IAccountCreateDTO,
|
||||||
|
PlaidAccount,
|
||||||
|
PlaidTransaction,
|
||||||
|
} from '@/interfaces';
|
||||||
import {
|
import {
|
||||||
transformPlaidAccountToCreateAccount,
|
transformPlaidAccountToCreateAccount,
|
||||||
transformPlaidTrxsToCashflowCreate,
|
transformPlaidTrxsToCashflowCreate,
|
||||||
@@ -11,6 +15,7 @@ import {
|
|||||||
import { DeleteCashflowTransaction } from '@/services/Cashflow/DeleteCashflowTransactionService';
|
import { DeleteCashflowTransaction } from '@/services/Cashflow/DeleteCashflowTransactionService';
|
||||||
import HasTenancyService from '@/services/Tenancy/TenancyService';
|
import HasTenancyService from '@/services/Tenancy/TenancyService';
|
||||||
import { CashflowApplication } from '@/services/Cashflow/CashflowApplication';
|
import { CashflowApplication } from '@/services/Cashflow/CashflowApplication';
|
||||||
|
import { Knex } from 'knex';
|
||||||
|
|
||||||
const CONCURRENCY_ASYNC = 10;
|
const CONCURRENCY_ASYNC = 10;
|
||||||
|
|
||||||
@@ -28,6 +33,35 @@ export class PlaidSyncDb {
|
|||||||
@Inject()
|
@Inject()
|
||||||
private deleteCashflowTransactionService: DeleteCashflowTransaction;
|
private deleteCashflowTransactionService: DeleteCashflowTransaction;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Syncs the Plaid bank account.
|
||||||
|
* @param {number} tenantId
|
||||||
|
* @param {IAccountCreateDTO} createBankAccountDTO
|
||||||
|
* @param {Knex.Transaction} trx
|
||||||
|
* @returns {Promise<void>}
|
||||||
|
*/
|
||||||
|
public async syncBankAccount(
|
||||||
|
tenantId: number,
|
||||||
|
createBankAccountDTO: IAccountCreateDTO,
|
||||||
|
trx?: Knex.Transaction
|
||||||
|
) {
|
||||||
|
const { Account } = this.tenancy.models(tenantId);
|
||||||
|
const plaidAccount = await Account.query().findOne(
|
||||||
|
'plaidAccountId',
|
||||||
|
createBankAccountDTO.plaidAccountId
|
||||||
|
);
|
||||||
|
// Can't continue if the Plaid account is already created.
|
||||||
|
if (plaidAccount) {
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
await this.createAccountService.createAccount(
|
||||||
|
tenantId,
|
||||||
|
createBankAccountDTO,
|
||||||
|
trx,
|
||||||
|
{ ignoreUniqueName: true }
|
||||||
|
);
|
||||||
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Syncs the plaid accounts to the system accounts.
|
* Syncs the plaid accounts to the system accounts.
|
||||||
* @param {number} tenantId Tenant ID.
|
* @param {number} tenantId Tenant ID.
|
||||||
@@ -37,7 +71,8 @@ export class PlaidSyncDb {
|
|||||||
public async syncBankAccounts(
|
public async syncBankAccounts(
|
||||||
tenantId: number,
|
tenantId: number,
|
||||||
plaidAccounts: PlaidAccount[],
|
plaidAccounts: PlaidAccount[],
|
||||||
institution: any
|
institution: any,
|
||||||
|
trx?: Knex.Transaction
|
||||||
): Promise<void> {
|
): Promise<void> {
|
||||||
const transformToPlaidAccounts =
|
const transformToPlaidAccounts =
|
||||||
transformPlaidAccountToCreateAccount(institution);
|
transformPlaidAccountToCreateAccount(institution);
|
||||||
@@ -47,7 +82,7 @@ export class PlaidSyncDb {
|
|||||||
await bluebird.map(
|
await bluebird.map(
|
||||||
accountCreateDTOs,
|
accountCreateDTOs,
|
||||||
(createAccountDTO: any) =>
|
(createAccountDTO: any) =>
|
||||||
this.createAccountService.createAccount(tenantId, createAccountDTO),
|
this.syncBankAccount(tenantId, createAccountDTO, trx),
|
||||||
{ concurrency: CONCURRENCY_ASYNC }
|
{ concurrency: CONCURRENCY_ASYNC }
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
@@ -61,15 +96,16 @@ export class PlaidSyncDb {
|
|||||||
public async syncAccountTranactions(
|
public async syncAccountTranactions(
|
||||||
tenantId: number,
|
tenantId: number,
|
||||||
plaidAccountId: number,
|
plaidAccountId: number,
|
||||||
plaidTranasctions: PlaidTransaction[]
|
plaidTranasctions: PlaidTransaction[],
|
||||||
|
trx?: Knex.Transaction
|
||||||
): Promise<void> {
|
): Promise<void> {
|
||||||
const { Account } = this.tenancy.models(tenantId);
|
const { Account } = this.tenancy.models(tenantId);
|
||||||
|
|
||||||
const cashflowAccount = await Account.query()
|
const cashflowAccount = await Account.query(trx)
|
||||||
.findOne({ plaidAccountId })
|
.findOne({ plaidAccountId })
|
||||||
.throwIfNotFound();
|
.throwIfNotFound();
|
||||||
|
|
||||||
const openingEquityBalance = await Account.query().findOne(
|
const openingEquityBalance = await Account.query(trx).findOne(
|
||||||
'slug',
|
'slug',
|
||||||
'opening-balance-equity'
|
'opening-balance-equity'
|
||||||
);
|
);
|
||||||
@@ -87,7 +123,8 @@ export class PlaidSyncDb {
|
|||||||
(uncategoriedDTO) =>
|
(uncategoriedDTO) =>
|
||||||
this.cashflowApp.createUncategorizedTransaction(
|
this.cashflowApp.createUncategorizedTransaction(
|
||||||
tenantId,
|
tenantId,
|
||||||
uncategoriedDTO
|
uncategoriedDTO,
|
||||||
|
trx
|
||||||
),
|
),
|
||||||
{ concurrency: 1 }
|
{ concurrency: 1 }
|
||||||
);
|
);
|
||||||
@@ -100,7 +137,8 @@ export class PlaidSyncDb {
|
|||||||
*/
|
*/
|
||||||
public async syncAccountsTransactions(
|
public async syncAccountsTransactions(
|
||||||
tenantId: number,
|
tenantId: number,
|
||||||
plaidAccountsTransactions: PlaidTransaction[]
|
plaidAccountsTransactions: PlaidTransaction[],
|
||||||
|
trx?: Knex.Transaction
|
||||||
): Promise<void> {
|
): Promise<void> {
|
||||||
const groupedTrnsxByAccountId = entries(
|
const groupedTrnsxByAccountId = entries(
|
||||||
groupBy(plaidAccountsTransactions, 'account_id')
|
groupBy(plaidAccountsTransactions, 'account_id')
|
||||||
@@ -111,7 +149,8 @@ export class PlaidSyncDb {
|
|||||||
return this.syncAccountTranactions(
|
return this.syncAccountTranactions(
|
||||||
tenantId,
|
tenantId,
|
||||||
plaidAccountId,
|
plaidAccountId,
|
||||||
plaidTransactions
|
plaidTransactions,
|
||||||
|
trx
|
||||||
);
|
);
|
||||||
},
|
},
|
||||||
{ concurrency: CONCURRENCY_ASYNC }
|
{ concurrency: CONCURRENCY_ASYNC }
|
||||||
@@ -124,11 +163,12 @@ export class PlaidSyncDb {
|
|||||||
*/
|
*/
|
||||||
public async syncRemoveTransactions(
|
public async syncRemoveTransactions(
|
||||||
tenantId: number,
|
tenantId: number,
|
||||||
plaidTransactionsIds: string[]
|
plaidTransactionsIds: string[],
|
||||||
|
trx?: Knex.Transaction
|
||||||
) {
|
) {
|
||||||
const { CashflowTransaction } = this.tenancy.models(tenantId);
|
const { CashflowTransaction } = this.tenancy.models(tenantId);
|
||||||
|
|
||||||
const cashflowTransactions = await CashflowTransaction.query().whereIn(
|
const cashflowTransactions = await CashflowTransaction.query(trx).whereIn(
|
||||||
'plaidTransactionId',
|
'plaidTransactionId',
|
||||||
plaidTransactionsIds
|
plaidTransactionsIds
|
||||||
);
|
);
|
||||||
@@ -140,7 +180,8 @@ export class PlaidSyncDb {
|
|||||||
(transactionId: number) =>
|
(transactionId: number) =>
|
||||||
this.deleteCashflowTransactionService.deleteCashflowTransaction(
|
this.deleteCashflowTransactionService.deleteCashflowTransaction(
|
||||||
tenantId,
|
tenantId,
|
||||||
transactionId
|
transactionId,
|
||||||
|
trx
|
||||||
),
|
),
|
||||||
{ concurrency: CONCURRENCY_ASYNC }
|
{ concurrency: CONCURRENCY_ASYNC }
|
||||||
);
|
);
|
||||||
@@ -155,11 +196,12 @@ export class PlaidSyncDb {
|
|||||||
public async syncTransactionsCursor(
|
public async syncTransactionsCursor(
|
||||||
tenantId: number,
|
tenantId: number,
|
||||||
plaidItemId: string,
|
plaidItemId: string,
|
||||||
lastCursor: string
|
lastCursor: string,
|
||||||
|
trx?: Knex.Transaction
|
||||||
) {
|
) {
|
||||||
const { PlaidItem } = this.tenancy.models(tenantId);
|
const { PlaidItem } = this.tenancy.models(tenantId);
|
||||||
|
|
||||||
await PlaidItem.query().findOne({ plaidItemId }).patch({ lastCursor });
|
await PlaidItem.query(trx).findOne({ plaidItemId }).patch({ lastCursor });
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
@@ -169,13 +211,16 @@ export class PlaidSyncDb {
|
|||||||
*/
|
*/
|
||||||
public async updateLastFeedsUpdatedAt(
|
public async updateLastFeedsUpdatedAt(
|
||||||
tenantId: number,
|
tenantId: number,
|
||||||
plaidAccountIds: string[]
|
plaidAccountIds: string[],
|
||||||
|
trx?: Knex.Transaction
|
||||||
) {
|
) {
|
||||||
const { Account } = this.tenancy.models(tenantId);
|
const { Account } = this.tenancy.models(tenantId);
|
||||||
|
|
||||||
await Account.query().whereIn('plaid_account_id', plaidAccountIds).patch({
|
await Account.query(trx)
|
||||||
lastFeedsUpdatedAt: new Date(),
|
.whereIn('plaid_account_id', plaidAccountIds)
|
||||||
});
|
.patch({
|
||||||
|
lastFeedsUpdatedAt: new Date(),
|
||||||
|
});
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
@@ -187,12 +232,15 @@ export class PlaidSyncDb {
|
|||||||
public async updateAccountsFeedsActive(
|
public async updateAccountsFeedsActive(
|
||||||
tenantId: number,
|
tenantId: number,
|
||||||
plaidAccountIds: string[],
|
plaidAccountIds: string[],
|
||||||
isFeedsActive: boolean = true
|
isFeedsActive: boolean = true,
|
||||||
|
trx?: Knex.Transaction
|
||||||
) {
|
) {
|
||||||
const { Account } = this.tenancy.models(tenantId);
|
const { Account } = this.tenancy.models(tenantId);
|
||||||
|
|
||||||
await Account.query().whereIn('plaid_account_id', plaidAccountIds).patch({
|
await Account.query(trx)
|
||||||
isFeedsActive,
|
.whereIn('plaid_account_id', plaidAccountIds)
|
||||||
});
|
.patch({
|
||||||
|
isFeedsActive,
|
||||||
|
});
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -3,6 +3,8 @@ import { Inject, Service } from 'typedi';
|
|||||||
import { PlaidClientWrapper } from '@/lib/Plaid/Plaid';
|
import { PlaidClientWrapper } from '@/lib/Plaid/Plaid';
|
||||||
import { PlaidSyncDb } from './PlaidSyncDB';
|
import { PlaidSyncDb } from './PlaidSyncDB';
|
||||||
import { PlaidFetchedTransactionsUpdates } from '@/interfaces';
|
import { PlaidFetchedTransactionsUpdates } from '@/interfaces';
|
||||||
|
import UnitOfWork from '@/services/UnitOfWork';
|
||||||
|
import { Knex } from 'knex';
|
||||||
|
|
||||||
@Service()
|
@Service()
|
||||||
export class PlaidUpdateTransactions {
|
export class PlaidUpdateTransactions {
|
||||||
@@ -12,12 +14,40 @@ export class PlaidUpdateTransactions {
|
|||||||
@Inject()
|
@Inject()
|
||||||
private plaidSync: PlaidSyncDb;
|
private plaidSync: PlaidSyncDb;
|
||||||
|
|
||||||
|
@Inject()
|
||||||
|
private uow: UnitOfWork;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Handles the fetching and storing of new, modified, or removed transactions
|
* Handles sync the Plaid item to Bigcaptial under UOW.
|
||||||
* @param {number} tenantId Tenant ID.
|
* @param {number} tenantId
|
||||||
* @param {string} plaidItemId the Plaid ID for the item.
|
* @param {number} plaidItemId
|
||||||
|
* @returns {Promise<{ addedCount: number; modifiedCount: number; removedCount: number; }>}
|
||||||
*/
|
*/
|
||||||
public async updateTransactions(tenantId: number, plaidItemId: string) {
|
public async updateTransactions(tenantId: number, plaidItemId: string) {
|
||||||
|
return this.uow.withTransaction(tenantId, (trx: Knex.Transaction) => {
|
||||||
|
return this.updateTransactionsWork(tenantId, plaidItemId, trx);
|
||||||
|
});
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Handles the fetching and storing the following:
|
||||||
|
* - New, modified, or removed transactions.
|
||||||
|
* - New bank accounts.
|
||||||
|
* - Last accounts feeds updated at.
|
||||||
|
* - Turn on the accounts feed flag.
|
||||||
|
* @param {number} tenantId - Tenant ID.
|
||||||
|
* @param {string} plaidItemId - The Plaid ID for the item.
|
||||||
|
* @returns {Promise<{ addedCount: number; modifiedCount: number; removedCount: number; }>}
|
||||||
|
*/
|
||||||
|
public async updateTransactionsWork(
|
||||||
|
tenantId: number,
|
||||||
|
plaidItemId: string,
|
||||||
|
trx?: Knex.Transaction
|
||||||
|
): Promise<{
|
||||||
|
addedCount: number;
|
||||||
|
modifiedCount: number;
|
||||||
|
removedCount: number;
|
||||||
|
}> {
|
||||||
// Fetch new transactions from plaid api.
|
// Fetch new transactions from plaid api.
|
||||||
const { added, modified, removed, cursor, accessToken } =
|
const { added, modified, removed, cursor, accessToken } =
|
||||||
await this.fetchTransactionUpdates(tenantId, plaidItemId);
|
await this.fetchTransactionUpdates(tenantId, plaidItemId);
|
||||||
@@ -29,28 +59,42 @@ export class PlaidUpdateTransactions {
|
|||||||
} = await plaidInstance.accountsGet(request);
|
} = await plaidInstance.accountsGet(request);
|
||||||
|
|
||||||
const plaidAccountsIds = accounts.map((a) => a.account_id);
|
const plaidAccountsIds = accounts.map((a) => a.account_id);
|
||||||
|
|
||||||
const {
|
const {
|
||||||
data: { institution },
|
data: { institution },
|
||||||
} = await plaidInstance.institutionsGetById({
|
} = await plaidInstance.institutionsGetById({
|
||||||
institution_id: item.institution_id,
|
institution_id: item.institution_id,
|
||||||
country_codes: ['US', 'UK'],
|
country_codes: ['US', 'UK'],
|
||||||
});
|
});
|
||||||
// Update the DB.
|
// Sync bank accounts.
|
||||||
await this.plaidSync.syncBankAccounts(tenantId, accounts, institution);
|
await this.plaidSync.syncBankAccounts(tenantId, accounts, institution, trx);
|
||||||
|
// Sync bank account transactions.
|
||||||
await this.plaidSync.syncAccountsTransactions(
|
await this.plaidSync.syncAccountsTransactions(
|
||||||
tenantId,
|
tenantId,
|
||||||
added.concat(modified)
|
added.concat(modified),
|
||||||
|
trx
|
||||||
|
);
|
||||||
|
// Sync removed transactions.
|
||||||
|
await this.plaidSync.syncRemoveTransactions(tenantId, removed, trx);
|
||||||
|
// Sync transactions cursor.
|
||||||
|
await this.plaidSync.syncTransactionsCursor(
|
||||||
|
tenantId,
|
||||||
|
plaidItemId,
|
||||||
|
cursor,
|
||||||
|
trx
|
||||||
);
|
);
|
||||||
await this.plaidSync.syncRemoveTransactions(tenantId, removed);
|
|
||||||
await this.plaidSync.syncTransactionsCursor(tenantId, plaidItemId, cursor);
|
|
||||||
|
|
||||||
// Update the last feeds updated at of the updated accounts.
|
// Update the last feeds updated at of the updated accounts.
|
||||||
await this.plaidSync.updateLastFeedsUpdatedAt(tenantId, plaidAccountsIds);
|
await this.plaidSync.updateLastFeedsUpdatedAt(
|
||||||
|
tenantId,
|
||||||
|
plaidAccountsIds,
|
||||||
|
trx
|
||||||
|
);
|
||||||
// Turn on the accounts feeds flag.
|
// Turn on the accounts feeds flag.
|
||||||
await this.plaidSync.updateAccountsFeedsActive(tenantId, plaidAccountsIds);
|
await this.plaidSync.updateAccountsFeedsActive(
|
||||||
|
tenantId,
|
||||||
|
plaidAccountsIds,
|
||||||
|
true,
|
||||||
|
trx
|
||||||
|
);
|
||||||
return {
|
return {
|
||||||
addedCount: added.length,
|
addedCount: added.length,
|
||||||
modifiedCount: modified.length,
|
modifiedCount: modified.length,
|
||||||
|
|||||||
@@ -42,7 +42,12 @@ export const transformPlaidTrxsToCashflowCreate = R.curry(
|
|||||||
): CreateUncategorizedTransactionDTO => {
|
): CreateUncategorizedTransactionDTO => {
|
||||||
return {
|
return {
|
||||||
date: plaidTranasction.date,
|
date: plaidTranasction.date,
|
||||||
amount: plaidTranasction.amount,
|
|
||||||
|
// Plaid: Positive values when money moves out of the account; negative values
|
||||||
|
// when money moves in. For example, debit card purchases are positive;
|
||||||
|
// credit card payments, direct deposits, and refunds are negative.
|
||||||
|
amount: -1 * plaidTranasction.amount,
|
||||||
|
|
||||||
description: plaidTranasction.name,
|
description: plaidTranasction.name,
|
||||||
payee: plaidTranasction.payment_meta?.payee,
|
payee: plaidTranasction.payment_meta?.payee,
|
||||||
currencyCode: plaidTranasction.iso_currency_code,
|
currencyCode: plaidTranasction.iso_currency_code,
|
||||||
|
|||||||
@@ -1,3 +1,4 @@
|
|||||||
|
import { Knex } from 'knex';
|
||||||
import { Inject, Service } from 'typedi';
|
import { Inject, Service } from 'typedi';
|
||||||
import { DeleteCashflowTransaction } from './DeleteCashflowTransactionService';
|
import { DeleteCashflowTransaction } from './DeleteCashflowTransactionService';
|
||||||
import { UncategorizeCashflowTransaction } from './UncategorizeCashflowTransaction';
|
import { UncategorizeCashflowTransaction } from './UncategorizeCashflowTransaction';
|
||||||
@@ -119,11 +120,13 @@ export class CashflowApplication {
|
|||||||
*/
|
*/
|
||||||
public createUncategorizedTransaction(
|
public createUncategorizedTransaction(
|
||||||
tenantId: number,
|
tenantId: number,
|
||||||
createUncategorizedTransactionDTO: CreateUncategorizedTransactionDTO
|
createUncategorizedTransactionDTO: CreateUncategorizedTransactionDTO,
|
||||||
|
trx?: Knex.Transaction
|
||||||
) {
|
) {
|
||||||
return this.createUncategorizedTransactionService.create(
|
return this.createUncategorizedTransactionService.create(
|
||||||
tenantId,
|
tenantId,
|
||||||
createUncategorizedTransactionDTO
|
createUncategorizedTransactionDTO,
|
||||||
|
trx
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
@@ -7,7 +7,12 @@ export class CashflowTransactionTransformer extends Transformer {
|
|||||||
* @returns {string[]}
|
* @returns {string[]}
|
||||||
*/
|
*/
|
||||||
public includeAttributes = (): string[] => {
|
public includeAttributes = (): string[] => {
|
||||||
return ['formattedAmount', 'transactionTypeFormatted'];
|
return [
|
||||||
|
'formattedAmount',
|
||||||
|
'transactionTypeFormatted',
|
||||||
|
'formattedDate',
|
||||||
|
'formattedCreatedAt',
|
||||||
|
];
|
||||||
};
|
};
|
||||||
|
|
||||||
/**
|
/**
|
||||||
@@ -24,10 +29,28 @@ export class CashflowTransactionTransformer extends Transformer {
|
|||||||
|
|
||||||
/**
|
/**
|
||||||
* Formatted transaction type.
|
* Formatted transaction type.
|
||||||
* @param transaction
|
* @param transaction
|
||||||
* @returns {string}
|
* @returns {string}
|
||||||
*/
|
*/
|
||||||
protected transactionTypeFormatted = (transaction) => {
|
protected transactionTypeFormatted = (transaction) => {
|
||||||
return this.context.i18n.__(transaction.transactionTypeFormatted);
|
return this.context.i18n.__(transaction.transactionTypeFormatted);
|
||||||
}
|
};
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Retrieve the formatted transaction date.
|
||||||
|
* @param invoice
|
||||||
|
* @returns {string}
|
||||||
|
*/
|
||||||
|
protected formattedDate = (invoice): string => {
|
||||||
|
return this.formatDate(invoice.date);
|
||||||
|
};
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Retrieve the formatted created at date.
|
||||||
|
* @param invoice
|
||||||
|
* @returns {string}
|
||||||
|
*/
|
||||||
|
protected formattedCreatedAt = (invoice): string => {
|
||||||
|
return this.formatDate(invoice.createdAt);
|
||||||
|
};
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -12,7 +12,6 @@ import { Knex } from 'knex';
|
|||||||
import { transformCategorizeTransToCashflow } from './utils';
|
import { transformCategorizeTransToCashflow } from './utils';
|
||||||
import { CommandCashflowValidator } from './CommandCasflowValidator';
|
import { CommandCashflowValidator } from './CommandCasflowValidator';
|
||||||
import NewCashflowTransactionService from './NewCashflowTransactionService';
|
import NewCashflowTransactionService from './NewCashflowTransactionService';
|
||||||
import { TransferAuthorizationGuaranteeDecision } from 'plaid';
|
|
||||||
|
|
||||||
@Service()
|
@Service()
|
||||||
export class CategorizeCashflowTransaction {
|
export class CategorizeCashflowTransaction {
|
||||||
|
|||||||
@@ -30,7 +30,8 @@ export class DeleteCashflowTransaction {
|
|||||||
*/
|
*/
|
||||||
public deleteCashflowTransaction = async (
|
public deleteCashflowTransaction = async (
|
||||||
tenantId: number,
|
tenantId: number,
|
||||||
cashflowTransactionId: number
|
cashflowTransactionId: number,
|
||||||
|
trx?: Knex.Transaction
|
||||||
): Promise<{ oldCashflowTransaction: ICashflowTransaction }> => {
|
): Promise<{ oldCashflowTransaction: ICashflowTransaction }> => {
|
||||||
const { CashflowTransaction, CashflowTransactionLine } =
|
const { CashflowTransaction, CashflowTransactionLine } =
|
||||||
this.tenancy.models(tenantId);
|
this.tenancy.models(tenantId);
|
||||||
@@ -43,34 +44,44 @@ export class DeleteCashflowTransaction {
|
|||||||
this.throwErrorIfTransactionNotFound(oldCashflowTransaction);
|
this.throwErrorIfTransactionNotFound(oldCashflowTransaction);
|
||||||
|
|
||||||
// Starting database transaction.
|
// Starting database transaction.
|
||||||
return this.uow.withTransaction(tenantId, async (trx: Knex.Transaction) => {
|
return this.uow.withTransaction(
|
||||||
// Triggers `onCashflowTransactionDelete` event.
|
tenantId,
|
||||||
await this.eventPublisher.emitAsync(events.cashflow.onTransactionDeleting, {
|
async (trx: Knex.Transaction) => {
|
||||||
trx,
|
// Triggers `onCashflowTransactionDelete` event.
|
||||||
tenantId,
|
await this.eventPublisher.emitAsync(
|
||||||
oldCashflowTransaction,
|
events.cashflow.onTransactionDeleting,
|
||||||
} as ICommandCashflowDeletingPayload);
|
{
|
||||||
|
trx,
|
||||||
|
tenantId,
|
||||||
|
oldCashflowTransaction,
|
||||||
|
} as ICommandCashflowDeletingPayload
|
||||||
|
);
|
||||||
|
|
||||||
// Delete cashflow transaction associated lines first.
|
// Delete cashflow transaction associated lines first.
|
||||||
await CashflowTransactionLine.query(trx)
|
await CashflowTransactionLine.query(trx)
|
||||||
.where('cashflow_transaction_id', cashflowTransactionId)
|
.where('cashflow_transaction_id', cashflowTransactionId)
|
||||||
.delete();
|
.delete();
|
||||||
|
|
||||||
// Delete cashflow transaction.
|
// Delete cashflow transaction.
|
||||||
await CashflowTransaction.query(trx)
|
await CashflowTransaction.query(trx)
|
||||||
.findById(cashflowTransactionId)
|
.findById(cashflowTransactionId)
|
||||||
.delete();
|
.delete();
|
||||||
|
|
||||||
// Triggers `onCashflowTransactionDeleted` event.
|
// Triggers `onCashflowTransactionDeleted` event.
|
||||||
await this.eventPublisher.emitAsync(events.cashflow.onTransactionDeleted, {
|
await this.eventPublisher.emitAsync(
|
||||||
trx,
|
events.cashflow.onTransactionDeleted,
|
||||||
tenantId,
|
{
|
||||||
cashflowTransactionId,
|
trx,
|
||||||
oldCashflowTransaction,
|
tenantId,
|
||||||
} as ICommandCashflowDeletedPayload);
|
cashflowTransactionId,
|
||||||
|
oldCashflowTransaction,
|
||||||
|
} as ICommandCashflowDeletedPayload
|
||||||
|
);
|
||||||
|
|
||||||
return { oldCashflowTransaction };
|
return { oldCashflowTransaction };
|
||||||
});
|
},
|
||||||
|
trx
|
||||||
|
);
|
||||||
};
|
};
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
|||||||
@@ -68,7 +68,11 @@ export const CASHFLOW_TRANSACTION_TYPE_META = {
|
|||||||
[`${CASHFLOW_TRANSACTION_TYPE.OTHER_EXPENSE}`]: {
|
[`${CASHFLOW_TRANSACTION_TYPE.OTHER_EXPENSE}`]: {
|
||||||
type: 'OtherExpense',
|
type: 'OtherExpense',
|
||||||
direction: CASHFLOW_DIRECTION.OUT,
|
direction: CASHFLOW_DIRECTION.OUT,
|
||||||
creditType: [ACCOUNT_TYPE.EXPENSE, ACCOUNT_TYPE.OTHER_EXPENSE],
|
creditType: [
|
||||||
|
ACCOUNT_TYPE.EXPENSE,
|
||||||
|
ACCOUNT_TYPE.OTHER_EXPENSE,
|
||||||
|
ACCOUNT_TYPE.COST_OF_GOODS_SOLD,
|
||||||
|
],
|
||||||
},
|
},
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|||||||
@@ -1,4 +1,4 @@
|
|||||||
import { upperFirst, camelCase, omit } from 'lodash';
|
import { upperFirst, camelCase } from 'lodash';
|
||||||
import {
|
import {
|
||||||
CASHFLOW_TRANSACTION_TYPE,
|
CASHFLOW_TRANSACTION_TYPE,
|
||||||
CASHFLOW_TRANSACTION_TYPE_META,
|
CASHFLOW_TRANSACTION_TYPE_META,
|
||||||
@@ -6,7 +6,6 @@ import {
|
|||||||
} from './constants';
|
} from './constants';
|
||||||
import {
|
import {
|
||||||
ICashflowNewCommandDTO,
|
ICashflowNewCommandDTO,
|
||||||
ICashflowTransaction,
|
|
||||||
ICategorizeCashflowTransactioDTO,
|
ICategorizeCashflowTransactioDTO,
|
||||||
IUncategorizedCashflowTransaction,
|
IUncategorizedCashflowTransaction,
|
||||||
} from '@/interfaces';
|
} from '@/interfaces';
|
||||||
@@ -42,8 +41,8 @@ export const getCashflowAccountTransactionsTypes = () => {
|
|||||||
/**
|
/**
|
||||||
* Tranasformes the given uncategorized transaction and categorized DTO
|
* Tranasformes the given uncategorized transaction and categorized DTO
|
||||||
* to cashflow create DTO.
|
* to cashflow create DTO.
|
||||||
* @param {IUncategorizedCashflowTransaction} uncategorizeModel
|
* @param {IUncategorizedCashflowTransaction} uncategorizeModel
|
||||||
* @param {ICategorizeCashflowTransactioDTO} categorizeDTO
|
* @param {ICategorizeCashflowTransactioDTO} categorizeDTO
|
||||||
* @returns {ICashflowNewCommandDTO}
|
* @returns {ICashflowNewCommandDTO}
|
||||||
*/
|
*/
|
||||||
export const transformCategorizeTransToCashflow = (
|
export const transformCategorizeTransToCashflow = (
|
||||||
@@ -62,6 +61,7 @@ export const transformCategorizeTransToCashflow = (
|
|||||||
transactionNumber: categorizeDTO.transactionNumber,
|
transactionNumber: categorizeDTO.transactionNumber,
|
||||||
transactionType: categorizeDTO.transactionType,
|
transactionType: categorizeDTO.transactionType,
|
||||||
uncategorizedTransactionId: uncategorizeModel.id,
|
uncategorizedTransactionId: uncategorizeModel.id,
|
||||||
|
branchId: categorizeDTO?.branchId,
|
||||||
publish: true,
|
publish: true,
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
|
|||||||
@@ -13,6 +13,8 @@ export class CreditNoteTransformer extends Transformer {
|
|||||||
return [
|
return [
|
||||||
'formattedCreditsRemaining',
|
'formattedCreditsRemaining',
|
||||||
'formattedCreditNoteDate',
|
'formattedCreditNoteDate',
|
||||||
|
'formattedCreatedAt',
|
||||||
|
'formattedCreatedAt',
|
||||||
'formattedAmount',
|
'formattedAmount',
|
||||||
'formattedCreditsUsed',
|
'formattedCreditsUsed',
|
||||||
'formattedSubtotal',
|
'formattedSubtotal',
|
||||||
@@ -30,6 +32,15 @@ export class CreditNoteTransformer extends Transformer {
|
|||||||
return this.formatDate(credit.creditNoteDate);
|
return this.formatDate(credit.creditNoteDate);
|
||||||
};
|
};
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Retrieve formatted created at date.
|
||||||
|
* @param credit
|
||||||
|
* @returns {string}
|
||||||
|
*/
|
||||||
|
protected formattedCreatedAt = (credit): string => {
|
||||||
|
return this.formatDate(credit.createdAt);
|
||||||
|
};
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Retrieve formatted invoice amount.
|
* Retrieve formatted invoice amount.
|
||||||
* @param {ICreditNote} credit
|
* @param {ICreditNote} credit
|
||||||
|
|||||||
@@ -15,6 +15,7 @@ export class ExpenseTransfromer extends Transformer {
|
|||||||
'formattedLandedCostAmount',
|
'formattedLandedCostAmount',
|
||||||
'formattedAllocatedCostAmount',
|
'formattedAllocatedCostAmount',
|
||||||
'formattedDate',
|
'formattedDate',
|
||||||
|
'formattedCreatedAt',
|
||||||
'categories',
|
'categories',
|
||||||
'attachments',
|
'attachments',
|
||||||
];
|
];
|
||||||
@@ -62,6 +63,15 @@ export class ExpenseTransfromer extends Transformer {
|
|||||||
return this.formatDate(expense.paymentDate);
|
return this.formatDate(expense.paymentDate);
|
||||||
};
|
};
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Retrieve formatted created at date.
|
||||||
|
* @param {IExpense} expense
|
||||||
|
* @returns {string}
|
||||||
|
*/
|
||||||
|
protected formattedCreatedAt = (expense: IExpense): string => {
|
||||||
|
return this.formatDate(expense.createdAt);
|
||||||
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Retrieves the transformed expense categories.
|
* Retrieves the transformed expense categories.
|
||||||
* @param {IExpense} expense
|
* @param {IExpense} expense
|
||||||
|
|||||||
@@ -20,6 +20,8 @@ import { BalanceSheetPercentage } from './BalanceSheetPercentage';
|
|||||||
import { BalanceSheetSchema } from './BalanceSheetSchema';
|
import { BalanceSheetSchema } from './BalanceSheetSchema';
|
||||||
import { BalanceSheetBase } from './BalanceSheetBase';
|
import { BalanceSheetBase } from './BalanceSheetBase';
|
||||||
import { BalanceSheetQuery } from './BalanceSheetQuery';
|
import { BalanceSheetQuery } from './BalanceSheetQuery';
|
||||||
|
import { flatToNestedArray } from '@/utils';
|
||||||
|
import BalanceSheetRepository from './BalanceSheetRepository';
|
||||||
|
|
||||||
export const BalanceSheetAccounts = (Base: any) =>
|
export const BalanceSheetAccounts = (Base: any) =>
|
||||||
class extends R.compose(
|
class extends R.compose(
|
||||||
@@ -56,6 +58,11 @@ export const BalanceSheetAccounts = (Base: any) =>
|
|||||||
*/
|
*/
|
||||||
readonly i18n: any;
|
readonly i18n: any;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Balance sheet repository.
|
||||||
|
*/
|
||||||
|
readonly repository: BalanceSheetRepository;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Retrieve the accounts node of accounts types.
|
* Retrieve the accounts node of accounts types.
|
||||||
* @param {string} accountsTypes
|
* @param {string} accountsTypes
|
||||||
@@ -78,8 +85,12 @@ export const BalanceSheetAccounts = (Base: any) =>
|
|||||||
private reportSchemaAccountNodeMapper = (
|
private reportSchemaAccountNodeMapper = (
|
||||||
account: IAccount
|
account: IAccount
|
||||||
): IBalanceSheetAccountNode => {
|
): IBalanceSheetAccountNode => {
|
||||||
|
const childrenAccountsIds = this.repository.accountsGraph.dependenciesOf(
|
||||||
|
account.id
|
||||||
|
);
|
||||||
|
const accountIds = R.uniq(R.append(account.id, childrenAccountsIds));
|
||||||
const total = this.repository.totalAccountsLedger
|
const total = this.repository.totalAccountsLedger
|
||||||
.whereAccountId(account.id)
|
.whereAccountsIds(accountIds)
|
||||||
.getClosingBalance();
|
.getClosingBalance();
|
||||||
|
|
||||||
return {
|
return {
|
||||||
@@ -128,8 +139,19 @@ export const BalanceSheetAccounts = (Base: any) =>
|
|||||||
private getAccountsNodesByAccountTypes = (
|
private getAccountsNodesByAccountTypes = (
|
||||||
accountsTypes: string[]
|
accountsTypes: string[]
|
||||||
): IBalanceSheetAccountNode[] => {
|
): IBalanceSheetAccountNode[] => {
|
||||||
|
// Retrieves accounts from the given defined node account types.
|
||||||
const accounts = this.getAccountsByAccountTypes(accountsTypes);
|
const accounts = this.getAccountsByAccountTypes(accountsTypes);
|
||||||
return R.map(this.reportSchemaAccountNodeComposer, accounts);
|
|
||||||
|
// Converts the flatten accounts to tree.
|
||||||
|
const accountsTree = flatToNestedArray(accounts, {
|
||||||
|
id: 'id',
|
||||||
|
parentId: 'parentAccountId',
|
||||||
|
});
|
||||||
|
// Maps over the accounts tree.
|
||||||
|
return this.mapNodesDeep(
|
||||||
|
accountsTree,
|
||||||
|
this.reportSchemaAccountNodeComposer
|
||||||
|
);
|
||||||
};
|
};
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
|||||||
@@ -1,6 +1,4 @@
|
|||||||
import * as R from 'ramda';
|
import * as R from 'ramda';
|
||||||
import { FinancialPreviousPeriod } from '../FinancialPreviousPeriod';
|
|
||||||
import { FinancialHorizTotals } from '../FinancialHorizTotals';
|
|
||||||
import { FinancialSheetStructure } from '../FinancialSheetStructure';
|
import { FinancialSheetStructure } from '../FinancialSheetStructure';
|
||||||
import {
|
import {
|
||||||
BALANCE_SHEET_SCHEMA_NODE_TYPE,
|
BALANCE_SHEET_SCHEMA_NODE_TYPE,
|
||||||
|
|||||||
@@ -3,7 +3,6 @@ import * as R from 'ramda';
|
|||||||
import { Knex } from 'knex';
|
import { Knex } from 'knex';
|
||||||
import { isEmpty } from 'lodash';
|
import { isEmpty } from 'lodash';
|
||||||
import {
|
import {
|
||||||
IAccount,
|
|
||||||
IAccountTransactionsGroupBy,
|
IAccountTransactionsGroupBy,
|
||||||
IBalanceSheetQuery,
|
IBalanceSheetQuery,
|
||||||
ILedger,
|
ILedger,
|
||||||
@@ -12,7 +11,6 @@ import { transformToMapBy } from 'utils';
|
|||||||
import Ledger from '@/services/Accounting/Ledger';
|
import Ledger from '@/services/Accounting/Ledger';
|
||||||
import { BalanceSheetQuery } from './BalanceSheetQuery';
|
import { BalanceSheetQuery } from './BalanceSheetQuery';
|
||||||
import { FinancialDatePeriods } from '../FinancialDatePeriods';
|
import { FinancialDatePeriods } from '../FinancialDatePeriods';
|
||||||
import { ACCOUNT_PARENT_TYPE, ACCOUNT_TYPE } from '@/data/AccountTypes';
|
|
||||||
import { BalanceSheetRepositoryNetIncome } from './BalanceSheetRepositoryNetIncome';
|
import { BalanceSheetRepositoryNetIncome } from './BalanceSheetRepositoryNetIncome';
|
||||||
|
|
||||||
@Service()
|
@Service()
|
||||||
@@ -40,6 +38,11 @@ export default class BalanceSheetRepository extends R.compose(
|
|||||||
*/
|
*/
|
||||||
public accounts: any;
|
public accounts: any;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @param {}
|
||||||
|
*/
|
||||||
|
public accountsGraph: any;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
*
|
*
|
||||||
*/
|
*/
|
||||||
@@ -163,6 +166,8 @@ export default class BalanceSheetRepository extends R.compose(
|
|||||||
*/
|
*/
|
||||||
public asyncInitialize = async () => {
|
public asyncInitialize = async () => {
|
||||||
await this.initAccounts();
|
await this.initAccounts();
|
||||||
|
await this.initAccountsGraph();
|
||||||
|
|
||||||
await this.initAccountsTotalLedger();
|
await this.initAccountsTotalLedger();
|
||||||
|
|
||||||
// Date periods.
|
// Date periods.
|
||||||
@@ -204,6 +209,15 @@ export default class BalanceSheetRepository extends R.compose(
|
|||||||
this.accountsByParentType = transformToMapBy(accounts, 'accountParentType');
|
this.accountsByParentType = transformToMapBy(accounts, 'accountParentType');
|
||||||
};
|
};
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Initialize accounts graph.
|
||||||
|
*/
|
||||||
|
public initAccountsGraph = async () => {
|
||||||
|
const { Account } = this.models;
|
||||||
|
|
||||||
|
this.accountsGraph = Account.toDependencyGraph(this.accounts);
|
||||||
|
};
|
||||||
|
|
||||||
// ----------------------------
|
// ----------------------------
|
||||||
// # Closing Total
|
// # Closing Total
|
||||||
// ----------------------------
|
// ----------------------------
|
||||||
|
|||||||
@@ -1,29 +1,31 @@
|
|||||||
import { isEmpty, get, last, sumBy } from 'lodash';
|
import { isEmpty, get, last, sumBy, first, head } from 'lodash';
|
||||||
|
import moment from 'moment';
|
||||||
|
import * as R from 'ramda';
|
||||||
import {
|
import {
|
||||||
IGeneralLedgerSheetQuery,
|
IGeneralLedgerSheetQuery,
|
||||||
IGeneralLedgerSheetAccount,
|
IGeneralLedgerSheetAccount,
|
||||||
IGeneralLedgerSheetAccountBalance,
|
IGeneralLedgerSheetAccountBalance,
|
||||||
IGeneralLedgerSheetAccountTransaction,
|
IGeneralLedgerSheetAccountTransaction,
|
||||||
IAccount,
|
IAccount,
|
||||||
IJournalPoster,
|
ILedgerEntry,
|
||||||
IJournalEntry,
|
|
||||||
IContact,
|
|
||||||
} from '@/interfaces';
|
} from '@/interfaces';
|
||||||
import FinancialSheet from '../FinancialSheet';
|
import FinancialSheet from '../FinancialSheet';
|
||||||
import moment from 'moment';
|
import { GeneralLedgerRepository } from './GeneralLedgerRepository';
|
||||||
|
import { FinancialSheetStructure } from '../FinancialSheetStructure';
|
||||||
|
import { flatToNestedArray } from '@/utils';
|
||||||
|
import Ledger from '@/services/Accounting/Ledger';
|
||||||
|
import { calculateRunningBalance } from './_utils';
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* General ledger sheet.
|
* General ledger sheet.
|
||||||
*/
|
*/
|
||||||
export default class GeneralLedgerSheet extends FinancialSheet {
|
export default class GeneralLedgerSheet extends R.compose(
|
||||||
tenantId: number;
|
FinancialSheetStructure
|
||||||
accounts: IAccount[];
|
)(FinancialSheet) {
|
||||||
query: IGeneralLedgerSheetQuery;
|
private query: IGeneralLedgerSheetQuery;
|
||||||
openingBalancesJournal: IJournalPoster;
|
private baseCurrency: string;
|
||||||
transactions: IJournalPoster;
|
private i18n: any;
|
||||||
contactsMap: Map<number, IContact>;
|
private repository: GeneralLedgerRepository;
|
||||||
baseCurrency: string;
|
|
||||||
i18n: any;
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Constructor method.
|
* Constructor method.
|
||||||
@@ -34,63 +36,59 @@ export default class GeneralLedgerSheet extends FinancialSheet {
|
|||||||
* @param {IJournalPoster} closingBalancesJournal -
|
* @param {IJournalPoster} closingBalancesJournal -
|
||||||
*/
|
*/
|
||||||
constructor(
|
constructor(
|
||||||
tenantId: number,
|
|
||||||
query: IGeneralLedgerSheetQuery,
|
query: IGeneralLedgerSheetQuery,
|
||||||
accounts: IAccount[],
|
repository: GeneralLedgerRepository,
|
||||||
contactsByIdMap: Map<number, IContact>,
|
|
||||||
transactions: IJournalPoster,
|
|
||||||
openingBalancesJournal: IJournalPoster,
|
|
||||||
baseCurrency: string,
|
|
||||||
i18n
|
i18n
|
||||||
) {
|
) {
|
||||||
super();
|
super();
|
||||||
|
|
||||||
this.tenantId = tenantId;
|
|
||||||
this.query = query;
|
this.query = query;
|
||||||
this.numberFormat = this.query.numberFormat;
|
this.numberFormat = this.query.numberFormat;
|
||||||
this.accounts = accounts;
|
this.repository = repository;
|
||||||
this.contactsMap = contactsByIdMap;
|
this.baseCurrency = this.repository.tenant.metadata.currencyCode;
|
||||||
this.transactions = transactions;
|
|
||||||
this.openingBalancesJournal = openingBalancesJournal;
|
|
||||||
this.baseCurrency = baseCurrency;
|
|
||||||
this.i18n = i18n;
|
this.i18n = i18n;
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
|
||||||
* Retrieve the transaction amount.
|
|
||||||
* @param {number} credit - Credit amount.
|
|
||||||
* @param {number} debit - Debit amount.
|
|
||||||
* @param {string} normal - Credit or debit.
|
|
||||||
*/
|
|
||||||
getAmount(credit: number, debit: number, normal: string) {
|
|
||||||
return normal === 'credit' ? credit - debit : debit - credit;
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Entry mapper.
|
* Entry mapper.
|
||||||
* @param {IJournalEntry} entry -
|
* @param {ILedgerEntry} entry -
|
||||||
* @return {IGeneralLedgerSheetAccountTransaction}
|
* @return {IGeneralLedgerSheetAccountTransaction}
|
||||||
*/
|
*/
|
||||||
entryReducer(
|
private getEntryRunningBalance(
|
||||||
entries: IGeneralLedgerSheetAccountTransaction[],
|
entry: ILedgerEntry,
|
||||||
entry: IJournalEntry,
|
openingBalance: number,
|
||||||
openingBalance: number
|
runningBalance?: number
|
||||||
): IGeneralLedgerSheetAccountTransaction[] {
|
): number {
|
||||||
const lastEntry = last(entries);
|
const lastRunningBalance = runningBalance || openingBalance;
|
||||||
|
|
||||||
const contact = this.contactsMap.get(entry.contactId);
|
const amount = Ledger.getAmount(
|
||||||
const amount = this.getAmount(
|
|
||||||
entry.credit,
|
entry.credit,
|
||||||
entry.debit,
|
entry.debit,
|
||||||
entry.accountNormal
|
entry.accountNormal
|
||||||
);
|
);
|
||||||
const runningBalance =
|
return calculateRunningBalance(amount, lastRunningBalance);
|
||||||
amount + (!isEmpty(entries) ? lastEntry.runningBalance : openingBalance);
|
}
|
||||||
|
|
||||||
const newEntry = {
|
/**
|
||||||
|
* Maps the given ledger entry to G/L transaction.
|
||||||
|
* @param {ILedgerEntry} entry
|
||||||
|
* @param {number} runningBalance
|
||||||
|
* @returns {IGeneralLedgerSheetAccountTransaction}
|
||||||
|
*/
|
||||||
|
private transactionMapper(
|
||||||
|
entry: ILedgerEntry,
|
||||||
|
runningBalance: number
|
||||||
|
): IGeneralLedgerSheetAccountTransaction {
|
||||||
|
const contact = this.repository.contactsById.get(entry.contactId);
|
||||||
|
const amount = Ledger.getAmount(
|
||||||
|
entry.credit,
|
||||||
|
entry.debit,
|
||||||
|
entry.accountNormal
|
||||||
|
);
|
||||||
|
return {
|
||||||
|
id: entry.id,
|
||||||
date: entry.date,
|
date: entry.date,
|
||||||
dateFormatted: moment(entry.date).format('YYYY MMM DD'),
|
dateFormatted: moment(entry.date).format('YYYY MMM DD'),
|
||||||
entryId: entry.id,
|
|
||||||
|
|
||||||
transactionNumber: entry.transactionNumber,
|
transactionNumber: entry.transactionNumber,
|
||||||
referenceType: entry.referenceType,
|
referenceType: entry.referenceType,
|
||||||
@@ -109,16 +107,15 @@ export default class GeneralLedgerSheet extends FinancialSheet {
|
|||||||
amount,
|
amount,
|
||||||
runningBalance,
|
runningBalance,
|
||||||
|
|
||||||
formattedAmount: this.formatNumber(amount),
|
formattedAmount: this.formatNumber(amount, { excerptZero: false }),
|
||||||
formattedCredit: this.formatNumber(entry.credit),
|
formattedCredit: this.formatNumber(entry.credit, { excerptZero: false }),
|
||||||
formattedDebit: this.formatNumber(entry.debit),
|
formattedDebit: this.formatNumber(entry.debit, { excerptZero: false }),
|
||||||
formattedRunningBalance: this.formatNumber(runningBalance),
|
formattedRunningBalance: this.formatNumber(runningBalance, {
|
||||||
|
excerptZero: false,
|
||||||
|
}),
|
||||||
|
|
||||||
currencyCode: this.baseCurrency,
|
currencyCode: this.baseCurrency,
|
||||||
};
|
} as IGeneralLedgerSheetAccountTransaction;
|
||||||
entries.push(newEntry);
|
|
||||||
|
|
||||||
return entries;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
@@ -130,28 +127,48 @@ export default class GeneralLedgerSheet extends FinancialSheet {
|
|||||||
account: IAccount,
|
account: IAccount,
|
||||||
openingBalance: number
|
openingBalance: number
|
||||||
): IGeneralLedgerSheetAccountTransaction[] {
|
): IGeneralLedgerSheetAccountTransaction[] {
|
||||||
const entries = this.transactions.getAccountEntries(account.id);
|
const entries = this.repository.transactionsLedger
|
||||||
|
.whereAccountId(account.id)
|
||||||
|
.getEntries();
|
||||||
|
|
||||||
return entries.reduce(
|
return entries
|
||||||
(
|
.reduce((prev: Array<[number, ILedgerEntry]>, current: ILedgerEntry) => {
|
||||||
entries: IGeneralLedgerSheetAccountTransaction[],
|
const prevEntry = last(prev);
|
||||||
entry: IJournalEntry
|
const prevRunningBalance = head(prevEntry) as number;
|
||||||
) => {
|
const amount = this.getEntryRunningBalance(
|
||||||
return this.entryReducer(entries, entry, openingBalance);
|
current,
|
||||||
},
|
openingBalance,
|
||||||
[]
|
prevRunningBalance
|
||||||
);
|
);
|
||||||
|
return [...prev, [amount, current]];
|
||||||
|
}, [])
|
||||||
|
.map((entryPair: [number, ILedgerEntry]) => {
|
||||||
|
const [runningBalance, entry] = entryPair;
|
||||||
|
|
||||||
|
return this.transactionMapper(entry, runningBalance);
|
||||||
|
});
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Retrieve account opening balance.
|
* Retrieves the given account opening balance.
|
||||||
|
* @param {number} accountId
|
||||||
|
* @returns {number}
|
||||||
|
*/
|
||||||
|
private accountOpeningBalance(accountId: number): number {
|
||||||
|
return this.repository.openingBalanceTransactionsLedger
|
||||||
|
.whereAccountId(accountId)
|
||||||
|
.getClosingBalance();
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Retrieve the given account opening balance.
|
||||||
* @param {IAccount} account
|
* @param {IAccount} account
|
||||||
* @return {IGeneralLedgerSheetAccountBalance}
|
* @return {IGeneralLedgerSheetAccountBalance}
|
||||||
*/
|
*/
|
||||||
private accountOpeningBalance(
|
private accountOpeningBalanceTotal(
|
||||||
account: IAccount
|
accountId: number
|
||||||
): IGeneralLedgerSheetAccountBalance {
|
): IGeneralLedgerSheetAccountBalance {
|
||||||
const amount = this.openingBalancesJournal.getAccountBalance(account.id);
|
const amount = this.accountOpeningBalance(accountId);
|
||||||
const formattedAmount = this.formatTotalNumber(amount);
|
const formattedAmount = this.formatTotalNumber(amount);
|
||||||
const currencyCode = this.baseCurrency;
|
const currencyCode = this.baseCurrency;
|
||||||
const date = this.query.fromDate;
|
const date = this.query.fromDate;
|
||||||
@@ -160,15 +177,31 @@ export default class GeneralLedgerSheet extends FinancialSheet {
|
|||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Retrieve account closing balance.
|
* Retrieves the given account closing balance.
|
||||||
|
* @param {number} accountId
|
||||||
|
* @returns {number}
|
||||||
|
*/
|
||||||
|
private accountClosingBalance(accountId: number): number {
|
||||||
|
const openingBalance = this.repository.openingBalanceTransactionsLedger
|
||||||
|
.whereAccountId(accountId)
|
||||||
|
.getClosingBalance();
|
||||||
|
|
||||||
|
const transactionsBalance = this.repository.transactionsLedger
|
||||||
|
.whereAccountId(accountId)
|
||||||
|
.getClosingBalance();
|
||||||
|
|
||||||
|
return openingBalance + transactionsBalance;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Retrieves the given account closing balance.
|
||||||
* @param {IAccount} account
|
* @param {IAccount} account
|
||||||
* @return {IGeneralLedgerSheetAccountBalance}
|
* @return {IGeneralLedgerSheetAccountBalance}
|
||||||
*/
|
*/
|
||||||
private accountClosingBalance(
|
private accountClosingBalanceTotal(
|
||||||
openingBalance: number,
|
accountId: number
|
||||||
transactions: IGeneralLedgerSheetAccountTransaction[]
|
|
||||||
): IGeneralLedgerSheetAccountBalance {
|
): IGeneralLedgerSheetAccountBalance {
|
||||||
const amount = this.calcClosingBalance(openingBalance, transactions);
|
const amount = this.accountClosingBalance(accountId);
|
||||||
const formattedAmount = this.formatTotalNumber(amount);
|
const formattedAmount = this.formatTotalNumber(amount);
|
||||||
const currencyCode = this.baseCurrency;
|
const currencyCode = this.baseCurrency;
|
||||||
const date = this.query.toDate;
|
const date = this.query.toDate;
|
||||||
@@ -176,31 +209,78 @@ export default class GeneralLedgerSheet extends FinancialSheet {
|
|||||||
return { amount, formattedAmount, currencyCode, date };
|
return { amount, formattedAmount, currencyCode, date };
|
||||||
}
|
}
|
||||||
|
|
||||||
private calcClosingBalance(
|
/**
|
||||||
openingBalance: number,
|
* Retrieves the given account closing balance with subaccounts.
|
||||||
transactions: IGeneralLedgerSheetAccountTransaction[]
|
* @param {number} accountId
|
||||||
) {
|
* @returns {number}
|
||||||
return openingBalance + sumBy(transactions, (trans) => trans.amount);
|
*/
|
||||||
}
|
private accountClosingBalanceWithSubaccounts = (
|
||||||
|
accountId: number
|
||||||
|
): number => {
|
||||||
|
const depsAccountsIds =
|
||||||
|
this.repository.accountsGraph.dependenciesOf(accountId);
|
||||||
|
|
||||||
|
const openingBalance = this.repository.openingBalanceTransactionsLedger
|
||||||
|
.whereAccountsIds([...depsAccountsIds, accountId])
|
||||||
|
.getClosingBalance();
|
||||||
|
|
||||||
|
const transactionsBalanceWithSubAccounts =
|
||||||
|
this.repository.transactionsLedger
|
||||||
|
.whereAccountsIds([...depsAccountsIds, accountId])
|
||||||
|
.getClosingBalance();
|
||||||
|
|
||||||
|
const closingBalance = openingBalance + transactionsBalanceWithSubAccounts;
|
||||||
|
|
||||||
|
return closingBalance;
|
||||||
|
};
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Retrieves the closing balance with subaccounts total node.
|
||||||
|
* @param {number} accountId
|
||||||
|
* @returns {IGeneralLedgerSheetAccountBalance}
|
||||||
|
*/
|
||||||
|
private accountClosingBalanceWithSubaccountsTotal = (
|
||||||
|
accountId: number
|
||||||
|
): IGeneralLedgerSheetAccountBalance => {
|
||||||
|
const amount = this.accountClosingBalanceWithSubaccounts(accountId);
|
||||||
|
const formattedAmount = this.formatTotalNumber(amount);
|
||||||
|
const currencyCode = this.baseCurrency;
|
||||||
|
const date = this.query.toDate;
|
||||||
|
|
||||||
|
return { amount, formattedAmount, currencyCode, date };
|
||||||
|
};
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Detarmines whether the closing balance subaccounts node should be exist.
|
||||||
|
* @param {number} accountId
|
||||||
|
* @returns {boolean}
|
||||||
|
*/
|
||||||
|
private isAccountNodeIncludesClosingSubaccounts = (accountId: number) => {
|
||||||
|
// Retrun early if there is no accounts in the filter so
|
||||||
|
// return closing subaccounts in all cases.
|
||||||
|
if (isEmpty(this.query.accountsIds)) {
|
||||||
|
return true;
|
||||||
|
}
|
||||||
|
// Returns true if the given account id includes transactions.
|
||||||
|
return this.repository.accountNodesIncludeTransactions.includes(accountId);
|
||||||
|
};
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Retreive general ledger accounts sections.
|
* Retreive general ledger accounts sections.
|
||||||
* @param {IAccount} account
|
* @param {IAccount} account
|
||||||
* @return {IGeneralLedgerSheetAccount}
|
* @return {IGeneralLedgerSheetAccount}
|
||||||
*/
|
*/
|
||||||
private accountMapper(account: IAccount): IGeneralLedgerSheetAccount {
|
private accountMapper = (account: IAccount): IGeneralLedgerSheetAccount => {
|
||||||
const openingBalance = this.accountOpeningBalance(account);
|
const openingBalance = this.accountOpeningBalanceTotal(account.id);
|
||||||
|
|
||||||
const transactions = this.accountTransactionsMapper(
|
const transactions = this.accountTransactionsMapper(
|
||||||
account,
|
account,
|
||||||
openingBalance.amount
|
openingBalance.amount
|
||||||
);
|
);
|
||||||
const closingBalance = this.accountClosingBalance(
|
const closingBalance = this.accountClosingBalanceTotal(account.id);
|
||||||
openingBalance.amount,
|
const closingBalanceSubaccounts =
|
||||||
transactions
|
this.accountClosingBalanceWithSubaccountsTotal(account.id);
|
||||||
);
|
|
||||||
|
|
||||||
return {
|
const initialNode = {
|
||||||
id: account.id,
|
id: account.id,
|
||||||
name: account.name,
|
name: account.name,
|
||||||
code: account.code,
|
code: account.code,
|
||||||
@@ -210,34 +290,90 @@ export default class GeneralLedgerSheet extends FinancialSheet {
|
|||||||
transactions,
|
transactions,
|
||||||
closingBalance,
|
closingBalance,
|
||||||
};
|
};
|
||||||
}
|
|
||||||
|
return R.compose(
|
||||||
|
R.when(
|
||||||
|
() => this.isAccountNodeIncludesClosingSubaccounts(account.id),
|
||||||
|
R.assoc('closingBalanceSubaccounts', closingBalanceSubaccounts)
|
||||||
|
)
|
||||||
|
)(initialNode);
|
||||||
|
};
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Retrieve mapped accounts with general ledger transactions and opeing/closing balance.
|
* Maps over deep nodes to retrieve the G/L account node.
|
||||||
|
* @param {IAccount[]} accounts
|
||||||
|
* @returns {IGeneralLedgerSheetAccount[]}
|
||||||
|
*/
|
||||||
|
private accountNodesDeepMap = (
|
||||||
|
accounts: IAccount[]
|
||||||
|
): IGeneralLedgerSheetAccount[] => {
|
||||||
|
return this.mapNodesDeep(accounts, this.accountMapper);
|
||||||
|
};
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Transformes the flatten nodes to nested nodes.
|
||||||
|
*/
|
||||||
|
private nestedAccountsNode = (flattenAccounts: IAccount[]): IAccount[] => {
|
||||||
|
return flatToNestedArray(flattenAccounts, {
|
||||||
|
id: 'id',
|
||||||
|
parentId: 'parentAccountId',
|
||||||
|
});
|
||||||
|
};
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Filters account nodes.
|
||||||
|
* @param {IGeneralLedgerSheetAccount[]} nodes
|
||||||
|
* @returns {IGeneralLedgerSheetAccount[]}
|
||||||
|
*/
|
||||||
|
private filterAccountNodesByTransactionsFilter = (
|
||||||
|
nodes: IGeneralLedgerSheetAccount[]
|
||||||
|
): IGeneralLedgerSheetAccount[] => {
|
||||||
|
return this.filterNodesDeep(
|
||||||
|
nodes,
|
||||||
|
(account: IGeneralLedgerSheetAccount) =>
|
||||||
|
!(account.transactions.length === 0 && this.query.noneTransactions)
|
||||||
|
);
|
||||||
|
};
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Filters account nodes by the acounts filter.
|
||||||
|
* @param {IAccount[]} nodes
|
||||||
|
* @returns {IAccount[]}
|
||||||
|
*/
|
||||||
|
private filterAccountNodesByAccountsFilter = (
|
||||||
|
nodes: IAccount[]
|
||||||
|
): IAccount[] => {
|
||||||
|
return this.filterNodesDeep(nodes, (node: IGeneralLedgerSheetAccount) => {
|
||||||
|
if (R.isEmpty(this.query.accountsIds)) {
|
||||||
|
return true;
|
||||||
|
}
|
||||||
|
// Returns true if the given account id exists in the filter.
|
||||||
|
return this.repository.accountNodeInclude?.includes(node.id);
|
||||||
|
});
|
||||||
|
};
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Retrieves mapped accounts with general ledger transactions and
|
||||||
|
* opeing/closing balance.
|
||||||
* @param {IAccount[]} accounts -
|
* @param {IAccount[]} accounts -
|
||||||
* @return {IGeneralLedgerSheetAccount[]}
|
* @return {IGeneralLedgerSheetAccount[]}
|
||||||
*/
|
*/
|
||||||
private accountsWalker(accounts: IAccount[]): IGeneralLedgerSheetAccount[] {
|
private accountsWalker(accounts: IAccount[]): IGeneralLedgerSheetAccount[] {
|
||||||
return (
|
return R.compose(
|
||||||
accounts
|
R.defaultTo([]),
|
||||||
.map((account: IAccount) => this.accountMapper(account))
|
this.filterAccountNodesByTransactionsFilter,
|
||||||
// Filter general ledger accounts that have no transactions
|
this.accountNodesDeepMap,
|
||||||
// when`noneTransactions` is on.
|
R.defaultTo([]),
|
||||||
.filter(
|
this.filterAccountNodesByAccountsFilter,
|
||||||
(generalLedgerAccount: IGeneralLedgerSheetAccount) =>
|
this.nestedAccountsNode
|
||||||
!(
|
)(accounts);
|
||||||
generalLedgerAccount.transactions.length === 0 &&
|
|
||||||
this.query.noneTransactions
|
|
||||||
)
|
|
||||||
)
|
|
||||||
);
|
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Retrieve general ledger report data.
|
* Retrieves general ledger report data.
|
||||||
* @return {IGeneralLedgerSheetAccount[]}
|
* @return {IGeneralLedgerSheetAccount[]}
|
||||||
*/
|
*/
|
||||||
public reportData(): IGeneralLedgerSheetAccount[] {
|
public reportData(): IGeneralLedgerSheetAccount[] {
|
||||||
return this.accountsWalker(this.accounts);
|
return this.accountsWalker(this.repository.accounts);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -0,0 +1,180 @@
|
|||||||
|
import moment from 'moment';
|
||||||
|
import * as R from 'ramda';
|
||||||
|
import {
|
||||||
|
IAccount,
|
||||||
|
IAccountTransaction,
|
||||||
|
IContact,
|
||||||
|
IGeneralLedgerSheetQuery,
|
||||||
|
ITenant,
|
||||||
|
} from '@/interfaces';
|
||||||
|
import Ledger from '@/services/Accounting/Ledger';
|
||||||
|
import { transformToMap } from '@/utils';
|
||||||
|
import { Tenant } from '@/system/models';
|
||||||
|
import { flatten, isEmpty, uniq } from 'lodash';
|
||||||
|
|
||||||
|
export class GeneralLedgerRepository {
|
||||||
|
public filter: IGeneralLedgerSheetQuery;
|
||||||
|
public accounts: IAccount[];
|
||||||
|
|
||||||
|
public transactions: IAccountTransaction[];
|
||||||
|
public openingBalanceTransactions: IAccountTransaction[];
|
||||||
|
|
||||||
|
public transactionsLedger: Ledger;
|
||||||
|
public openingBalanceTransactionsLedger: Ledger;
|
||||||
|
|
||||||
|
public repositories: any;
|
||||||
|
public models: any;
|
||||||
|
public accountsGraph: any;
|
||||||
|
|
||||||
|
public contacts: IContact;
|
||||||
|
public contactsById: Map<number, IContact>;
|
||||||
|
|
||||||
|
public tenantId: number;
|
||||||
|
public tenant: ITenant;
|
||||||
|
|
||||||
|
public accountNodesIncludeTransactions: Array<number> = [];
|
||||||
|
public accountNodeInclude: Array<number> = [];
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Constructor method.
|
||||||
|
* @param models
|
||||||
|
* @param repositories
|
||||||
|
* @param filter
|
||||||
|
*/
|
||||||
|
constructor(
|
||||||
|
repositories: any,
|
||||||
|
filter: IGeneralLedgerSheetQuery,
|
||||||
|
tenantId: number
|
||||||
|
) {
|
||||||
|
this.filter = filter;
|
||||||
|
this.repositories = repositories;
|
||||||
|
this.tenantId = tenantId;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Initialize the G/L report.
|
||||||
|
*/
|
||||||
|
public async asyncInitialize() {
|
||||||
|
await this.initTenant();
|
||||||
|
await this.initAccounts();
|
||||||
|
await this.initAccountsGraph();
|
||||||
|
await this.initContacts();
|
||||||
|
await this.initAccountsOpeningBalance();
|
||||||
|
this.initAccountNodesIncludeTransactions();
|
||||||
|
await this.initTransactions();
|
||||||
|
this.initAccountNodesIncluded();
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Initialize the tenant.
|
||||||
|
*/
|
||||||
|
public async initTenant() {
|
||||||
|
this.tenant = await Tenant.query()
|
||||||
|
.findById(this.tenantId)
|
||||||
|
.withGraphFetched('metadata');
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Initialize the accounts.
|
||||||
|
*/
|
||||||
|
public async initAccounts() {
|
||||||
|
this.accounts = await this.repositories.accountRepository
|
||||||
|
.all()
|
||||||
|
.orderBy('name', 'ASC');
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Initialize the accounts graph.
|
||||||
|
*/
|
||||||
|
public async initAccountsGraph() {
|
||||||
|
this.accountsGraph =
|
||||||
|
await this.repositories.accountRepository.getDependencyGraph();
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Initialize the contacts.
|
||||||
|
*/
|
||||||
|
public async initContacts() {
|
||||||
|
this.contacts = await this.repositories.contactRepository.all();
|
||||||
|
this.contactsById = transformToMap(this.contacts, 'id');
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Initialize the G/L transactions from/to the given date.
|
||||||
|
*/
|
||||||
|
public async initTransactions() {
|
||||||
|
this.transactions = await this.repositories.transactionsRepository
|
||||||
|
.journal({
|
||||||
|
fromDate: this.filter.fromDate,
|
||||||
|
toDate: this.filter.toDate,
|
||||||
|
branchesIds: this.filter.branchesIds,
|
||||||
|
})
|
||||||
|
.orderBy('date', 'ASC')
|
||||||
|
.onBuild((query) => {
|
||||||
|
if (this.filter.accountsIds?.length > 0) {
|
||||||
|
query.whereIn('accountId', this.accountNodesIncludeTransactions);
|
||||||
|
}
|
||||||
|
});
|
||||||
|
// Transform array transactions to journal collection.
|
||||||
|
this.transactionsLedger = Ledger.fromTransactions(this.transactions);
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Initialize the G/L accounts opening balance.
|
||||||
|
*/
|
||||||
|
public async initAccountsOpeningBalance() {
|
||||||
|
// Retreive opening balance credit/debit sumation.
|
||||||
|
this.openingBalanceTransactions =
|
||||||
|
await this.repositories.transactionsRepository.journal({
|
||||||
|
toDate: moment(this.filter.fromDate).subtract(1, 'day'),
|
||||||
|
sumationCreditDebit: true,
|
||||||
|
branchesIds: this.filter.branchesIds,
|
||||||
|
});
|
||||||
|
|
||||||
|
// Accounts opening transactions.
|
||||||
|
this.openingBalanceTransactionsLedger = Ledger.fromTransactions(
|
||||||
|
this.openingBalanceTransactions
|
||||||
|
);
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Initialize the account nodes that should include transactions.
|
||||||
|
* @returns {void}
|
||||||
|
*/
|
||||||
|
public initAccountNodesIncludeTransactions() {
|
||||||
|
if (isEmpty(this.filter.accountsIds)) {
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
const childrenNodeIds = this.filter.accountsIds?.map(
|
||||||
|
(accountId: number) => {
|
||||||
|
return this.accountsGraph.dependenciesOf(accountId);
|
||||||
|
}
|
||||||
|
);
|
||||||
|
const nodeIds = R.concat(this.filter.accountsIds, childrenNodeIds);
|
||||||
|
|
||||||
|
this.accountNodesIncludeTransactions = uniq(flatten(nodeIds));
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Initialize the account node ids should be included,
|
||||||
|
* if the filter by acounts is presented.
|
||||||
|
* @returns {void}
|
||||||
|
*/
|
||||||
|
public initAccountNodesIncluded() {
|
||||||
|
if (isEmpty(this.filter.accountsIds)) {
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
const nodeIds = this.filter.accountsIds.map((accountId) => {
|
||||||
|
const childrenIds = this.accountsGraph.dependenciesOf(accountId);
|
||||||
|
const parentIds = this.accountsGraph.dependantsOf(accountId);
|
||||||
|
|
||||||
|
return R.concat(childrenIds, parentIds);
|
||||||
|
});
|
||||||
|
|
||||||
|
this.accountNodeInclude = R.compose(
|
||||||
|
R.uniq,
|
||||||
|
R.flatten,
|
||||||
|
R.concat(this.filter.accountsIds)
|
||||||
|
)(nodeIds);
|
||||||
|
}
|
||||||
|
}
|
||||||
@@ -1,18 +1,10 @@
|
|||||||
import { Service, Inject } from 'typedi';
|
import { Service, Inject } from 'typedi';
|
||||||
import moment from 'moment';
|
import moment from 'moment';
|
||||||
import { ServiceError } from '@/exceptions';
|
|
||||||
import { difference } from 'lodash';
|
|
||||||
import { IGeneralLedgerSheetQuery, IGeneralLedgerMeta } from '@/interfaces';
|
import { IGeneralLedgerSheetQuery, IGeneralLedgerMeta } from '@/interfaces';
|
||||||
import TenancyService from '@/services/Tenancy/TenancyService';
|
import TenancyService from '@/services/Tenancy/TenancyService';
|
||||||
import Journal from '@/services/Accounting/JournalPoster';
|
|
||||||
import GeneralLedgerSheet from '@/services/FinancialStatements/GeneralLedger/GeneralLedger';
|
import GeneralLedgerSheet from '@/services/FinancialStatements/GeneralLedger/GeneralLedger';
|
||||||
import { transformToMap } from 'utils';
|
|
||||||
import { Tenant } from '@/system/models';
|
|
||||||
import { GeneralLedgerMeta } from './GeneralLedgerMeta';
|
import { GeneralLedgerMeta } from './GeneralLedgerMeta';
|
||||||
|
import { GeneralLedgerRepository } from './GeneralLedgerRepository';
|
||||||
const ERRORS = {
|
|
||||||
ACCOUNTS_NOT_FOUND: 'ACCOUNTS_NOT_FOUND',
|
|
||||||
};
|
|
||||||
|
|
||||||
@Service()
|
@Service()
|
||||||
export class GeneralLedgerService {
|
export class GeneralLedgerService {
|
||||||
@@ -40,29 +32,13 @@ export class GeneralLedgerService {
|
|||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
|
||||||
* Validates accounts existance on the storage.
|
|
||||||
* @param {number} tenantId
|
|
||||||
* @param {number[]} accountsIds
|
|
||||||
*/
|
|
||||||
async validateAccountsExistance(tenantId: number, accountsIds: number[]) {
|
|
||||||
const { Account } = this.tenancy.models(tenantId);
|
|
||||||
|
|
||||||
const storedAccounts = await Account.query().whereIn('id', accountsIds);
|
|
||||||
const storedAccountsIds = storedAccounts.map((a) => a.id);
|
|
||||||
|
|
||||||
if (difference(accountsIds, storedAccountsIds).length > 0) {
|
|
||||||
throw new ServiceError(ERRORS.ACCOUNTS_NOT_FOUND);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Retrieve general ledger report statement.
|
* Retrieve general ledger report statement.
|
||||||
* @param {number} tenantId
|
* @param {number} tenantId
|
||||||
* @param {IGeneralLedgerSheetQuery} query
|
* @param {IGeneralLedgerSheetQuery} query
|
||||||
* @return {IGeneralLedgerStatement}
|
* @return {Promise<IGeneralLedgerStatement>}
|
||||||
*/
|
*/
|
||||||
async generalLedger(
|
public async generalLedger(
|
||||||
tenantId: number,
|
tenantId: number,
|
||||||
query: IGeneralLedgerSheetQuery
|
query: IGeneralLedgerSheetQuery
|
||||||
): Promise<{
|
): Promise<{
|
||||||
@@ -70,60 +46,24 @@ export class GeneralLedgerService {
|
|||||||
query: IGeneralLedgerSheetQuery;
|
query: IGeneralLedgerSheetQuery;
|
||||||
meta: IGeneralLedgerMeta;
|
meta: IGeneralLedgerMeta;
|
||||||
}> {
|
}> {
|
||||||
const { accountRepository, transactionsRepository, contactRepository } =
|
const repositories = this.tenancy.repositories(tenantId);
|
||||||
this.tenancy.repositories(tenantId);
|
|
||||||
|
|
||||||
const i18n = this.tenancy.i18n(tenantId);
|
const i18n = this.tenancy.i18n(tenantId);
|
||||||
|
|
||||||
const tenant = await Tenant.query()
|
|
||||||
.findById(tenantId)
|
|
||||||
.withGraphFetched('metadata');
|
|
||||||
|
|
||||||
const filter = {
|
const filter = {
|
||||||
...this.defaultQuery,
|
...this.defaultQuery,
|
||||||
...query,
|
...query,
|
||||||
};
|
};
|
||||||
// Retrieve all accounts with associated type from the storage.
|
const genealLedgerRepository = new GeneralLedgerRepository(
|
||||||
const accounts = await accountRepository.all();
|
repositories,
|
||||||
const accountsGraph = await accountRepository.getDependencyGraph();
|
query,
|
||||||
|
tenantId
|
||||||
// Retrieve all contacts on the storage.
|
|
||||||
const contacts = await contactRepository.all();
|
|
||||||
const contactsByIdMap = transformToMap(contacts, 'id');
|
|
||||||
|
|
||||||
// Retreive journal transactions from/to the given date.
|
|
||||||
const transactions = await transactionsRepository.journal({
|
|
||||||
fromDate: filter.fromDate,
|
|
||||||
toDate: filter.toDate,
|
|
||||||
branchesIds: filter.branchesIds,
|
|
||||||
});
|
|
||||||
// Retreive opening balance credit/debit sumation.
|
|
||||||
const openingBalanceTrans = await transactionsRepository.journal({
|
|
||||||
toDate: moment(filter.fromDate).subtract(1, 'day'),
|
|
||||||
sumationCreditDebit: true,
|
|
||||||
branchesIds: filter.branchesIds,
|
|
||||||
});
|
|
||||||
// Transform array transactions to journal collection.
|
|
||||||
const transactionsJournal = Journal.fromTransactions(
|
|
||||||
transactions,
|
|
||||||
tenantId,
|
|
||||||
accountsGraph
|
|
||||||
);
|
|
||||||
// Accounts opening transactions.
|
|
||||||
const openingTransJournal = Journal.fromTransactions(
|
|
||||||
openingBalanceTrans,
|
|
||||||
tenantId,
|
|
||||||
accountsGraph
|
|
||||||
);
|
);
|
||||||
|
await genealLedgerRepository.asyncInitialize();
|
||||||
|
|
||||||
// General ledger report instance.
|
// General ledger report instance.
|
||||||
const generalLedgerInstance = new GeneralLedgerSheet(
|
const generalLedgerInstance = new GeneralLedgerSheet(
|
||||||
tenantId,
|
|
||||||
filter,
|
filter,
|
||||||
accounts,
|
genealLedgerRepository,
|
||||||
contactsByIdMap,
|
|
||||||
transactionsJournal,
|
|
||||||
openingTransJournal,
|
|
||||||
tenant.metadata.baseCurrency,
|
|
||||||
i18n
|
i18n
|
||||||
);
|
);
|
||||||
// Retrieve general ledger report data.
|
// Retrieve general ledger report data.
|
||||||
|
|||||||
@@ -83,8 +83,8 @@ export class GeneralLedgerTable extends R.compose(
|
|||||||
*/
|
*/
|
||||||
private openingBalanceColumnsAccessors(): IColumnMapperMeta[] {
|
private openingBalanceColumnsAccessors(): IColumnMapperMeta[] {
|
||||||
return [
|
return [
|
||||||
{ key: 'date', value: this.meta.fromDate },
|
{ key: 'date', value: 'Opening Balance' },
|
||||||
{ key: 'account_name', value: 'Opening Balance' },
|
{ key: 'account_name', value: '' },
|
||||||
{ key: 'reference_type', accessor: '_empty_' },
|
{ key: 'reference_type', accessor: '_empty_' },
|
||||||
{ key: 'reference_number', accessor: '_empty_' },
|
{ key: 'reference_number', accessor: '_empty_' },
|
||||||
{ key: 'description', accessor: 'description' },
|
{ key: 'description', accessor: 'description' },
|
||||||
@@ -97,12 +97,15 @@ export class GeneralLedgerTable extends R.compose(
|
|||||||
|
|
||||||
/**
|
/**
|
||||||
* Closing balance row column accessors.
|
* Closing balance row column accessors.
|
||||||
|
* @param {IGeneralLedgerSheetAccount} account -
|
||||||
* @returns {ITableColumnAccessor[]}
|
* @returns {ITableColumnAccessor[]}
|
||||||
*/
|
*/
|
||||||
private closingBalanceColumnAccessors(): IColumnMapperMeta[] {
|
private closingBalanceColumnAccessors(
|
||||||
|
account: IGeneralLedgerSheetAccount
|
||||||
|
): IColumnMapperMeta[] {
|
||||||
return [
|
return [
|
||||||
{ key: 'date', value: this.meta.toDate },
|
{ key: 'date', value: `Closing balance for ${account.name}` },
|
||||||
{ key: 'account_name', value: 'Closing Balance' },
|
{ key: 'account_name', value: `` },
|
||||||
{ key: 'reference_type', accessor: '_empty_' },
|
{ key: 'reference_type', accessor: '_empty_' },
|
||||||
{ key: 'reference_number', accessor: '_empty_' },
|
{ key: 'reference_number', accessor: '_empty_' },
|
||||||
{ key: 'description', accessor: '_empty_' },
|
{ key: 'description', accessor: '_empty_' },
|
||||||
@@ -113,6 +116,36 @@ export class GeneralLedgerTable extends R.compose(
|
|||||||
];
|
];
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Closing balance row column accessors.
|
||||||
|
* @param {IGeneralLedgerSheetAccount} account -
|
||||||
|
* @returns {ITableColumnAccessor[]}
|
||||||
|
*/
|
||||||
|
private closingBalanceWithSubaccountsColumnAccessors(
|
||||||
|
account: IGeneralLedgerSheetAccount
|
||||||
|
): IColumnMapperMeta[] {
|
||||||
|
return [
|
||||||
|
{
|
||||||
|
key: 'date',
|
||||||
|
value: `Closing Balance for ${account.name} with sub-accounts`,
|
||||||
|
},
|
||||||
|
{
|
||||||
|
key: 'account_name',
|
||||||
|
value: ``,
|
||||||
|
},
|
||||||
|
{ key: 'reference_type', accessor: '_empty_' },
|
||||||
|
{ key: 'reference_number', accessor: '_empty_' },
|
||||||
|
{ key: 'description', accessor: '_empty_' },
|
||||||
|
{ key: 'credit', accessor: '_empty_' },
|
||||||
|
{ key: 'debit', accessor: '_empty_' },
|
||||||
|
{ key: 'amount', accessor: 'closingBalanceSubaccounts.formattedAmount' },
|
||||||
|
{
|
||||||
|
key: 'running_balance',
|
||||||
|
accessor: 'closingBalanceSubaccounts.formattedAmount',
|
||||||
|
},
|
||||||
|
];
|
||||||
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Retrieves the common table columns.
|
* Retrieves the common table columns.
|
||||||
* @returns {ITableColumn[]}
|
* @returns {ITableColumn[]}
|
||||||
@@ -184,7 +217,22 @@ export class GeneralLedgerTable extends R.compose(
|
|||||||
* @returns {ITableRow}
|
* @returns {ITableRow}
|
||||||
*/
|
*/
|
||||||
private closingBalanceMapper = (account: IGeneralLedgerSheetAccount) => {
|
private closingBalanceMapper = (account: IGeneralLedgerSheetAccount) => {
|
||||||
const columns = this.closingBalanceColumnAccessors();
|
const columns = this.closingBalanceColumnAccessors(account);
|
||||||
|
const meta = {
|
||||||
|
rowTypes: [ROW_TYPE.CLOSING_BALANCE],
|
||||||
|
};
|
||||||
|
return tableRowMapper(account, columns, meta);
|
||||||
|
};
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Maps the given account node to opening balance table row.
|
||||||
|
* @param {IGeneralLedgerSheetAccount} account
|
||||||
|
* @returns {ITableRow}
|
||||||
|
*/
|
||||||
|
private closingBalanceWithSubaccountsMapper = (
|
||||||
|
account: IGeneralLedgerSheetAccount
|
||||||
|
): ITableRow => {
|
||||||
|
const columns = this.closingBalanceWithSubaccountsColumnAccessors(account);
|
||||||
const meta = {
|
const meta = {
|
||||||
rowTypes: [ROW_TYPE.CLOSING_BALANCE],
|
rowTypes: [ROW_TYPE.CLOSING_BALANCE],
|
||||||
};
|
};
|
||||||
@@ -221,8 +269,27 @@ export class GeneralLedgerTable extends R.compose(
|
|||||||
rowTypes: [ROW_TYPE.ACCOUNT],
|
rowTypes: [ROW_TYPE.ACCOUNT],
|
||||||
};
|
};
|
||||||
const row = tableRowMapper(account, columns, meta);
|
const row = tableRowMapper(account, columns, meta);
|
||||||
|
const closingBalanceWithSubaccounts =
|
||||||
|
this.closingBalanceWithSubaccountsMapper(account);
|
||||||
|
|
||||||
return R.assoc('children', transactions)(row);
|
// Appends the closing balance with sub-accounts row if the account
|
||||||
|
// has children accounts and the node is define.
|
||||||
|
const isAppendClosingSubaccounts = () =>
|
||||||
|
account.children?.length > 0 && !!account.closingBalanceSubaccounts;
|
||||||
|
|
||||||
|
const children = R.compose(
|
||||||
|
R.when(
|
||||||
|
isAppendClosingSubaccounts,
|
||||||
|
R.append(closingBalanceWithSubaccounts)
|
||||||
|
),
|
||||||
|
R.concat(R.defaultTo([], transactions)),
|
||||||
|
R.when(
|
||||||
|
() => account?.children?.length > 0,
|
||||||
|
R.concat(R.defaultTo([], account.children))
|
||||||
|
)
|
||||||
|
)([]);
|
||||||
|
|
||||||
|
return R.assoc('children', children)(row);
|
||||||
};
|
};
|
||||||
|
|
||||||
/**
|
/**
|
||||||
@@ -233,7 +300,7 @@ export class GeneralLedgerTable extends R.compose(
|
|||||||
private accountsMapper = (
|
private accountsMapper = (
|
||||||
accounts: IGeneralLedgerSheetAccount[]
|
accounts: IGeneralLedgerSheetAccount[]
|
||||||
): ITableRow[] => {
|
): ITableRow[] => {
|
||||||
return this.mapNodesDeep(accounts, this.accountMapper);
|
return this.mapNodesDeepReverse(accounts, this.accountMapper);
|
||||||
};
|
};
|
||||||
|
|
||||||
/**
|
/**
|
||||||
@@ -250,7 +317,6 @@ export class GeneralLedgerTable extends R.compose(
|
|||||||
*/
|
*/
|
||||||
public tableColumns(): ITableColumn[] {
|
public tableColumns(): ITableColumn[] {
|
||||||
const columns = this.commonColumns();
|
const columns = this.commonColumns();
|
||||||
|
|
||||||
return R.compose(this.tableColumnsCellIndexing)(columns);
|
return R.compose(this.tableColumnsCellIndexing)(columns);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -0,0 +1,13 @@
|
|||||||
|
/**
|
||||||
|
* Calculate the running balance.
|
||||||
|
* @param {number} amount - Transaction amount.
|
||||||
|
* @param {number} lastRunningBalance - Last running balance.
|
||||||
|
* @param {number} openingBalance - Opening balance.
|
||||||
|
* @return {number} Running balance.
|
||||||
|
*/
|
||||||
|
export function calculateRunningBalance(
|
||||||
|
amount: number,
|
||||||
|
lastRunningBalance: number
|
||||||
|
): number {
|
||||||
|
return amount + lastRunningBalance;
|
||||||
|
}
|
||||||
@@ -24,6 +24,7 @@ import { ProfitLossSheetPreviousYear } from './ProfitLossSheetPreviousYear';
|
|||||||
import { ProfitLossSheetPreviousPeriod } from './ProfitLossSheetPreviousPeriod';
|
import { ProfitLossSheetPreviousPeriod } from './ProfitLossSheetPreviousPeriod';
|
||||||
import { FinancialDateRanges } from '../FinancialDateRanges';
|
import { FinancialDateRanges } from '../FinancialDateRanges';
|
||||||
import { ProfitLossSheetFilter } from './ProfitLossSheetFilter';
|
import { ProfitLossSheetFilter } from './ProfitLossSheetFilter';
|
||||||
|
import { flatToNestedArray } from '@/utils';
|
||||||
|
|
||||||
export default class ProfitLossSheet extends R.compose(
|
export default class ProfitLossSheet extends R.compose(
|
||||||
ProfitLossSheetPreviousYear,
|
ProfitLossSheetPreviousYear,
|
||||||
@@ -82,14 +83,22 @@ export default class ProfitLossSheet extends R.compose(
|
|||||||
|
|
||||||
/**
|
/**
|
||||||
* Retrieve the sheet account node from the given account.
|
* Retrieve the sheet account node from the given account.
|
||||||
* @param {IAccount} account
|
* @param {IAccount} account
|
||||||
* @returns {IProfitLossSheetAccountNode}
|
* @returns {IProfitLossSheetAccountNode}
|
||||||
*/
|
*/
|
||||||
private accountNodeMapper = (
|
private accountNodeMapper = (
|
||||||
account: IAccount
|
account: IAccount
|
||||||
): IProfitLossSheetAccountNode => {
|
): IProfitLossSheetAccountNode => {
|
||||||
|
// Retrieves the children account ids of the given account id.
|
||||||
|
const childrenAccountIds = this.repository.accountsGraph.dependenciesOf(
|
||||||
|
account.id
|
||||||
|
);
|
||||||
|
// Concat the children and the given account id.
|
||||||
|
const accountIds = R.uniq(R.append(account.id, childrenAccountIds));
|
||||||
|
|
||||||
|
// Retrieves the closing balance of the account included children accounts.
|
||||||
const total = this.repository.totalAccountsLedger
|
const total = this.repository.totalAccountsLedger
|
||||||
.whereAccountId(account.id)
|
.whereAccountsIds(accountIds)
|
||||||
.getClosingBalance();
|
.getClosingBalance();
|
||||||
|
|
||||||
return {
|
return {
|
||||||
@@ -126,18 +135,19 @@ export default class ProfitLossSheet extends R.compose(
|
|||||||
};
|
};
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Retrieve report accounts nodes by the given accounts types.
|
* Retrieves report accounts nodes by the given accounts types.
|
||||||
* @param {string[]} types
|
* @param {string[]} types
|
||||||
* @returns {IBalanceSheetAccountNode}
|
* @returns {IBalanceSheetAccountNode}
|
||||||
*/
|
*/
|
||||||
private getAccountsNodesByTypes = (
|
private getAccountsNodesByTypes = (
|
||||||
types: string[]
|
types: string[]
|
||||||
): IProfitLossSheetAccountNode[] => {
|
): IProfitLossSheetAccountNode[] => {
|
||||||
return R.compose(
|
const accounts = this.repository.getAccountsByType(types);
|
||||||
R.map(this.accountNodeCompose),
|
const accountsTree = flatToNestedArray(accounts, {
|
||||||
R.flatten,
|
id: 'id',
|
||||||
R.map(this.repository.getAccountsByType)
|
parentId: 'parentAccountId',
|
||||||
)(types);
|
});
|
||||||
|
return this.mapNodesDeep(accountsTree, this.accountNodeCompose);
|
||||||
};
|
};
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
|||||||
@@ -1,4 +1,4 @@
|
|||||||
import { defaultTo } from 'lodash';
|
import { castArray, defaultTo } from 'lodash';
|
||||||
import * as R from 'ramda';
|
import * as R from 'ramda';
|
||||||
import { Knex } from 'knex';
|
import { Knex } from 'knex';
|
||||||
import { isEmpty } from 'lodash';
|
import { isEmpty } from 'lodash';
|
||||||
@@ -31,6 +31,11 @@ export class ProfitLossSheetRepository extends R.compose(FinancialDatePeriods)(
|
|||||||
*/
|
*/
|
||||||
public accounts: IAccount[];
|
public accounts: IAccount[];
|
||||||
|
|
||||||
|
/**
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public accountsGraph: any;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Transactions group type.
|
* Transactions group type.
|
||||||
* @param {IAccountTransactionsGroupBy}
|
* @param {IAccountTransactionsGroupBy}
|
||||||
@@ -135,6 +140,8 @@ export class ProfitLossSheetRepository extends R.compose(FinancialDatePeriods)(
|
|||||||
*/
|
*/
|
||||||
public asyncInitialize = async () => {
|
public asyncInitialize = async () => {
|
||||||
await this.initAccounts();
|
await this.initAccounts();
|
||||||
|
await this.initAccountsGraph();
|
||||||
|
|
||||||
await this.initAccountsTotalLedger();
|
await this.initAccountsTotalLedger();
|
||||||
|
|
||||||
// Date Periods.
|
// Date Periods.
|
||||||
@@ -177,6 +184,15 @@ export class ProfitLossSheetRepository extends R.compose(FinancialDatePeriods)(
|
|||||||
this.accountsByType = transformToMapBy(accounts, 'accountType');
|
this.accountsByType = transformToMapBy(accounts, 'accountType');
|
||||||
};
|
};
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Initialize accounts graph.
|
||||||
|
*/
|
||||||
|
private initAccountsGraph = async () => {
|
||||||
|
const { Account } = this.models;
|
||||||
|
|
||||||
|
this.accountsGraph = Account.toDependencyGraph(this.accounts);
|
||||||
|
};
|
||||||
|
|
||||||
// ----------------------------
|
// ----------------------------
|
||||||
// # Closing Total.
|
// # Closing Total.
|
||||||
// ----------------------------
|
// ----------------------------
|
||||||
@@ -337,7 +353,18 @@ export class ProfitLossSheetRepository extends R.compose(FinancialDatePeriods)(
|
|||||||
return Account.query();
|
return Account.query();
|
||||||
};
|
};
|
||||||
|
|
||||||
public getAccountsByType = (type: string) => {
|
/**
|
||||||
return defaultTo(this.accountsByType.get(type), []);
|
*
|
||||||
|
* @param type
|
||||||
|
* @returns
|
||||||
|
*/
|
||||||
|
public getAccountsByType = (type: string[] | string) => {
|
||||||
|
return R.compose(
|
||||||
|
R.flatten,
|
||||||
|
R.map((accountType) =>
|
||||||
|
R.defaultTo([], this.accountsByType.get(accountType))
|
||||||
|
),
|
||||||
|
castArray
|
||||||
|
)(type);
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -46,6 +46,9 @@ export default class SyncSystemSendInvite {
|
|||||||
email: user.email,
|
email: user.email,
|
||||||
active: user.active,
|
active: user.active,
|
||||||
tenantId,
|
tenantId,
|
||||||
|
|
||||||
|
// Email should be verified since the user got the invite token through email.
|
||||||
|
verified: true,
|
||||||
});
|
});
|
||||||
// Creates a invite user token.
|
// Creates a invite user token.
|
||||||
const invite = await Invite.query().insert({
|
const invite = await Invite.query().insert({
|
||||||
|
|||||||
@@ -13,6 +13,7 @@ export class ManualJournalTransfromer extends Transformer {
|
|||||||
'formattedAmount',
|
'formattedAmount',
|
||||||
'formattedDate',
|
'formattedDate',
|
||||||
'formattedPublishedAt',
|
'formattedPublishedAt',
|
||||||
|
'formattedCreatedAt',
|
||||||
'attachments',
|
'attachments',
|
||||||
];
|
];
|
||||||
};
|
};
|
||||||
@@ -37,6 +38,15 @@ export class ManualJournalTransfromer extends Transformer {
|
|||||||
return this.formatDate(manualJorunal.date);
|
return this.formatDate(manualJorunal.date);
|
||||||
};
|
};
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Retrieve formatted created at date.
|
||||||
|
* @param {IManualJournal} manualJournal
|
||||||
|
* @returns {string}
|
||||||
|
*/
|
||||||
|
protected formattedCreatedAt = (manualJorunal: IManualJournal): string => {
|
||||||
|
return this.formatDate(manualJorunal.createdAt);
|
||||||
|
};
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Retrieve formatted published at date.
|
* Retrieve formatted published at date.
|
||||||
* @param {IManualJournal} manualJournal
|
* @param {IManualJournal} manualJournal
|
||||||
|
|||||||
@@ -207,7 +207,7 @@ export default class OrganizationService {
|
|||||||
): IOrganizationBuildDTO {
|
): IOrganizationBuildDTO {
|
||||||
return {
|
return {
|
||||||
...buildDTO,
|
...buildDTO,
|
||||||
dateFormat: defaultTo(buildDTO.dateFormat, 'DD/MM/yyyy'),
|
dateFormat: defaultTo(buildDTO.dateFormat, 'DD MMM yyyy'),
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
@@ -1,5 +1,6 @@
|
|||||||
import { Transformer } from '@/lib/Transformer/Transformer';
|
import { Transformer } from '@/lib/Transformer/Transformer';
|
||||||
import { formatNumber } from '@/utils';
|
import { formatNumber } from '@/utils';
|
||||||
|
import { PurchaseInvoiceTransformer } from '../Bills/PurchaseInvoiceTransformer';
|
||||||
|
|
||||||
export class BillPaymentEntryTransformer extends Transformer {
|
export class BillPaymentEntryTransformer extends Transformer {
|
||||||
/**
|
/**
|
||||||
@@ -7,7 +8,14 @@ export class BillPaymentEntryTransformer extends Transformer {
|
|||||||
* @returns {Array}
|
* @returns {Array}
|
||||||
*/
|
*/
|
||||||
public includeAttributes = (): string[] => {
|
public includeAttributes = (): string[] => {
|
||||||
return ['paymentAmountFormatted'];
|
return ['paymentAmountFormatted', 'bill'];
|
||||||
|
};
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Retreives the
|
||||||
|
*/
|
||||||
|
protected bill = (entry) => {
|
||||||
|
return this.item(entry.bill, new PurchaseInvoiceTransformer());
|
||||||
};
|
};
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
|||||||
@@ -12,6 +12,7 @@ export class BillPaymentTransformer extends Transformer {
|
|||||||
public includeAttributes = (): string[] => {
|
public includeAttributes = (): string[] => {
|
||||||
return [
|
return [
|
||||||
'formattedPaymentDate',
|
'formattedPaymentDate',
|
||||||
|
'formattedCreatedAt',
|
||||||
'formattedAmount',
|
'formattedAmount',
|
||||||
'entries',
|
'entries',
|
||||||
'attachments',
|
'attachments',
|
||||||
@@ -27,6 +28,15 @@ export class BillPaymentTransformer extends Transformer {
|
|||||||
return this.formatDate(billPayment.paymentDate);
|
return this.formatDate(billPayment.paymentDate);
|
||||||
};
|
};
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Retrieve formatted created at date.
|
||||||
|
* @param {IBillPayment} billPayment
|
||||||
|
* @returns {string}
|
||||||
|
*/
|
||||||
|
protected formattedCreatedAt = (billPayment: IBillPayment): string => {
|
||||||
|
return this.formatDate(billPayment.createdAt);
|
||||||
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Retrieve formatted bill amount.
|
* Retrieve formatted bill amount.
|
||||||
* @param {IBill} invoice
|
* @param {IBill} invoice
|
||||||
|
|||||||
@@ -14,6 +14,7 @@ export class PurchaseInvoiceTransformer extends Transformer {
|
|||||||
return [
|
return [
|
||||||
'formattedBillDate',
|
'formattedBillDate',
|
||||||
'formattedDueDate',
|
'formattedDueDate',
|
||||||
|
'formattedCreatedAt',
|
||||||
'formattedAmount',
|
'formattedAmount',
|
||||||
'formattedPaymentAmount',
|
'formattedPaymentAmount',
|
||||||
'formattedBalance',
|
'formattedBalance',
|
||||||
@@ -57,6 +58,15 @@ export class PurchaseInvoiceTransformer extends Transformer {
|
|||||||
return this.formatDate(bill.dueDate);
|
return this.formatDate(bill.dueDate);
|
||||||
};
|
};
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Retrieve the formatted created at date.
|
||||||
|
* @param {IBill} bill
|
||||||
|
* @returns {string}
|
||||||
|
*/
|
||||||
|
protected formattedCreatedAt = (bill: IBill): string => {
|
||||||
|
return this.formatDate(bill.createdAt);
|
||||||
|
};
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Retrieve formatted bill amount.
|
* Retrieve formatted bill amount.
|
||||||
* @param {IBill} bill
|
* @param {IBill} bill
|
||||||
|
|||||||
@@ -14,6 +14,7 @@ export class VendorCreditTransformer extends Transformer {
|
|||||||
'formattedAmount',
|
'formattedAmount',
|
||||||
'formattedSubtotal',
|
'formattedSubtotal',
|
||||||
'formattedVendorCreditDate',
|
'formattedVendorCreditDate',
|
||||||
|
'formattedCreatedAt',
|
||||||
'formattedCreditsRemaining',
|
'formattedCreditsRemaining',
|
||||||
'formattedInvoicedAmount',
|
'formattedInvoicedAmount',
|
||||||
'entries',
|
'entries',
|
||||||
@@ -30,6 +31,15 @@ export class VendorCreditTransformer extends Transformer {
|
|||||||
return this.formatDate(vendorCredit.vendorCreditDate);
|
return this.formatDate(vendorCredit.vendorCreditDate);
|
||||||
};
|
};
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Retireve formatted created at date.
|
||||||
|
* @param vendorCredit
|
||||||
|
* @returns {string}
|
||||||
|
*/
|
||||||
|
protected formattedCreatedAt = (vendorCredit): string => {
|
||||||
|
return this.formatDate(vendorCredit.createdAt);
|
||||||
|
};
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Retrieve formatted vendor credit amount.
|
* Retrieve formatted vendor credit amount.
|
||||||
* @param {IVendorCredit} credit
|
* @param {IVendorCredit} credit
|
||||||
|
|||||||
@@ -108,17 +108,28 @@ export default class ResourceService {
|
|||||||
const $hasFields = (field) =>
|
const $hasFields = (field) =>
|
||||||
'undefined' !== typeof field.fields ? field : undefined;
|
'undefined' !== typeof field.fields ? field : undefined;
|
||||||
|
|
||||||
const $hasColumns = (column) =>
|
const $ColumnHasColumns = (column) =>
|
||||||
'undefined' !== typeof column.columns ? column : undefined;
|
'undefined' !== typeof column.columns ? column : undefined;
|
||||||
|
|
||||||
|
const $hasColumns = (columns) =>
|
||||||
|
'undefined' !== typeof columns ? columns : undefined;
|
||||||
|
|
||||||
const naviagations = [
|
const naviagations = [
|
||||||
['fields', qim.$each, 'name'],
|
['fields', qim.$each, 'name'],
|
||||||
['fields', qim.$each, $enumerationType, 'options', qim.$each, 'label'],
|
['fields', qim.$each, $enumerationType, 'options', qim.$each, 'label'],
|
||||||
['fields2', qim.$each, 'name'],
|
['fields2', qim.$each, 'name'],
|
||||||
['fields2', qim.$each, $enumerationType, 'options', qim.$each, 'label'],
|
['fields2', qim.$each, $enumerationType, 'options', qim.$each, 'label'],
|
||||||
['fields2', qim.$each, $hasFields, 'fields', qim.$each, 'name'],
|
['fields2', qim.$each, $hasFields, 'fields', qim.$each, 'name'],
|
||||||
['columns', qim.$each, 'name'],
|
['columns', $hasColumns, qim.$each, 'name'],
|
||||||
['columns', qim.$each, $hasColumns, 'columns', qim.$each, 'name'],
|
[
|
||||||
|
'columns',
|
||||||
|
$hasColumns,
|
||||||
|
qim.$each,
|
||||||
|
$ColumnHasColumns,
|
||||||
|
'columns',
|
||||||
|
qim.$each,
|
||||||
|
'name',
|
||||||
|
],
|
||||||
];
|
];
|
||||||
return this.i18nService.i18nApply(naviagations, meta, tenantId);
|
return this.i18nService.i18nApply(naviagations, meta, tenantId);
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -18,6 +18,7 @@ export class SaleEstimateTransfromer extends Transformer {
|
|||||||
'formattedDeliveredAtDate',
|
'formattedDeliveredAtDate',
|
||||||
'formattedApprovedAtDate',
|
'formattedApprovedAtDate',
|
||||||
'formattedRejectedAtDate',
|
'formattedRejectedAtDate',
|
||||||
|
'formattedCreatedAt',
|
||||||
'entries',
|
'entries',
|
||||||
'attachments',
|
'attachments',
|
||||||
];
|
];
|
||||||
@@ -41,6 +42,15 @@ export class SaleEstimateTransfromer extends Transformer {
|
|||||||
return this.formatDate(estimate.expirationDate);
|
return this.formatDate(estimate.expirationDate);
|
||||||
};
|
};
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Retrieves the formatted estimate created at.
|
||||||
|
* @param {ISaleEstimate} estimate -
|
||||||
|
* @returns {string}
|
||||||
|
*/
|
||||||
|
protected formattedCreatedAt = (estimate: ISaleEstimate): string => {
|
||||||
|
return this.formatDate(estimate.createdAt);
|
||||||
|
};
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Retrieve formatted estimate date.
|
* Retrieve formatted estimate date.
|
||||||
* @param {ISaleEstimate} invoice
|
* @param {ISaleEstimate} invoice
|
||||||
|
|||||||
@@ -13,6 +13,7 @@ export class SaleInvoiceTransformer extends Transformer {
|
|||||||
return [
|
return [
|
||||||
'invoiceDateFormatted',
|
'invoiceDateFormatted',
|
||||||
'dueDateFormatted',
|
'dueDateFormatted',
|
||||||
|
'createdAtFormatted',
|
||||||
'dueAmountFormatted',
|
'dueAmountFormatted',
|
||||||
'paymentAmountFormatted',
|
'paymentAmountFormatted',
|
||||||
'balanceAmountFormatted',
|
'balanceAmountFormatted',
|
||||||
@@ -48,6 +49,15 @@ export class SaleInvoiceTransformer extends Transformer {
|
|||||||
return this.formatDate(invoice.dueDate);
|
return this.formatDate(invoice.dueDate);
|
||||||
};
|
};
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Retrieve the formatted created at date.
|
||||||
|
* @param invoice
|
||||||
|
* @returns {string}
|
||||||
|
*/
|
||||||
|
protected createdAtFormatted = (invoice): string => {
|
||||||
|
return this.formatDate(invoice.createdAt);
|
||||||
|
};
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Retrieve formatted invoice due amount.
|
* Retrieve formatted invoice due amount.
|
||||||
* @param {ISaleInvoice} invoice
|
* @param {ISaleInvoice} invoice
|
||||||
|
|||||||
@@ -146,6 +146,7 @@ export class EditPaymentReceive {
|
|||||||
paymentReceiveId,
|
paymentReceiveId,
|
||||||
paymentReceive,
|
paymentReceive,
|
||||||
oldPaymentReceive,
|
oldPaymentReceive,
|
||||||
|
paymentReceiveDTO,
|
||||||
authorizedUser,
|
authorizedUser,
|
||||||
trx,
|
trx,
|
||||||
} as IPaymentReceiveEditedPayload);
|
} as IPaymentReceiveEditedPayload);
|
||||||
|
|||||||
@@ -12,6 +12,7 @@ export class PaymentReceiveTransfromer extends Transformer {
|
|||||||
return [
|
return [
|
||||||
'subtotalFormatted',
|
'subtotalFormatted',
|
||||||
'formattedPaymentDate',
|
'formattedPaymentDate',
|
||||||
|
'formattedCreatedAt',
|
||||||
'formattedAmount',
|
'formattedAmount',
|
||||||
'formattedExchangeRate',
|
'formattedExchangeRate',
|
||||||
'entries',
|
'entries',
|
||||||
@@ -27,9 +28,18 @@ export class PaymentReceiveTransfromer extends Transformer {
|
|||||||
return this.formatDate(payment.paymentDate);
|
return this.formatDate(payment.paymentDate);
|
||||||
};
|
};
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Retrieves the formatted created at date.
|
||||||
|
* @param {IPaymentReceive} payment
|
||||||
|
* @returns {string}
|
||||||
|
*/
|
||||||
|
protected formattedCreatedAt = (payment: IPaymentReceive): string => {
|
||||||
|
return this.formatDate(payment.createdAt);
|
||||||
|
};
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Retrieve the formatted payment subtotal.
|
* Retrieve the formatted payment subtotal.
|
||||||
* @param {IPaymentReceive} payment
|
* @param {IPaymentReceive} payment
|
||||||
* @returns {string}
|
* @returns {string}
|
||||||
*/
|
*/
|
||||||
protected subtotalFormatted = (payment: IPaymentReceive): string => {
|
protected subtotalFormatted = (payment: IPaymentReceive): string => {
|
||||||
|
|||||||
@@ -17,6 +17,7 @@ export class SaleReceiptTransformer extends Transformer {
|
|||||||
'formattedAmount',
|
'formattedAmount',
|
||||||
'formattedReceiptDate',
|
'formattedReceiptDate',
|
||||||
'formattedClosedAtDate',
|
'formattedClosedAtDate',
|
||||||
|
'formattedCreatedAt',
|
||||||
'entries',
|
'entries',
|
||||||
'attachments',
|
'attachments',
|
||||||
];
|
];
|
||||||
@@ -40,6 +41,15 @@ export class SaleReceiptTransformer extends Transformer {
|
|||||||
return this.formatDate(receipt.closedAt);
|
return this.formatDate(receipt.closedAt);
|
||||||
};
|
};
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Retrieve formatted receipt created at date.
|
||||||
|
* @param receipt
|
||||||
|
* @returns {string}
|
||||||
|
*/
|
||||||
|
protected formattedCreatedAt = (receipt: ISaleReceipt): string => {
|
||||||
|
return this.formatDate(receipt.createdAt);
|
||||||
|
};
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Retrieves the estimate formatted subtotal.
|
* Retrieves the estimate formatted subtotal.
|
||||||
* @param {ISaleReceipt} receipt
|
* @param {ISaleReceipt} receipt
|
||||||
|
|||||||
@@ -2,6 +2,7 @@ import { Service } from 'typedi';
|
|||||||
import { createCheckout } from '@lemonsqueezy/lemonsqueezy.js';
|
import { createCheckout } from '@lemonsqueezy/lemonsqueezy.js';
|
||||||
import { SystemUser } from '@/system/models';
|
import { SystemUser } from '@/system/models';
|
||||||
import { configureLemonSqueezy } from './utils';
|
import { configureLemonSqueezy } from './utils';
|
||||||
|
import config from '@/config';
|
||||||
|
|
||||||
@Service()
|
@Service()
|
||||||
export class LemonSqueezyService {
|
export class LemonSqueezyService {
|
||||||
@@ -28,7 +29,7 @@ export class LemonSqueezyService {
|
|||||||
},
|
},
|
||||||
productOptions: {
|
productOptions: {
|
||||||
enabledVariants: [variantId],
|
enabledVariants: [variantId],
|
||||||
redirectUrl: `http://localhost:4000/dashboard/billing/`,
|
redirectUrl: config.lemonSqueezy.redirectTo,
|
||||||
receiptButtonText: 'Go to Dashboard',
|
receiptButtonText: 'Go to Dashboard',
|
||||||
receiptThankYouNote: 'Thank you for signing up to Lemon Stand!',
|
receiptThankYouNote: 'Thank you for signing up to Lemon Stand!',
|
||||||
},
|
},
|
||||||
|
|||||||
@@ -90,6 +90,20 @@ export default class SystemUser extends SystemModel {
|
|||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Model modifiers.
|
||||||
|
*/
|
||||||
|
static get modifiers() {
|
||||||
|
return {
|
||||||
|
/**
|
||||||
|
* Filters the invite accepted users.
|
||||||
|
*/
|
||||||
|
inviteAccepted(query) {
|
||||||
|
query.whereNotNull('invite_accepted_at');
|
||||||
|
},
|
||||||
|
};
|
||||||
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Verify the password of the user.
|
* Verify the password of the user.
|
||||||
* @param {String} password - The given password.
|
* @param {String} password - The given password.
|
||||||
|
|||||||
@@ -0,0 +1,18 @@
|
|||||||
|
// @ts-nocheck
|
||||||
|
import { FSuggest } from '../Forms';
|
||||||
|
|
||||||
|
interface BranchSuggestFieldProps {
|
||||||
|
items: any[];
|
||||||
|
}
|
||||||
|
|
||||||
|
export function BranchSuggestField({ ...props }: BranchSuggestFieldProps) {
|
||||||
|
return (
|
||||||
|
<FSuggest
|
||||||
|
valueAccessor={'id'}
|
||||||
|
labelAccessor={'code'}
|
||||||
|
textAccessor={'name'}
|
||||||
|
inputProps={{ placeholder: 'Select a branch' }}
|
||||||
|
{...props}
|
||||||
|
/>
|
||||||
|
);
|
||||||
|
}
|
||||||
@@ -3,7 +3,15 @@ import React from 'react';
|
|||||||
import clsx from 'classnames';
|
import clsx from 'classnames';
|
||||||
import { Navbar } from '@blueprintjs/core';
|
import { Navbar } from '@blueprintjs/core';
|
||||||
|
|
||||||
export function DashboardActionsBar({ className, children, name }) {
|
interface DashboardActionsBarProps {
|
||||||
|
children?: React.ReactNode;
|
||||||
|
}
|
||||||
|
|
||||||
|
export function DashboardActionsBar({
|
||||||
|
className,
|
||||||
|
children,
|
||||||
|
name,
|
||||||
|
}: DashboardActionsBarProps) {
|
||||||
return (
|
return (
|
||||||
<div
|
<div
|
||||||
className={clsx(
|
className={clsx(
|
||||||
|
|||||||
@@ -50,7 +50,6 @@ import InvoiceMailDialog from '@/containers/Sales/Invoices/InvoiceMailDialog/Inv
|
|||||||
import EstimateMailDialog from '@/containers/Sales/Estimates/EstimateMailDialog/EstimateMailDialog';
|
import EstimateMailDialog from '@/containers/Sales/Estimates/EstimateMailDialog/EstimateMailDialog';
|
||||||
import ReceiptMailDialog from '@/containers/Sales/Receipts/ReceiptMailDialog/ReceiptMailDialog';
|
import ReceiptMailDialog from '@/containers/Sales/Receipts/ReceiptMailDialog/ReceiptMailDialog';
|
||||||
import PaymentMailDialog from '@/containers/Sales/PaymentReceives/PaymentMailDialog/PaymentMailDialog';
|
import PaymentMailDialog from '@/containers/Sales/PaymentReceives/PaymentMailDialog/PaymentMailDialog';
|
||||||
import { ConnectBankDialog } from '@/containers/CashFlow/ConnectBankDialog';
|
|
||||||
import { ExportDialog } from '@/containers/Dialogs/ExportDialog';
|
import { ExportDialog } from '@/containers/Dialogs/ExportDialog';
|
||||||
|
|
||||||
/**
|
/**
|
||||||
@@ -97,7 +96,6 @@ export default function DialogsContainer() {
|
|||||||
<NotifyPaymentReceiveViaSMSDialog
|
<NotifyPaymentReceiveViaSMSDialog
|
||||||
dialogName={DialogsName.NotifyPaymentViaForm}
|
dialogName={DialogsName.NotifyPaymentViaForm}
|
||||||
/>
|
/>
|
||||||
|
|
||||||
<BadDebtDialog dialogName={DialogsName.BadDebtForm} />
|
<BadDebtDialog dialogName={DialogsName.BadDebtForm} />
|
||||||
<SMSMessageDialog dialogName={DialogsName.SMSMessageForm} />
|
<SMSMessageDialog dialogName={DialogsName.SMSMessageForm} />
|
||||||
<RefundCreditNoteDialog dialogName={DialogsName.RefundCreditNote} />
|
<RefundCreditNoteDialog dialogName={DialogsName.RefundCreditNote} />
|
||||||
@@ -148,8 +146,6 @@ export default function DialogsContainer() {
|
|||||||
<EstimateMailDialog dialogName={DialogsName.EstimateMail} />
|
<EstimateMailDialog dialogName={DialogsName.EstimateMail} />
|
||||||
<ReceiptMailDialog dialogName={DialogsName.ReceiptMail} />
|
<ReceiptMailDialog dialogName={DialogsName.ReceiptMail} />
|
||||||
<PaymentMailDialog dialogName={DialogsName.PaymentMail} />
|
<PaymentMailDialog dialogName={DialogsName.PaymentMail} />
|
||||||
<ConnectBankDialog dialogName={DialogsName.ConnectBankCreditCard} />
|
|
||||||
|
|
||||||
<ExportDialog dialogName={DialogsName.Export} />
|
<ExportDialog dialogName={DialogsName.Export} />
|
||||||
</div>
|
</div>
|
||||||
);
|
);
|
||||||
|
|||||||
@@ -21,9 +21,9 @@ import RefundCreditNoteDetailDrawer from '@/containers/Drawers/RefundCreditNoteD
|
|||||||
import RefundVendorCreditDetailDrawer from '@/containers/Drawers/RefundVendorCreditDetailDrawer';
|
import RefundVendorCreditDetailDrawer from '@/containers/Drawers/RefundVendorCreditDetailDrawer';
|
||||||
import WarehouseTransferDetailDrawer from '@/containers/Drawers/WarehouseTransferDetailDrawer';
|
import WarehouseTransferDetailDrawer from '@/containers/Drawers/WarehouseTransferDetailDrawer';
|
||||||
import TaxRateDetailsDrawer from '@/containers/TaxRates/drawers/TaxRateDetailsDrawer/TaxRateDetailsDrawer';
|
import TaxRateDetailsDrawer from '@/containers/TaxRates/drawers/TaxRateDetailsDrawer/TaxRateDetailsDrawer';
|
||||||
|
import CategorizeTransactionDrawer from '@/containers/CashFlow/CategorizeTransaction/drawers/CategorizeTransactionDrawer/CategorizeTransactionDrawer';
|
||||||
|
|
||||||
import { DRAWERS } from '@/constants/drawers';
|
import { DRAWERS } from '@/constants/drawers';
|
||||||
import CategorizeTransactionDrawer from '@/containers/CashFlow/CategorizeTransaction/drawers/CategorizeTransactionDrawer/CategorizeTransactionDrawer';
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Drawers container of the dashboard.
|
* Drawers container of the dashboard.
|
||||||
|
|||||||
@@ -20,8 +20,9 @@ export const AbilitySubject = {
|
|||||||
SubscriptionBilling: 'SubscriptionBilling',
|
SubscriptionBilling: 'SubscriptionBilling',
|
||||||
CreditNote: 'CreditNote',
|
CreditNote: 'CreditNote',
|
||||||
VendorCredit: 'VendorCredit',
|
VendorCredit: 'VendorCredit',
|
||||||
Project:'Project',
|
Project: 'Project',
|
||||||
TaxRate: 'TaxRate',
|
TaxRate: 'TaxRate',
|
||||||
|
BankRule: 'BankRule',
|
||||||
};
|
};
|
||||||
|
|
||||||
export const ItemAction = {
|
export const ItemAction = {
|
||||||
@@ -188,10 +189,16 @@ export const SubscriptionBillingAbility = {
|
|||||||
Payment: 'payment',
|
Payment: 'payment',
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|
||||||
export const TaxRateAction = {
|
export const TaxRateAction = {
|
||||||
View: 'View',
|
View: 'View',
|
||||||
Create: 'Create',
|
Create: 'Create',
|
||||||
Edit: 'Edit',
|
Edit: 'Edit',
|
||||||
Delete: 'Delete',
|
Delete: 'Delete',
|
||||||
};
|
};
|
||||||
|
|
||||||
|
export const BankRuleAction = {
|
||||||
|
View: 'View',
|
||||||
|
Create: 'Create',
|
||||||
|
Edit: 'Edit',
|
||||||
|
Delete: 'Delete',
|
||||||
|
};
|
||||||
|
|||||||
@@ -458,6 +458,11 @@ export const SidebarMenu = [
|
|||||||
ability: CashflowAction.View,
|
ability: CashflowAction.View,
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
|
{
|
||||||
|
text: 'Rules',
|
||||||
|
href: '/bank-rules',
|
||||||
|
type: ISidebarMenuItemType.Link,
|
||||||
|
},
|
||||||
],
|
],
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
|
|||||||
@@ -16,8 +16,7 @@ export const useManualJournalsColumns = () => {
|
|||||||
{
|
{
|
||||||
id: 'date',
|
id: 'date',
|
||||||
Header: intl.get('date'),
|
Header: intl.get('date'),
|
||||||
accessor: 'date',
|
accessor: 'formatted_date',
|
||||||
Cell: FormatDateCell,
|
|
||||||
width: 115,
|
width: 115,
|
||||||
className: 'date',
|
className: 'date',
|
||||||
clickable: true,
|
clickable: true,
|
||||||
@@ -66,8 +65,7 @@ export const useManualJournalsColumns = () => {
|
|||||||
{
|
{
|
||||||
id: 'created_at',
|
id: 'created_at',
|
||||||
Header: intl.get('created_at'),
|
Header: intl.get('created_at'),
|
||||||
accessor: 'created_at',
|
accessor: 'formatted_created_at',
|
||||||
Cell: FormatDateCell,
|
|
||||||
width: 125,
|
width: 125,
|
||||||
clickable: true,
|
clickable: true,
|
||||||
},
|
},
|
||||||
|
|||||||
@@ -13,7 +13,7 @@ import {
|
|||||||
import { useHistory } from 'react-router-dom';
|
import { useHistory } from 'react-router-dom';
|
||||||
import { useFormikContext } from 'formik';
|
import { useFormikContext } from 'formik';
|
||||||
import classNames from 'classnames';
|
import classNames from 'classnames';
|
||||||
import { Icon, If, FormattedMessage as T } from '@/components';
|
import { Group, Icon, If, FormattedMessage as T } from '@/components';
|
||||||
import { CLASSES } from '@/constants/classes';
|
import { CLASSES } from '@/constants/classes';
|
||||||
import { useMakeJournalFormContext } from './MakeJournalProvider';
|
import { useMakeJournalFormContext } from './MakeJournalProvider';
|
||||||
|
|
||||||
@@ -76,7 +76,10 @@ export default function MakeJournalFloatingAction() {
|
|||||||
};
|
};
|
||||||
|
|
||||||
return (
|
return (
|
||||||
<div className={classNames(CLASSES.PAGE_FORM_FLOATING_ACTIONS)}>
|
<Group
|
||||||
|
spacing={10}
|
||||||
|
className={classNames(CLASSES.PAGE_FORM_FLOATING_ACTIONS)}
|
||||||
|
>
|
||||||
{/* ----------- Save And Publish ----------- */}
|
{/* ----------- Save And Publish ----------- */}
|
||||||
<If condition={!manualJournal || !manualJournal?.is_published}>
|
<If condition={!manualJournal || !manualJournal?.is_published}>
|
||||||
<ButtonGroup>
|
<ButtonGroup>
|
||||||
@@ -188,6 +191,6 @@ export default function MakeJournalFloatingAction() {
|
|||||||
onClick={handleCancelBtnClick}
|
onClick={handleCancelBtnClick}
|
||||||
text={<T id={'cancel'} />}
|
text={<T id={'cancel'} />}
|
||||||
/>
|
/>
|
||||||
</div>
|
</Group>
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -0,0 +1,32 @@
|
|||||||
|
import React, { createContext } from 'react';
|
||||||
|
import { DialogContent } from '@/components';
|
||||||
|
|
||||||
|
interface RuleFormBootValues {
|
||||||
|
bankRule?: null;
|
||||||
|
bankRuleId?: null;
|
||||||
|
isBankRuleLoading: boolean;
|
||||||
|
}
|
||||||
|
|
||||||
|
const RuleFormBootContext = createContext<RuleFormBootValues>(
|
||||||
|
{} as RuleFormBootValues,
|
||||||
|
);
|
||||||
|
|
||||||
|
interface RuleFormBootProps {
|
||||||
|
bankRuleId?: number;
|
||||||
|
children: React.ReactNode;
|
||||||
|
}
|
||||||
|
|
||||||
|
function RuleFormBoot({ bankRuleId, ...props }: RuleFormBootProps) {
|
||||||
|
const provider = {} as RuleFormBootValues;
|
||||||
|
|
||||||
|
return (
|
||||||
|
<DialogContent isLoading={false}>
|
||||||
|
<RuleFormBootContext.Provider value={provider} {...props} />
|
||||||
|
</DialogContent>
|
||||||
|
);
|
||||||
|
}
|
||||||
|
|
||||||
|
const useRuleFormDialogBoot = () =>
|
||||||
|
React.useContext<RuleFormBootValues>(RuleFormBootContext);
|
||||||
|
|
||||||
|
export { RuleFormBoot, useRuleFormDialogBoot };
|
||||||
@@ -0,0 +1,19 @@
|
|||||||
|
import { RuleFormBoot } from "./RuleFormBoot";
|
||||||
|
|
||||||
|
|
||||||
|
interface RuleFormContentProps {
|
||||||
|
dialogName: string;
|
||||||
|
bankRuleId?: number;
|
||||||
|
}
|
||||||
|
export function RuleFormContent({
|
||||||
|
dialogName,
|
||||||
|
bankRuleId,
|
||||||
|
}: RuleFormContentProps) {
|
||||||
|
return (
|
||||||
|
<RuleFormBoot
|
||||||
|
bankRuleId={bankRuleId}
|
||||||
|
>
|
||||||
|
|
||||||
|
</RuleFormBoot>
|
||||||
|
);
|
||||||
|
}
|
||||||
@@ -0,0 +1,13 @@
|
|||||||
|
// @ts-nocheck
|
||||||
|
import * as Yup from 'yup';
|
||||||
|
|
||||||
|
const Schema = Yup.object().shape({
|
||||||
|
name: Yup.string().required().label('Rule name'),
|
||||||
|
applyIfAccountId: Yup.number().required().label(''),
|
||||||
|
applyIfTransactionType: Yup.string().required().label(''),
|
||||||
|
conditionsType: Yup.string().required(),
|
||||||
|
assignCategory: Yup.string().required(),
|
||||||
|
assignAccountId: Yup.string().required(),
|
||||||
|
});
|
||||||
|
|
||||||
|
export const CreateRuleFormSchema = Schema;
|
||||||
@@ -0,0 +1,134 @@
|
|||||||
|
import { Form, Formik, useFormikContext } from 'formik';
|
||||||
|
import { Button, Radio } from '@blueprintjs/core';
|
||||||
|
import { CreateRuleFormSchema } from './RuleFormContentForm.schema';
|
||||||
|
import {
|
||||||
|
Box,
|
||||||
|
FFormGroup,
|
||||||
|
FInputGroup,
|
||||||
|
FRadioGroup,
|
||||||
|
FSelect,
|
||||||
|
Group,
|
||||||
|
} from '@/components';
|
||||||
|
|
||||||
|
const initialValues = {
|
||||||
|
name: '',
|
||||||
|
order: 0,
|
||||||
|
applyIfAccountId: '',
|
||||||
|
applyIfTransactionType: '',
|
||||||
|
conditionsType: '',
|
||||||
|
conditions: [
|
||||||
|
{
|
||||||
|
field: 'description',
|
||||||
|
comparator: 'contains',
|
||||||
|
value: 'payment',
|
||||||
|
},
|
||||||
|
],
|
||||||
|
assignCategory: '',
|
||||||
|
assignAccountId: '',
|
||||||
|
};
|
||||||
|
|
||||||
|
interface RuleFormValues {
|
||||||
|
name: string;
|
||||||
|
order: number;
|
||||||
|
applyIfAccountId: string;
|
||||||
|
applyIfTransactionType: string;
|
||||||
|
conditionsType: string;
|
||||||
|
conditions: Array<{
|
||||||
|
field: string;
|
||||||
|
comparator: string;
|
||||||
|
value: string;
|
||||||
|
}>;
|
||||||
|
assignCategory: string;
|
||||||
|
assignAccountId: string;
|
||||||
|
}
|
||||||
|
|
||||||
|
export function RuleFormContentForm() {
|
||||||
|
const validationSchema = CreateRuleFormSchema;
|
||||||
|
const handleSubmit = () => {};
|
||||||
|
|
||||||
|
return (
|
||||||
|
<Formik<RuleFormValues>
|
||||||
|
initialValues={initialValues}
|
||||||
|
validationSchema={validationSchema}
|
||||||
|
onSubmit={handleSubmit}
|
||||||
|
>
|
||||||
|
<Form>
|
||||||
|
<FFormGroup name={'name'} label={'Rule Name'}>
|
||||||
|
<FInputGroup name={'name'} />
|
||||||
|
</FFormGroup>
|
||||||
|
|
||||||
|
<FFormGroup name={'conditionsType'} label={'Apply to transactions are'}>
|
||||||
|
<FSelect name={'conditionsType'} items={[]} />
|
||||||
|
</FFormGroup>
|
||||||
|
|
||||||
|
<FFormGroup name={''} label={'Categorize the transactions when'}>
|
||||||
|
<FRadioGroup name={'conditionsType'}>
|
||||||
|
<Radio value={'and'} label={'All the following criteria matches'} />
|
||||||
|
<Radio
|
||||||
|
value={'or'}
|
||||||
|
label={'Any one of the following criteria matches'}
|
||||||
|
/>
|
||||||
|
</FRadioGroup>
|
||||||
|
</FFormGroup>
|
||||||
|
|
||||||
|
<RuleFormConditions />
|
||||||
|
|
||||||
|
<h3>Then Assign</h3>
|
||||||
|
|
||||||
|
<FFormGroup name={'assignCategory'} label={'Transaction type'}>
|
||||||
|
<FSelect name={'assignCategory'} items={[]} />
|
||||||
|
</FFormGroup>
|
||||||
|
|
||||||
|
<FFormGroup name={'assignAccountId'} label={'Account category'}>
|
||||||
|
<FSelect name={'assignAccountId'} items={[]} />
|
||||||
|
</FFormGroup>
|
||||||
|
|
||||||
|
<FFormGroup name={'assignRef'} label={'Reference'}>
|
||||||
|
<FInputGroup name={'assignRef'} />
|
||||||
|
</FFormGroup>
|
||||||
|
</Form>
|
||||||
|
</Formik>
|
||||||
|
);
|
||||||
|
}
|
||||||
|
|
||||||
|
function RuleFormConditions() {
|
||||||
|
const { values } = useFormikContext<RuleFormValues>();
|
||||||
|
|
||||||
|
const handleAddConditionBtnClick = () => {
|
||||||
|
values.conditions.push({
|
||||||
|
field: '',
|
||||||
|
comparator: '',
|
||||||
|
value: '',
|
||||||
|
});
|
||||||
|
};
|
||||||
|
|
||||||
|
return (
|
||||||
|
<Box>
|
||||||
|
{values?.conditions?.map((condition, index) => (
|
||||||
|
<Group>
|
||||||
|
<FFormGroup name={`conditions[${index}].field`} label={'Field'}>
|
||||||
|
<FSelect name={`conditions[${index}].field`} items={[]} />
|
||||||
|
</FFormGroup>
|
||||||
|
|
||||||
|
<FFormGroup
|
||||||
|
name={`conditions[${index}].comparator`}
|
||||||
|
label={'Condition'}
|
||||||
|
>
|
||||||
|
<FSelect name={`conditions[${index}].comparator`} items={[]} />
|
||||||
|
</FFormGroup>
|
||||||
|
|
||||||
|
<FFormGroup
|
||||||
|
name={`conditions[${index}].condition`}
|
||||||
|
label={'Condition'}
|
||||||
|
>
|
||||||
|
<FInputGroup name={`conditions[${index}].value`} />
|
||||||
|
</FFormGroup>
|
||||||
|
</Group>
|
||||||
|
))}
|
||||||
|
|
||||||
|
<Button type={'button'} onClick={handleAddConditionBtnClick}>
|
||||||
|
Add Condition
|
||||||
|
</Button>
|
||||||
|
</Box>
|
||||||
|
);
|
||||||
|
}
|
||||||
@@ -4,29 +4,30 @@ import { Dialog, DialogSuspense } from '@/components';
|
|||||||
import withDialogRedux from '@/components/DialogReduxConnect';
|
import withDialogRedux from '@/components/DialogReduxConnect';
|
||||||
import { compose } from '@/utils';
|
import { compose } from '@/utils';
|
||||||
|
|
||||||
const ConnectBankDialogBody = React.lazy(
|
const RuleFormContent = React.lazy(() => import('./RuleFormContent'));
|
||||||
() => import('./ConnectBankDialogBody'),
|
|
||||||
);
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Connect bank dialog.
|
* Payment mail dialog.
|
||||||
*/
|
*/
|
||||||
function ConnectBankDialogRoot({ dialogName, payload = {}, isOpen }) {
|
function RuleFormDialog({
|
||||||
|
dialogName,
|
||||||
|
payload: { bankRuleId = null },
|
||||||
|
isOpen,
|
||||||
|
}) {
|
||||||
return (
|
return (
|
||||||
<Dialog
|
<Dialog
|
||||||
name={dialogName}
|
name={dialogName}
|
||||||
title={'Securly connect your bank or credit card.'}
|
title={'New Bank Rule'}
|
||||||
isOpen={isOpen}
|
isOpen={isOpen}
|
||||||
canEscapeJeyClose={true}
|
canEscapeJeyClose={true}
|
||||||
autoFocus={true}
|
autoFocus={true}
|
||||||
|
style={{ width: 600 }}
|
||||||
>
|
>
|
||||||
<DialogSuspense>
|
<DialogSuspense>
|
||||||
<ConnectBankDialogBody dialogName={dialogName} />
|
<RuleFormContent dialogName={dialogName} bankRuleId={bankRuleId} />
|
||||||
</DialogSuspense>
|
</DialogSuspense>
|
||||||
</Dialog>
|
</Dialog>
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|
||||||
export const ConnectBankDialog = compose(withDialogRedux())(
|
export default compose(withDialogRedux())(RuleFormDialog);
|
||||||
ConnectBankDialogRoot,
|
|
||||||
);
|
|
||||||
@@ -0,0 +1,39 @@
|
|||||||
|
// @ts-nocheck
|
||||||
|
import * as R from 'ramda';
|
||||||
|
import { Button, Intent } from '@blueprintjs/core';
|
||||||
|
import { EmptyStatus, Can, FormattedMessage as T } from '@/components';
|
||||||
|
import { AbilitySubject, BankRuleAction } from '@/constants/abilityOption';
|
||||||
|
import withDialogActions from '@/containers/Dialog/withDialogActions';
|
||||||
|
|
||||||
|
function BankRulesLandingEmptyStateRoot({
|
||||||
|
// #withDialogAction
|
||||||
|
openDialog,
|
||||||
|
}) {
|
||||||
|
return (
|
||||||
|
<EmptyStatus
|
||||||
|
title={"The organization doesn't have taxes, yet!"}
|
||||||
|
description={
|
||||||
|
<p>
|
||||||
|
Setup the organization taxes to start tracking taxes on sales
|
||||||
|
transactions.
|
||||||
|
</p>
|
||||||
|
}
|
||||||
|
action={
|
||||||
|
<>
|
||||||
|
<Can I={BankRuleAction.Create} a={AbilitySubject.BankRule}>
|
||||||
|
<Button intent={Intent.PRIMARY} large={true} onClick={() => {}}>
|
||||||
|
New tax rate
|
||||||
|
</Button>
|
||||||
|
<Button intent={Intent.NONE} large={true}>
|
||||||
|
<T id={'learn_more'} />
|
||||||
|
</Button>
|
||||||
|
</Can>
|
||||||
|
</>
|
||||||
|
}
|
||||||
|
/>
|
||||||
|
);
|
||||||
|
}
|
||||||
|
|
||||||
|
export const BankRulesLandingEmptyState = R.compose(withDialogActions)(
|
||||||
|
BankRulesLandingEmptyStateRoot,
|
||||||
|
);
|
||||||
@@ -0,0 +1,20 @@
|
|||||||
|
// @ts-nocheck
|
||||||
|
import { DashboardPageContent } from '@/components';
|
||||||
|
import { RulesListBoot } from './RulesListBoot';
|
||||||
|
import { RulesListActionsBar } from './RulesListActionsBar';
|
||||||
|
import { BankRulesTable } from './RulesTable';
|
||||||
|
|
||||||
|
/**
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
export function RulesList() {
|
||||||
|
return (
|
||||||
|
<RulesListBoot>
|
||||||
|
<RulesListActionsBar />
|
||||||
|
|
||||||
|
<DashboardPageContent>
|
||||||
|
<BankRulesTable />
|
||||||
|
</DashboardPageContent>
|
||||||
|
</RulesListBoot>
|
||||||
|
);
|
||||||
|
}
|
||||||
@@ -0,0 +1,10 @@
|
|||||||
|
import { DashboardActionsBar } from '@/components';
|
||||||
|
import { NavbarGroup } from '@blueprintjs/core';
|
||||||
|
|
||||||
|
export function RulesListActionsBar() {
|
||||||
|
return (
|
||||||
|
<DashboardActionsBar>
|
||||||
|
<NavbarGroup></NavbarGroup>
|
||||||
|
</DashboardActionsBar>
|
||||||
|
);
|
||||||
|
}
|
||||||
@@ -0,0 +1,30 @@
|
|||||||
|
import React, { createContext } from 'react';
|
||||||
|
import { DialogContent } from '@/components';
|
||||||
|
|
||||||
|
interface RulesListBootValues {
|
||||||
|
rules: any;
|
||||||
|
isRulesLoading: boolean;
|
||||||
|
}
|
||||||
|
|
||||||
|
const RulesListBootContext = createContext<RulesListBootValues>(
|
||||||
|
{} as RulesListBootValues,
|
||||||
|
);
|
||||||
|
|
||||||
|
interface RulesListBootProps {
|
||||||
|
children: React.ReactNode;
|
||||||
|
}
|
||||||
|
|
||||||
|
function RulesListBoot({ ...props }: RulesListBootProps) {
|
||||||
|
const provider = {} as RulesListBootValues;
|
||||||
|
|
||||||
|
return (
|
||||||
|
<DialogContent isLoading={false}>
|
||||||
|
<RulesListBootContext.Provider value={provider} {...props} />
|
||||||
|
</DialogContent>
|
||||||
|
);
|
||||||
|
}
|
||||||
|
|
||||||
|
const useRulesListBoot = () =>
|
||||||
|
React.useContext<RulesListBootValues>(RulesListBootContext);
|
||||||
|
|
||||||
|
export { RulesListBoot, useRulesListBoot };
|
||||||
@@ -0,0 +1,81 @@
|
|||||||
|
// @ts-nocheck
|
||||||
|
import * as R from 'ramda';
|
||||||
|
import {
|
||||||
|
DataTable,
|
||||||
|
DashboardContentTable,
|
||||||
|
TableSkeletonHeader,
|
||||||
|
TableSkeletonRows,
|
||||||
|
} from '@/components';
|
||||||
|
|
||||||
|
import withAlertsActions from '@/containers/Alert/withAlertActions';
|
||||||
|
import withDrawerActions from '@/containers/Drawer/withDrawerActions';
|
||||||
|
import withDialogActions from '@/containers/Dialog/withDialogActions';
|
||||||
|
import withDashboardActions from '@/containers/Dashboard/withDashboardActions';
|
||||||
|
|
||||||
|
import { useBankRulesTableColumns } from './hooks';
|
||||||
|
import { BankRulesTableActionsMenu } from './_components';
|
||||||
|
import { BankRulesLandingEmptyState } from './BankRulesLandingEmptyState';
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Invoices datatable.
|
||||||
|
*/
|
||||||
|
function RulesTable({
|
||||||
|
// #withAlertsActions
|
||||||
|
openAlert,
|
||||||
|
|
||||||
|
// #withDrawerActions
|
||||||
|
openDrawer,
|
||||||
|
|
||||||
|
// #withDialogAction
|
||||||
|
openDialog,
|
||||||
|
}) {
|
||||||
|
// Invoices table columns.
|
||||||
|
const columns = useBankRulesTableColumns();
|
||||||
|
|
||||||
|
// Handle edit bank rule.
|
||||||
|
const handleDeleteBankRule = ({ id }) => {};
|
||||||
|
|
||||||
|
// Handle delete bank rule.
|
||||||
|
const handleEditBankRule = () => {};
|
||||||
|
|
||||||
|
// Display invoice empty status instead of the table.
|
||||||
|
if (isEmptyStatus) {
|
||||||
|
return <BankRulesLandingEmptyState />;
|
||||||
|
}
|
||||||
|
|
||||||
|
return (
|
||||||
|
<DashboardContentTable>
|
||||||
|
<DataTable
|
||||||
|
columns={columns}
|
||||||
|
data={[]}
|
||||||
|
loading={false}
|
||||||
|
headerLoading={false}
|
||||||
|
progressBarLoading={false}
|
||||||
|
manualSortBy={false}
|
||||||
|
selectionColumn={false}
|
||||||
|
noInitialFetch={true}
|
||||||
|
sticky={true}
|
||||||
|
pagination={false}
|
||||||
|
manualPagination={false}
|
||||||
|
autoResetSortBy={false}
|
||||||
|
autoResetPage={false}
|
||||||
|
TableLoadingRenderer={TableSkeletonRows}
|
||||||
|
TableHeaderSkeletonRenderer={TableSkeletonHeader}
|
||||||
|
ContextMenu={BankRulesTableActionsMenu}
|
||||||
|
onCellClick={handleCellClick}
|
||||||
|
size={'medium'}
|
||||||
|
payload={{
|
||||||
|
onDelete: handleDeleteTaxRate,
|
||||||
|
onEdit: handleEditTaxRate,
|
||||||
|
}}
|
||||||
|
/>
|
||||||
|
</DashboardContentTable>
|
||||||
|
);
|
||||||
|
}
|
||||||
|
|
||||||
|
export const BankRulesTable = R.compose(
|
||||||
|
withDashboardActions,
|
||||||
|
withAlertsActions,
|
||||||
|
withDrawerActions,
|
||||||
|
withDialogActions,
|
||||||
|
)(RulesTable);
|
||||||
@@ -0,0 +1,38 @@
|
|||||||
|
// @ts-nocheck
|
||||||
|
import React from 'react';
|
||||||
|
import { Intent, Menu, MenuDivider, MenuItem } from '@blueprintjs/core';
|
||||||
|
import { Can, Icon } from '@/components';
|
||||||
|
import { AbilitySubject, BankRuleAction } from '@/constants/abilityOption';
|
||||||
|
import { safeCallback } from '@/utils';
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Tax rates table actions menu.
|
||||||
|
* @returns {JSX.Element}
|
||||||
|
*/
|
||||||
|
export function BankRulesTableActionsMenu({
|
||||||
|
payload: { onEdit, onDelete },
|
||||||
|
row: { original },
|
||||||
|
}) {
|
||||||
|
return (
|
||||||
|
<Menu>
|
||||||
|
<Can I={BankRuleAction.Edit} a={AbilitySubject.BankRule}>
|
||||||
|
<MenuDivider />
|
||||||
|
<MenuItem
|
||||||
|
icon={<Icon icon="pen-18" />}
|
||||||
|
text={'Edit Rule'}
|
||||||
|
onClick={safeCallback(onEdit, original)}
|
||||||
|
/>
|
||||||
|
</Can>
|
||||||
|
<MenuDivider />
|
||||||
|
<Can I={BankRuleAction.Delete} a={AbilitySubject.BankRule}>
|
||||||
|
<MenuDivider />
|
||||||
|
<MenuItem
|
||||||
|
text={'Delete Rule'}
|
||||||
|
intent={Intent.DANGER}
|
||||||
|
onClick={safeCallback(onDelete, original)}
|
||||||
|
icon={<Icon icon="trash-16" iconSize={16} />}
|
||||||
|
/>
|
||||||
|
</Can>
|
||||||
|
</Menu>
|
||||||
|
);
|
||||||
|
}
|
||||||
@@ -0,0 +1,3 @@
|
|||||||
|
export const useBankRulesTableColumns = () => {
|
||||||
|
return [];
|
||||||
|
};
|
||||||
@@ -15,6 +15,7 @@ import {
|
|||||||
FeatureCan,
|
FeatureCan,
|
||||||
} from '@/components';
|
} from '@/components';
|
||||||
import { useRefreshCashflowAccounts } from '@/hooks/query';
|
import { useRefreshCashflowAccounts } from '@/hooks/query';
|
||||||
|
import { useOpenPlaidConnect } from '@/hooks/utils/useOpenPlaidConnect';
|
||||||
import { CashflowAction, AbilitySubject } from '@/constants/abilityOption';
|
import { CashflowAction, AbilitySubject } from '@/constants/abilityOption';
|
||||||
|
|
||||||
import withDialogActions from '@/containers/Dialog/withDialogActions';
|
import withDialogActions from '@/containers/Dialog/withDialogActions';
|
||||||
@@ -39,6 +40,9 @@ function CashFlowAccountsActionsBar({
|
|||||||
}) {
|
}) {
|
||||||
const { refresh } = useRefreshCashflowAccounts();
|
const { refresh } = useRefreshCashflowAccounts();
|
||||||
|
|
||||||
|
// Opens the Plaid popup.
|
||||||
|
const { openPlaidAsync, isPlaidLoading } = useOpenPlaidConnect();
|
||||||
|
|
||||||
// Handle refresh button click.
|
// Handle refresh button click.
|
||||||
const handleRefreshBtnClick = () => {
|
const handleRefreshBtnClick = () => {
|
||||||
refresh();
|
refresh();
|
||||||
@@ -64,7 +68,7 @@ function CashFlowAccountsActionsBar({
|
|||||||
};
|
};
|
||||||
// Handle connect button click.
|
// Handle connect button click.
|
||||||
const handleConnectToBank = () => {
|
const handleConnectToBank = () => {
|
||||||
openDialog(DialogsName.ConnectBankCreditCard);
|
openPlaidAsync();
|
||||||
};
|
};
|
||||||
|
|
||||||
return (
|
return (
|
||||||
@@ -116,6 +120,7 @@ function CashFlowAccountsActionsBar({
|
|||||||
className={Classes.MINIMAL}
|
className={Classes.MINIMAL}
|
||||||
text={'Connect to Bank / Credit Card'}
|
text={'Connect to Bank / Credit Card'}
|
||||||
onClick={handleConnectToBank}
|
onClick={handleConnectToBank}
|
||||||
|
disabled={isPlaidLoading}
|
||||||
/>
|
/>
|
||||||
<NavbarDivider />
|
<NavbarDivider />
|
||||||
</FeatureCan>
|
</FeatureCan>
|
||||||
|
|||||||
@@ -1,5 +1,6 @@
|
|||||||
// @ts-nocheck
|
// @ts-nocheck
|
||||||
import React from 'react';
|
import React, { useMemo } from 'react';
|
||||||
|
import { first } from 'lodash';
|
||||||
import { DrawerHeaderContent, DrawerLoading } from '@/components';
|
import { DrawerHeaderContent, DrawerLoading } from '@/components';
|
||||||
import { DRAWERS } from '@/constants/drawers';
|
import { DRAWERS } from '@/constants/drawers';
|
||||||
import {
|
import {
|
||||||
@@ -34,6 +35,12 @@ function CategorizeTransactionBoot({ uncategorizedTransactionId, ...props }) {
|
|||||||
isLoading: isUncategorizedTransactionLoading,
|
isLoading: isUncategorizedTransactionLoading,
|
||||||
} = useUncategorizedTransaction(uncategorizedTransactionId);
|
} = useUncategorizedTransaction(uncategorizedTransactionId);
|
||||||
|
|
||||||
|
// Retrieves the primary branch.
|
||||||
|
const primaryBranch = useMemo(
|
||||||
|
() => branches?.find((b) => b.primary) || first(branches),
|
||||||
|
[branches],
|
||||||
|
);
|
||||||
|
|
||||||
const provider = {
|
const provider = {
|
||||||
uncategorizedTransactionId,
|
uncategorizedTransactionId,
|
||||||
uncategorizedTransaction,
|
uncategorizedTransaction,
|
||||||
@@ -42,6 +49,7 @@ function CategorizeTransactionBoot({ uncategorizedTransactionId, ...props }) {
|
|||||||
accounts,
|
accounts,
|
||||||
isBranchesLoading,
|
isBranchesLoading,
|
||||||
isAccountsLoading,
|
isAccountsLoading,
|
||||||
|
primaryBranch,
|
||||||
};
|
};
|
||||||
const isLoading =
|
const isLoading =
|
||||||
isBranchesLoading || isUncategorizedTransactionLoading || isAccountsLoading;
|
isBranchesLoading || isUncategorizedTransactionLoading || isAccountsLoading;
|
||||||
|
|||||||
@@ -0,0 +1,22 @@
|
|||||||
|
// @ts-nocheck
|
||||||
|
import { FFormGroup, FeatureCan } from '@/components';
|
||||||
|
import { useCategorizeTransactionBoot } from './CategorizeTransactionBoot';
|
||||||
|
import { Features } from '@/constants';
|
||||||
|
import { BranchSuggestField } from '@/components/Branches/BranchSuggestField_';
|
||||||
|
|
||||||
|
export function CategorizeTransactionBranchField() {
|
||||||
|
const { branches } = useCategorizeTransactionBoot();
|
||||||
|
|
||||||
|
return (
|
||||||
|
<FFormGroup name={'branchId'} label={'Branch'} fastField inline>
|
||||||
|
<FeatureCan feature={Features.Branches}>
|
||||||
|
<BranchSuggestField
|
||||||
|
name={'branchId'}
|
||||||
|
items={branches}
|
||||||
|
popoverProps={{ minimal: true }}
|
||||||
|
fill
|
||||||
|
/>
|
||||||
|
</FeatureCan>
|
||||||
|
</FFormGroup>
|
||||||
|
);
|
||||||
|
}
|
||||||
@@ -24,8 +24,11 @@ function CategorizeTransactionFormRoot({
|
|||||||
// #withDrawerActions
|
// #withDrawerActions
|
||||||
closeDrawer,
|
closeDrawer,
|
||||||
}) {
|
}) {
|
||||||
const { uncategorizedTransactionId, uncategorizedTransaction } =
|
const {
|
||||||
useCategorizeTransactionBoot();
|
uncategorizedTransactionId,
|
||||||
|
uncategorizedTransaction,
|
||||||
|
primaryBranch,
|
||||||
|
} = useCategorizeTransactionBoot();
|
||||||
const { mutateAsync: categorizeTransaction } = useCategorizeTransaction();
|
const { mutateAsync: categorizeTransaction } = useCategorizeTransaction();
|
||||||
|
|
||||||
// Callbacks handles form submit.
|
// Callbacks handles form submit.
|
||||||
@@ -37,18 +40,28 @@ function CategorizeTransactionFormRoot({
|
|||||||
.then(() => {
|
.then(() => {
|
||||||
setSubmitting(false);
|
setSubmitting(false);
|
||||||
closeDrawer(DRAWERS.CATEGORIZE_TRANSACTION);
|
closeDrawer(DRAWERS.CATEGORIZE_TRANSACTION);
|
||||||
|
|
||||||
AppToaster.show({
|
AppToaster.show({
|
||||||
message: 'The uncategorized transaction has been categorized.',
|
message: 'The uncategorized transaction has been categorized.',
|
||||||
intent: Intent.SUCCESS,
|
intent: Intent.SUCCESS,
|
||||||
});
|
});
|
||||||
})
|
})
|
||||||
.catch(() => {
|
.catch((err) => {
|
||||||
setSubmitting(false);
|
setSubmitting(false);
|
||||||
AppToaster.show({
|
if (
|
||||||
message: 'Something went wrong!',
|
err.response.data?.errors?.some(
|
||||||
intent: Intent.DANGER,
|
(e) => e.type === 'BRANCH_ID_REQUIRED',
|
||||||
});
|
)
|
||||||
|
) {
|
||||||
|
setErrors({
|
||||||
|
branchId: 'The branch is required.',
|
||||||
|
});
|
||||||
|
} else {
|
||||||
|
AppToaster.show({
|
||||||
|
message: 'Something went wrong!',
|
||||||
|
intent: Intent.DANGER,
|
||||||
|
});
|
||||||
|
}
|
||||||
});
|
});
|
||||||
};
|
};
|
||||||
// Form initial values in create and edit mode.
|
// Form initial values in create and edit mode.
|
||||||
@@ -60,6 +73,9 @@ function CategorizeTransactionFormRoot({
|
|||||||
* as well.
|
* as well.
|
||||||
*/
|
*/
|
||||||
...transformToCategorizeForm(uncategorizedTransaction),
|
...transformToCategorizeForm(uncategorizedTransaction),
|
||||||
|
|
||||||
|
/** Assign the primary branch id as default value. */
|
||||||
|
branchId: primaryBranch?.id || null,
|
||||||
};
|
};
|
||||||
|
|
||||||
return (
|
return (
|
||||||
|
|||||||
@@ -8,6 +8,7 @@ import {
|
|||||||
FTextArea,
|
FTextArea,
|
||||||
} from '@/components';
|
} from '@/components';
|
||||||
import { useCategorizeTransactionBoot } from '../CategorizeTransactionBoot';
|
import { useCategorizeTransactionBoot } from '../CategorizeTransactionBoot';
|
||||||
|
import { CategorizeTransactionBranchField } from '../CategorizeTransactionBranchField';
|
||||||
|
|
||||||
export default function CategorizeTransactionOtherIncome() {
|
export default function CategorizeTransactionOtherIncome() {
|
||||||
const { accounts } = useCategorizeTransactionBoot();
|
const { accounts } = useCategorizeTransactionBoot();
|
||||||
@@ -68,6 +69,8 @@ export default function CategorizeTransactionOtherIncome() {
|
|||||||
fill={true}
|
fill={true}
|
||||||
/>
|
/>
|
||||||
</FFormGroup>
|
</FFormGroup>
|
||||||
|
|
||||||
|
<CategorizeTransactionBranchField />
|
||||||
</>
|
</>
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -8,6 +8,7 @@ import {
|
|||||||
FTextArea,
|
FTextArea,
|
||||||
} from '@/components';
|
} from '@/components';
|
||||||
import { useCategorizeTransactionBoot } from '../CategorizeTransactionBoot';
|
import { useCategorizeTransactionBoot } from '../CategorizeTransactionBoot';
|
||||||
|
import { CategorizeTransactionBranchField } from '../CategorizeTransactionBranchField';
|
||||||
|
|
||||||
export default function CategorizeTransactionOwnerContribution() {
|
export default function CategorizeTransactionOwnerContribution() {
|
||||||
const { accounts } = useCategorizeTransactionBoot();
|
const { accounts } = useCategorizeTransactionBoot();
|
||||||
@@ -63,6 +64,8 @@ export default function CategorizeTransactionOwnerContribution() {
|
|||||||
<FFormGroup name={'description'} label={'Description'} fastField inline>
|
<FFormGroup name={'description'} label={'Description'} fastField inline>
|
||||||
<FTextArea name={'description'} growVertically large fill />
|
<FTextArea name={'description'} growVertically large fill />
|
||||||
</FFormGroup>
|
</FFormGroup>
|
||||||
|
|
||||||
|
<CategorizeTransactionBranchField />
|
||||||
</>
|
</>
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -8,6 +8,7 @@ import {
|
|||||||
FTextArea,
|
FTextArea,
|
||||||
} from '@/components';
|
} from '@/components';
|
||||||
import { useCategorizeTransactionBoot } from '../CategorizeTransactionBoot';
|
import { useCategorizeTransactionBoot } from '../CategorizeTransactionBoot';
|
||||||
|
import { CategorizeTransactionBranchField } from '../CategorizeTransactionBranchField';
|
||||||
|
|
||||||
export default function CategorizeTransactionTransferFrom() {
|
export default function CategorizeTransactionTransferFrom() {
|
||||||
const { accounts } = useCategorizeTransactionBoot();
|
const { accounts } = useCategorizeTransactionBoot();
|
||||||
@@ -47,7 +48,7 @@ export default function CategorizeTransactionTransferFrom() {
|
|||||||
inline
|
inline
|
||||||
>
|
>
|
||||||
<AccountsSelect
|
<AccountsSelect
|
||||||
name={'to_account_id'}
|
name={'creditAccountId'}
|
||||||
items={accounts}
|
items={accounts}
|
||||||
filterByRootTypes={['asset']}
|
filterByRootTypes={['asset']}
|
||||||
fastField
|
fastField
|
||||||
@@ -68,6 +69,8 @@ export default function CategorizeTransactionTransferFrom() {
|
|||||||
fill={true}
|
fill={true}
|
||||||
/>
|
/>
|
||||||
</FFormGroup>
|
</FFormGroup>
|
||||||
|
|
||||||
|
<CategorizeTransactionBranchField />
|
||||||
</>
|
</>
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -8,6 +8,7 @@ import {
|
|||||||
FTextArea,
|
FTextArea,
|
||||||
} from '@/components';
|
} from '@/components';
|
||||||
import { useCategorizeTransactionBoot } from '../CategorizeTransactionBoot';
|
import { useCategorizeTransactionBoot } from '../CategorizeTransactionBoot';
|
||||||
|
import { CategorizeTransactionBranchField } from '../CategorizeTransactionBranchField';
|
||||||
|
|
||||||
export default function CategorizeTransactionOtherExpense() {
|
export default function CategorizeTransactionOtherExpense() {
|
||||||
const { accounts } = useCategorizeTransactionBoot();
|
const { accounts } = useCategorizeTransactionBoot();
|
||||||
@@ -68,6 +69,8 @@ export default function CategorizeTransactionOtherExpense() {
|
|||||||
fill={true}
|
fill={true}
|
||||||
/>
|
/>
|
||||||
</FFormGroup>
|
</FFormGroup>
|
||||||
|
|
||||||
|
<CategorizeTransactionBranchField />
|
||||||
</>
|
</>
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -8,6 +8,7 @@ import {
|
|||||||
FTextArea,
|
FTextArea,
|
||||||
} from '@/components';
|
} from '@/components';
|
||||||
import { useCategorizeTransactionBoot } from '../CategorizeTransactionBoot';
|
import { useCategorizeTransactionBoot } from '../CategorizeTransactionBoot';
|
||||||
|
import { CategorizeTransactionBranchField } from '../CategorizeTransactionBranchField';
|
||||||
|
|
||||||
export default function CategorizeTransactionOwnerDrawings() {
|
export default function CategorizeTransactionOwnerDrawings() {
|
||||||
const { accounts } = useCategorizeTransactionBoot();
|
const { accounts } = useCategorizeTransactionBoot();
|
||||||
@@ -68,6 +69,8 @@ export default function CategorizeTransactionOwnerDrawings() {
|
|||||||
fill={true}
|
fill={true}
|
||||||
/>
|
/>
|
||||||
</FFormGroup>
|
</FFormGroup>
|
||||||
|
|
||||||
|
<CategorizeTransactionBranchField />
|
||||||
</>
|
</>
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -8,6 +8,7 @@ import {
|
|||||||
FTextArea,
|
FTextArea,
|
||||||
} from '@/components';
|
} from '@/components';
|
||||||
import { useCategorizeTransactionBoot } from '../CategorizeTransactionBoot';
|
import { useCategorizeTransactionBoot } from '../CategorizeTransactionBoot';
|
||||||
|
import { CategorizeTransactionBranchField } from '../CategorizeTransactionBranchField';
|
||||||
|
|
||||||
export default function CategorizeTransactionToAccount() {
|
export default function CategorizeTransactionToAccount() {
|
||||||
const { accounts } = useCategorizeTransactionBoot();
|
const { accounts } = useCategorizeTransactionBoot();
|
||||||
@@ -49,7 +50,7 @@ export default function CategorizeTransactionToAccount() {
|
|||||||
<AccountsSelect
|
<AccountsSelect
|
||||||
name={'creditAccountId'}
|
name={'creditAccountId'}
|
||||||
items={accounts}
|
items={accounts}
|
||||||
filterByRootTypes={['assset']}
|
filterByRootTypes={['asset']}
|
||||||
fastField
|
fastField
|
||||||
fill
|
fill
|
||||||
allowCreate
|
allowCreate
|
||||||
@@ -68,6 +69,8 @@ export default function CategorizeTransactionToAccount() {
|
|||||||
fill={true}
|
fill={true}
|
||||||
/>
|
/>
|
||||||
</FFormGroup>
|
</FFormGroup>
|
||||||
|
|
||||||
|
<CategorizeTransactionBranchField />
|
||||||
</>
|
</>
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -11,6 +11,7 @@ export const defaultInitialValues = {
|
|||||||
transactionType: '',
|
transactionType: '',
|
||||||
referenceNo: '',
|
referenceNo: '',
|
||||||
description: '',
|
description: '',
|
||||||
|
branchId: '',
|
||||||
};
|
};
|
||||||
|
|
||||||
export const transformToCategorizeForm = (uncategorizedTransaction) => {
|
export const transformToCategorizeForm = (uncategorizedTransaction) => {
|
||||||
|
|||||||
@@ -1,61 +0,0 @@
|
|||||||
// @ts-nocheck
|
|
||||||
import * as R from 'ramda';
|
|
||||||
import { Form, Formik, FormikHelpers } from 'formik';
|
|
||||||
import classNames from 'classnames';
|
|
||||||
import { ConnectBankDialogContent } from './ConnectBankDialogContent';
|
|
||||||
import { useGetPlaidLinkToken } from '@/hooks/query';
|
|
||||||
import { useSetBankingPlaidToken } from '@/hooks/state/banking';
|
|
||||||
import withDialogActions from '@/containers/Dialog/withDialogActions';
|
|
||||||
import { CLASSES } from '@/constants';
|
|
||||||
import { AppToaster } from '@/components';
|
|
||||||
import { Intent } from '@blueprintjs/core';
|
|
||||||
import { DialogsName } from '@/constants/dialogs';
|
|
||||||
|
|
||||||
const initialValues: ConnectBankDialogForm = {
|
|
||||||
serviceProvider: 'plaid',
|
|
||||||
};
|
|
||||||
|
|
||||||
interface ConnectBankDialogForm {
|
|
||||||
serviceProvider: 'plaid';
|
|
||||||
}
|
|
||||||
|
|
||||||
function ConnectBankDialogBodyRoot({
|
|
||||||
// #withDialogActions
|
|
||||||
closeDialog,
|
|
||||||
}) {
|
|
||||||
const { mutateAsync: getPlaidLinkToken } = useGetPlaidLinkToken();
|
|
||||||
const setPlaidId = useSetBankingPlaidToken();
|
|
||||||
|
|
||||||
// Handles the form submitting.
|
|
||||||
const handleSubmit = (
|
|
||||||
values: ConnectBankDialogForm,
|
|
||||||
{ setSubmitting }: FormikHelpers<ConnectBankDialogForm>,
|
|
||||||
) => {
|
|
||||||
setSubmitting(true);
|
|
||||||
getPlaidLinkToken()
|
|
||||||
.then((res) => {
|
|
||||||
setSubmitting(false);
|
|
||||||
closeDialog(DialogsName.ConnectBankCreditCard);
|
|
||||||
setPlaidId(res.data.link_token);
|
|
||||||
})
|
|
||||||
.catch(() => {
|
|
||||||
setSubmitting(false);
|
|
||||||
AppToaster.show({
|
|
||||||
message: 'Something went wrong.',
|
|
||||||
intent: Intent.DANGER,
|
|
||||||
});
|
|
||||||
});
|
|
||||||
};
|
|
||||||
|
|
||||||
return (
|
|
||||||
<div className={classNames(CLASSES.DIALOG_BODY)}>
|
|
||||||
<Formik initialValues={initialValues} onSubmit={handleSubmit}>
|
|
||||||
<Form>
|
|
||||||
<ConnectBankDialogContent />
|
|
||||||
</Form>
|
|
||||||
</Formik>
|
|
||||||
</div>
|
|
||||||
);
|
|
||||||
}
|
|
||||||
|
|
||||||
export default R.compose(withDialogActions)(ConnectBankDialogBodyRoot);
|
|
||||||
@@ -1,48 +0,0 @@
|
|||||||
// @ts-nocheck
|
|
||||||
import styled from 'styled-components';
|
|
||||||
import { Stack } from '@/components';
|
|
||||||
import { TellerIcon } from '../Icons/TellerIcon';
|
|
||||||
import { YodleeIcon } from '../Icons/YodleeIcon';
|
|
||||||
import { PlaidIcon } from '../Icons/PlaidIcon';
|
|
||||||
import { BankServiceCard } from './ConnectBankServiceCard';
|
|
||||||
|
|
||||||
const TopDesc = styled('p')`
|
|
||||||
margin-bottom: 20px;
|
|
||||||
color: #5f6b7c;
|
|
||||||
`;
|
|
||||||
|
|
||||||
export function ConnectBankDialogContent() {
|
|
||||||
return (
|
|
||||||
<div>
|
|
||||||
<TopDesc>
|
|
||||||
Connect your bank accounts and fetch the bank transactions using
|
|
||||||
one of our supported third-party service providers.
|
|
||||||
</TopDesc>
|
|
||||||
|
|
||||||
<Stack>
|
|
||||||
<BankServiceCard
|
|
||||||
title={'Plaid (US, UK & Canada)'}
|
|
||||||
icon={<PlaidIcon />}
|
|
||||||
>
|
|
||||||
Plaid gives the connection to 12,000 financial institutions across US, UK and Canada.
|
|
||||||
</BankServiceCard>
|
|
||||||
|
|
||||||
<BankServiceCard
|
|
||||||
title={'Teller (US) — Soon'}
|
|
||||||
icon={<TellerIcon />}
|
|
||||||
disabled
|
|
||||||
>
|
|
||||||
Connect instantly with more than 5,000 financial institutions across US.
|
|
||||||
</BankServiceCard>
|
|
||||||
|
|
||||||
<BankServiceCard
|
|
||||||
title={'Yodlee (Global) — Soon'}
|
|
||||||
icon={<YodleeIcon />}
|
|
||||||
disabled
|
|
||||||
>
|
|
||||||
Connect instantly with a global network of financial institutions.
|
|
||||||
</BankServiceCard>
|
|
||||||
</Stack>
|
|
||||||
</div>
|
|
||||||
);
|
|
||||||
}
|
|
||||||
Some files were not shown because too many files have changed in this diff Show More
Reference in New Issue
Block a user