mirror of
https://github.com/bigcapitalhq/bigcapital.git
synced 2026-02-12 10:50:31 +00:00
59 lines
1.8 KiB
TypeScript
59 lines
1.8 KiB
TypeScript
import { Service, Inject } from 'typedi';
|
|
import HasTenancyService from '@/services/Tenancy/TenancyService';
|
|
import { CashflowTransactionTransformer } from './CashflowTransactionTransformer';
|
|
import { ERRORS } from './constants';
|
|
import { ICashflowTransaction } from '@/interfaces';
|
|
import { ServiceError } from '@/exceptions';
|
|
import { TransformerInjectable } from '@/lib/Transformer/TransformerInjectable';
|
|
|
|
@Service()
|
|
export class GetCashflowTransactionService {
|
|
@Inject()
|
|
private tenancy: HasTenancyService;
|
|
|
|
@Inject()
|
|
private transformer: TransformerInjectable;
|
|
|
|
/**
|
|
* Retrieve the given cashflow transaction.
|
|
* @param {number} tenantId
|
|
* @param {number} cashflowTransactionId
|
|
* @returns
|
|
*/
|
|
public getCashflowTransaction = async (
|
|
tenantId: number,
|
|
cashflowTransactionId: number
|
|
) => {
|
|
const { CashflowTransaction } = this.tenancy.models(tenantId);
|
|
|
|
const cashflowTransaction = await CashflowTransaction.query()
|
|
.findById(cashflowTransactionId)
|
|
.withGraphFetched('entries.cashflowAccount')
|
|
.withGraphFetched('entries.creditAccount')
|
|
.withGraphFetched('transactions.account')
|
|
.orderBy('date', 'DESC')
|
|
.throwIfNotFound();
|
|
|
|
this.throwErrorCashflowTranscationNotFound(cashflowTransaction);
|
|
|
|
// Transformes the cashflow transaction model to POJO.
|
|
return this.transformer.transform(
|
|
tenantId,
|
|
cashflowTransaction,
|
|
new CashflowTransactionTransformer()
|
|
);
|
|
};
|
|
|
|
/**
|
|
* Throw not found error if the given cashflow undefined.
|
|
* @param {ICashflowTransaction} cashflowTransaction -
|
|
*/
|
|
private throwErrorCashflowTranscationNotFound = (
|
|
cashflowTransaction: ICashflowTransaction
|
|
) => {
|
|
if (!cashflowTransaction) {
|
|
throw new ServiceError(ERRORS.CASHFLOW_TRANSACTION_NOT_FOUND);
|
|
}
|
|
};
|
|
}
|