mirror of
https://github.com/bigcapitalhq/bigcapital.git
synced 2026-02-22 15:50:32 +00:00
Compare commits
1 Commits
v0.24.3
...
20260129-2
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
f395cce710 |
@@ -35,4 +35,4 @@ WORKDIR /app/packages/server
|
|||||||
RUN git clone https://github.com/vishnubob/wait-for-it.git
|
RUN git clone https://github.com/vishnubob/wait-for-it.git
|
||||||
|
|
||||||
# Once we listen the mysql port run the migration task.
|
# Once we listen the mysql port run the migration task.
|
||||||
CMD ./wait-for-it/wait-for-it.sh mysql:3306 -- sh -c "node dist/cli.js system:migrate:latest && node dist/cli.js tenants:migrate:latest"
|
CMD ./wait-for-it/wait-for-it.sh mysql:3306 -- sh -c "pnpm run system:migrate:latest && pnpm run tenants:migrate:latest"
|
||||||
|
|||||||
@@ -75,9 +75,6 @@ COPY --from=builder --chown=nodejs:nodejs /app/packages/server/src/i18n ./packag
|
|||||||
COPY --from=builder --chown=nodejs:nodejs /app/packages/server/public ./packages/server/public
|
COPY --from=builder --chown=nodejs:nodejs /app/packages/server/public ./packages/server/public
|
||||||
COPY --from=builder --chown=nodejs:nodejs /app/packages/server/static ./packages/server/static
|
COPY --from=builder --chown=nodejs:nodejs /app/packages/server/static ./packages/server/static
|
||||||
|
|
||||||
# Copy database migration files (needed for running migrations)
|
|
||||||
COPY --from=builder --chown=nodejs:nodejs /app/packages/server/src/database ./packages/server/src/database
|
|
||||||
|
|
||||||
# Copy built shared packages (dist folders and package.json for module resolution)
|
# Copy built shared packages (dist folders and package.json for module resolution)
|
||||||
COPY --from=builder --chown=nodejs:nodejs /app/shared/bigcapital-utils/dist ./shared/bigcapital-utils/dist
|
COPY --from=builder --chown=nodejs:nodejs /app/shared/bigcapital-utils/dist ./shared/bigcapital-utils/dist
|
||||||
COPY --from=builder --chown=nodejs:nodejs /app/shared/pdf-templates/dist ./shared/pdf-templates/dist
|
COPY --from=builder --chown=nodejs:nodejs /app/shared/pdf-templates/dist ./shared/pdf-templates/dist
|
||||||
|
|||||||
@@ -2,23 +2,10 @@
|
|||||||
"$schema": "https://json.schemastore.org/nest-cli",
|
"$schema": "https://json.schemastore.org/nest-cli",
|
||||||
"collection": "@nestjs/schematics",
|
"collection": "@nestjs/schematics",
|
||||||
"sourceRoot": "src",
|
"sourceRoot": "src",
|
||||||
"entryFile": "main",
|
|
||||||
"compilerOptions": {
|
"compilerOptions": {
|
||||||
"deleteOutDir": true,
|
"deleteOutDir": true,
|
||||||
"assets": [
|
"assets": [
|
||||||
{ "include": "i18n/**/*", "watchAssets": true },
|
{ "include": "i18n/**/*", "watchAssets": true }
|
||||||
{ "include": "database/**/*", "exclude": "**/*.ts", "watchAssets": true }
|
|
||||||
]
|
]
|
||||||
},
|
|
||||||
"projects": {
|
|
||||||
"cli": {
|
|
||||||
"type": "application",
|
|
||||||
"root": "src",
|
|
||||||
"entryFile": "cli",
|
|
||||||
"sourceRoot": "src",
|
|
||||||
"compilerOptions": {
|
|
||||||
"tsConfigPath": "tsconfig.json"
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -1,6 +1,10 @@
|
|||||||
import { Processor, WorkerHost } from '@nestjs/bullmq';
|
import { Processor, WorkerHost } from '@nestjs/bullmq';
|
||||||
import { Scope } from '@nestjs/common';
|
import { Scope } from '@nestjs/common';
|
||||||
import { SendResetPasswordMailQueue } from '../Auth.constants';
|
import {
|
||||||
|
SendResetPasswordMailJob,
|
||||||
|
SendResetPasswordMailQueue,
|
||||||
|
} from '../Auth.constants';
|
||||||
|
import { Process } from '@nestjs/bull';
|
||||||
import { Job } from 'bullmq';
|
import { Job } from 'bullmq';
|
||||||
import { AuthenticationMailMesssages } from '../AuthMailMessages.esrvice';
|
import { AuthenticationMailMesssages } from '../AuthMailMessages.esrvice';
|
||||||
import { MailTransporter } from '@/modules/Mail/MailTransporter.service';
|
import { MailTransporter } from '@/modules/Mail/MailTransporter.service';
|
||||||
@@ -19,6 +23,7 @@ export class SendResetPasswordMailProcessor extends WorkerHost {
|
|||||||
super();
|
super();
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@Process(SendResetPasswordMailJob)
|
||||||
async process(job: Job<SendResetPasswordMailJobPayload>) {
|
async process(job: Job<SendResetPasswordMailJobPayload>) {
|
||||||
try {
|
try {
|
||||||
await this.authMailMesssages.sendResetPasswordMail(
|
await this.authMailMesssages.sendResetPasswordMail(
|
||||||
|
|||||||
@@ -1,7 +1,11 @@
|
|||||||
import { Scope } from '@nestjs/common';
|
import { Scope } from '@nestjs/common';
|
||||||
import { Job } from 'bullmq';
|
import { Job } from 'bullmq';
|
||||||
|
import { Process } from '@nestjs/bull';
|
||||||
import { Processor, WorkerHost } from '@nestjs/bullmq';
|
import { Processor, WorkerHost } from '@nestjs/bullmq';
|
||||||
import { SendSignupVerificationMailQueue } from '../Auth.constants';
|
import {
|
||||||
|
SendSignupVerificationMailJob,
|
||||||
|
SendSignupVerificationMailQueue,
|
||||||
|
} from '../Auth.constants';
|
||||||
import { MailTransporter } from '@/modules/Mail/MailTransporter.service';
|
import { MailTransporter } from '@/modules/Mail/MailTransporter.service';
|
||||||
import { AuthenticationMailMesssages } from '../AuthMailMessages.esrvice';
|
import { AuthenticationMailMesssages } from '../AuthMailMessages.esrvice';
|
||||||
|
|
||||||
@@ -17,6 +21,7 @@ export class SendSignupVerificationMailProcessor extends WorkerHost {
|
|||||||
super();
|
super();
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@Process(SendSignupVerificationMailJob)
|
||||||
async process(job: Job<SendSignupVerificationMailJobPayload>) {
|
async process(job: Job<SendSignupVerificationMailJobPayload>) {
|
||||||
try {
|
try {
|
||||||
await this.authMailMesssages.sendSignupVerificationMail(
|
await this.authMailMesssages.sendSignupVerificationMail(
|
||||||
|
|||||||
@@ -1,9 +1,11 @@
|
|||||||
|
import { Process } from '@nestjs/bull';
|
||||||
import { UseCls } from 'nestjs-cls';
|
import { UseCls } from 'nestjs-cls';
|
||||||
import { Processor, WorkerHost } from '@nestjs/bullmq';
|
import { Processor, WorkerHost } from '@nestjs/bullmq';
|
||||||
import { Scope } from '@nestjs/common';
|
import { Scope } from '@nestjs/common';
|
||||||
import { Job } from 'bullmq';
|
import { Job } from 'bullmq';
|
||||||
import {
|
import {
|
||||||
PlaidFetchTransitonsEventPayload,
|
PlaidFetchTransitonsEventPayload,
|
||||||
|
UpdateBankingPlaidTransitionsJob,
|
||||||
UpdateBankingPlaidTransitionsQueueJob,
|
UpdateBankingPlaidTransitionsQueueJob,
|
||||||
} from '../types/BankingPlaid.types';
|
} from '../types/BankingPlaid.types';
|
||||||
import { PlaidUpdateTransactions } from '../command/PlaidUpdateTransactions';
|
import { PlaidUpdateTransactions } from '../command/PlaidUpdateTransactions';
|
||||||
@@ -26,6 +28,7 @@ export class PlaidFetchTransactionsProcessor extends WorkerHost {
|
|||||||
/**
|
/**
|
||||||
* Triggers the function.
|
* Triggers the function.
|
||||||
*/
|
*/
|
||||||
|
@Process(UpdateBankingPlaidTransitionsJob)
|
||||||
@UseCls()
|
@UseCls()
|
||||||
async process(job: Job<PlaidFetchTransitonsEventPayload>) {
|
async process(job: Job<PlaidFetchTransitonsEventPayload>) {
|
||||||
const { plaidItemId } = job.data;
|
const { plaidItemId } = job.data;
|
||||||
|
|||||||
@@ -7,6 +7,7 @@ import {
|
|||||||
RecognizeUncategorizedTransactionsJobPayload,
|
RecognizeUncategorizedTransactionsJobPayload,
|
||||||
RecognizeUncategorizedTransactionsQueue,
|
RecognizeUncategorizedTransactionsQueue,
|
||||||
} from '../_types';
|
} from '../_types';
|
||||||
|
import { Process } from '@nestjs/bull';
|
||||||
|
|
||||||
@Processor({
|
@Processor({
|
||||||
name: RecognizeUncategorizedTransactionsQueue,
|
name: RecognizeUncategorizedTransactionsQueue,
|
||||||
@@ -27,6 +28,7 @@ export class RegonizeTransactionsPrcessor extends WorkerHost {
|
|||||||
/**
|
/**
|
||||||
* Triggers sending invoice mail.
|
* Triggers sending invoice mail.
|
||||||
*/
|
*/
|
||||||
|
@Process(RecognizeUncategorizedTransactionsQueue)
|
||||||
@UseCls()
|
@UseCls()
|
||||||
async process(job: Job<RecognizeUncategorizedTransactionsJobPayload>) {
|
async process(job: Job<RecognizeUncategorizedTransactionsJobPayload>) {
|
||||||
const { ruleId, transactionsCriteria } = job.data;
|
const { ruleId, transactionsCriteria } = job.data;
|
||||||
|
|||||||
@@ -22,7 +22,6 @@ export abstract class BaseCommand extends CommandRunner {
|
|||||||
},
|
},
|
||||||
migrations: {
|
migrations: {
|
||||||
directory: this.configService.get('systemDatabase.migrationDir'),
|
directory: this.configService.get('systemDatabase.migrationDir'),
|
||||||
loadExtensions: ['.js'],
|
|
||||||
},
|
},
|
||||||
seeds: {
|
seeds: {
|
||||||
directory: this.configService.get('systemDatabase.seedsDir'),
|
directory: this.configService.get('systemDatabase.seedsDir'),
|
||||||
@@ -44,7 +43,6 @@ export abstract class BaseCommand extends CommandRunner {
|
|||||||
},
|
},
|
||||||
migrations: {
|
migrations: {
|
||||||
directory: this.configService.get('tenantDatabase.migrationsDir') || './src/database/migrations',
|
directory: this.configService.get('tenantDatabase.migrationsDir') || './src/database/migrations',
|
||||||
loadExtensions: ['.js'],
|
|
||||||
},
|
},
|
||||||
seeds: {
|
seeds: {
|
||||||
directory: this.configService.get('tenantDatabase.seedsDir') || './src/database/seeds/core',
|
directory: this.configService.get('tenantDatabase.seedsDir') || './src/database/seeds/core',
|
||||||
|
|||||||
@@ -7,7 +7,11 @@ import * as moment from 'moment';
|
|||||||
import { TenantJobPayload } from '@/interfaces/Tenant';
|
import { TenantJobPayload } from '@/interfaces/Tenant';
|
||||||
import { InventoryComputeCostService } from '../commands/InventoryComputeCost.service';
|
import { InventoryComputeCostService } from '../commands/InventoryComputeCost.service';
|
||||||
import { events } from '@/common/events/events';
|
import { events } from '@/common/events/events';
|
||||||
import { ComputeItemCostQueue } from '../types/InventoryCost.types';
|
import {
|
||||||
|
ComputeItemCostQueue,
|
||||||
|
ComputeItemCostQueueJob,
|
||||||
|
} from '../types/InventoryCost.types';
|
||||||
|
import { Process } from '@nestjs/bull';
|
||||||
|
|
||||||
interface ComputeItemCostJobPayload extends TenantJobPayload {
|
interface ComputeItemCostJobPayload extends TenantJobPayload {
|
||||||
itemId: number;
|
itemId: number;
|
||||||
@@ -35,6 +39,7 @@ export class ComputeItemCostProcessor extends WorkerHost {
|
|||||||
* Process the compute item cost job.
|
* Process the compute item cost job.
|
||||||
* @param {Job<ComputeItemCostJobPayload>} job - The job to process
|
* @param {Job<ComputeItemCostJobPayload>} job - The job to process
|
||||||
*/
|
*/
|
||||||
|
@Process(ComputeItemCostQueueJob)
|
||||||
@UseCls()
|
@UseCls()
|
||||||
async process(job: Job<ComputeItemCostJobPayload>) {
|
async process(job: Job<ComputeItemCostJobPayload>) {
|
||||||
const { itemId, startingDate, organizationId, userId } = job.data;
|
const { itemId, startingDate, organizationId, userId } = job.data;
|
||||||
|
|||||||
@@ -1,4 +1,8 @@
|
|||||||
import { WriteInventoryTransactionsGLEntriesQueue } from '../types/InventoryCost.types';
|
import { Process } from '@nestjs/bull';
|
||||||
|
import {
|
||||||
|
WriteInventoryTransactionsGLEntriesQueue,
|
||||||
|
WriteInventoryTransactionsGLEntriesQueueJob,
|
||||||
|
} from '../types/InventoryCost.types';
|
||||||
import { Processor, WorkerHost } from '@nestjs/bullmq';
|
import { Processor, WorkerHost } from '@nestjs/bullmq';
|
||||||
import { Scope } from '@nestjs/common';
|
import { Scope } from '@nestjs/common';
|
||||||
|
|
||||||
@@ -11,5 +15,6 @@ export class WriteInventoryTransactionsGLEntriesProcessor extends WorkerHost {
|
|||||||
super();
|
super();
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@Process(WriteInventoryTransactionsGLEntriesQueueJob)
|
||||||
async process() {}
|
async process() {}
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -2,8 +2,10 @@ import { Processor, WorkerHost } from '@nestjs/bullmq';
|
|||||||
import { Scope } from '@nestjs/common';
|
import { Scope } from '@nestjs/common';
|
||||||
import { Job } from 'bullmq';
|
import { Job } from 'bullmq';
|
||||||
import { ClsService, UseCls } from 'nestjs-cls';
|
import { ClsService, UseCls } from 'nestjs-cls';
|
||||||
|
import { Process } from '@nestjs/bull';
|
||||||
import {
|
import {
|
||||||
OrganizationBuildQueue,
|
OrganizationBuildQueue,
|
||||||
|
OrganizationBuildQueueJob,
|
||||||
OrganizationBuildQueueJobPayload,
|
OrganizationBuildQueueJobPayload,
|
||||||
} from '../Organization.types';
|
} from '../Organization.types';
|
||||||
import { BuildOrganizationService } from '../commands/BuildOrganization.service';
|
import { BuildOrganizationService } from '../commands/BuildOrganization.service';
|
||||||
@@ -20,6 +22,7 @@ export class OrganizationBuildProcessor extends WorkerHost {
|
|||||||
super();
|
super();
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@Process(OrganizationBuildQueueJob)
|
||||||
@UseCls()
|
@UseCls()
|
||||||
async process(job: Job<OrganizationBuildQueueJobPayload>) {
|
async process(job: Job<OrganizationBuildQueueJobPayload>) {
|
||||||
console.log('Processing organization build job:', job.id);
|
console.log('Processing organization build job:', job.id);
|
||||||
|
|||||||
@@ -22,7 +22,6 @@ const providers = [
|
|||||||
},
|
},
|
||||||
migrations: {
|
migrations: {
|
||||||
directory: configService.get('systemDatabase.migrationDir'),
|
directory: configService.get('systemDatabase.migrationDir'),
|
||||||
loadExtensions: ['.js'],
|
|
||||||
},
|
},
|
||||||
seeds: {
|
seeds: {
|
||||||
directory: configService.get('systemDatabase.seedsDir'),
|
directory: configService.get('systemDatabase.seedsDir'),
|
||||||
|
|||||||
@@ -33,7 +33,6 @@ export const TenancyDatabaseProxyProvider = ClsModule.forFeatureAsync({
|
|||||||
},
|
},
|
||||||
migrations: {
|
migrations: {
|
||||||
directory: configService.get('tenantDatabase.migrationsDir'),
|
directory: configService.get('tenantDatabase.migrationsDir'),
|
||||||
loadExtensions: ['.js'],
|
|
||||||
},
|
},
|
||||||
seeds: {
|
seeds: {
|
||||||
directory: configService.get('tenantDatabase.seedsDir'),
|
directory: configService.get('tenantDatabase.seedsDir'),
|
||||||
|
|||||||
@@ -3,7 +3,6 @@ import { useQuery } from 'react-query';
|
|||||||
import { castArray, defaultTo } from 'lodash';
|
import { castArray, defaultTo } from 'lodash';
|
||||||
import { useAuthOrganizationId } from './state';
|
import { useAuthOrganizationId } from './state';
|
||||||
import useApiRequest from './useRequest';
|
import useApiRequest from './useRequest';
|
||||||
import { normalizeApiPath } from '../utils';
|
|
||||||
import { useRef } from 'react';
|
import { useRef } from 'react';
|
||||||
|
|
||||||
/**
|
/**
|
||||||
@@ -20,11 +19,7 @@ export function useRequestQuery(query, axios, props) {
|
|||||||
|
|
||||||
const states = useQuery(
|
const states = useQuery(
|
||||||
query,
|
query,
|
||||||
() =>
|
() => apiRequest.http({ ...axios, url: `/api/${axios.url}` }),
|
||||||
apiRequest.http({
|
|
||||||
...axios,
|
|
||||||
url: `/api/${normalizeApiPath(axios.url)}`,
|
|
||||||
}),
|
|
||||||
props,
|
props,
|
||||||
);
|
);
|
||||||
// Momerize the default data.
|
// Momerize the default data.
|
||||||
|
|||||||
@@ -7,7 +7,7 @@ import {
|
|||||||
useSetGlobalErrors,
|
useSetGlobalErrors,
|
||||||
useAuthToken,
|
useAuthToken,
|
||||||
} from './state';
|
} from './state';
|
||||||
import { getCookie, normalizeApiPath } from '../utils';
|
import { getCookie } from '../utils';
|
||||||
|
|
||||||
export default function useApiRequest() {
|
export default function useApiRequest() {
|
||||||
const setGlobalErrors = useSetGlobalErrors();
|
const setGlobalErrors = useSetGlobalErrors();
|
||||||
@@ -93,27 +93,27 @@ export default function useApiRequest() {
|
|||||||
http,
|
http,
|
||||||
|
|
||||||
get(resource, params) {
|
get(resource, params) {
|
||||||
return http.get(`/api/${normalizeApiPath(resource)}`, params);
|
return http.get(`/api/${resource}`, params);
|
||||||
},
|
},
|
||||||
|
|
||||||
post(resource, params, config) {
|
post(resource, params, config) {
|
||||||
return http.post(`/api/${normalizeApiPath(resource)}`, params, config);
|
return http.post(`/api/${resource}`, params, config);
|
||||||
},
|
},
|
||||||
|
|
||||||
update(resource, slug, params) {
|
update(resource, slug, params) {
|
||||||
return http.put(`/api/${normalizeApiPath(resource)}/${slug}`, params);
|
return http.put(`/api/${resource}/${slug}`, params);
|
||||||
},
|
},
|
||||||
|
|
||||||
put(resource, params) {
|
put(resource, params) {
|
||||||
return http.put(`/api/${normalizeApiPath(resource)}`, params);
|
return http.put(`/api/${resource}`, params);
|
||||||
},
|
},
|
||||||
|
|
||||||
patch(resource, params, config) {
|
patch(resource, params, config) {
|
||||||
return http.patch(`/api/${normalizeApiPath(resource)}`, params, config);
|
return http.patch(`/api/${resource}`, params, config);
|
||||||
},
|
},
|
||||||
|
|
||||||
delete(resource, params) {
|
delete(resource, params) {
|
||||||
return http.delete(`/api/${normalizeApiPath(resource)}`, params);
|
return http.delete(`/api/${resource}`, params);
|
||||||
},
|
},
|
||||||
}),
|
}),
|
||||||
[http],
|
[http],
|
||||||
@@ -130,22 +130,22 @@ export function useAuthApiRequest() {
|
|||||||
() => ({
|
() => ({
|
||||||
http,
|
http,
|
||||||
get(resource, params) {
|
get(resource, params) {
|
||||||
return http.get(`/api/${normalizeApiPath(resource)}`, params);
|
return http.get(`/api/${resource}`, params);
|
||||||
},
|
},
|
||||||
post(resource, params, config) {
|
post(resource, params, config) {
|
||||||
return http.post(`/api/${normalizeApiPath(resource)}`, params, config);
|
return http.post(`/api/${resource}`, params, config);
|
||||||
},
|
},
|
||||||
update(resource, slug, params) {
|
update(resource, slug, params) {
|
||||||
return http.put(`/api/${normalizeApiPath(resource)}/${slug}`, params);
|
return http.put(`/api/${resource}/${slug}`, params);
|
||||||
},
|
},
|
||||||
put(resource, params) {
|
put(resource, params) {
|
||||||
return http.put(`/api/${normalizeApiPath(resource)}`, params);
|
return http.put(`/api/${resource}`, params);
|
||||||
},
|
},
|
||||||
patch(resource, params, config) {
|
patch(resource, params, config) {
|
||||||
return http.patch(`/api/${normalizeApiPath(resource)}`, params, config);
|
return http.patch(`/api/${resource}`, params, config);
|
||||||
},
|
},
|
||||||
delete(resource, params) {
|
delete(resource, params) {
|
||||||
return http.delete(`/api/${normalizeApiPath(resource)}`, params);
|
return http.delete(`/api/${resource}`, params);
|
||||||
},
|
},
|
||||||
}),
|
}),
|
||||||
[http],
|
[http],
|
||||||
|
|||||||
@@ -13,9 +13,6 @@ import jsCookie from 'js-cookie';
|
|||||||
import { deepMapKeys } from './map-key-deep';
|
import { deepMapKeys } from './map-key-deep';
|
||||||
export * from './deep';
|
export * from './deep';
|
||||||
|
|
||||||
/** Strips leading slash from a path segment to avoid double slashes when joining with a base (e.g. `/api/` + path). */
|
|
||||||
export const normalizeApiPath = (path) => (path || '').replace(/^\//, '');
|
|
||||||
|
|
||||||
export const getCookie = (name, defaultValue) =>
|
export const getCookie = (name, defaultValue) =>
|
||||||
_.defaultTo(jsCookie.get(name), defaultValue);
|
_.defaultTo(jsCookie.get(name), defaultValue);
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user