fix: remove un-used code

This commit is contained in:
Ahmed Bouhuolia
2024-06-06 18:50:24 +02:00
parent 94192bfc29
commit 8b99e0938d
2 changed files with 0 additions and 3 deletions

View File

@@ -36,14 +36,12 @@ export default class GeneralLedgerSheet extends R.compose(
* @param {IJournalPoster} closingBalancesJournal - * @param {IJournalPoster} closingBalancesJournal -
*/ */
constructor( constructor(
tenantId: number,
query: IGeneralLedgerSheetQuery, query: IGeneralLedgerSheetQuery,
repository: GeneralLedgerRepository, repository: GeneralLedgerRepository,
i18n i18n
) { ) {
super(); super();
this.tenantId = tenantId;
this.query = query; this.query = query;
this.numberFormat = this.query.numberFormat; this.numberFormat = this.query.numberFormat;
this.repository = repository; this.repository = repository;

View File

@@ -62,7 +62,6 @@ export class GeneralLedgerService {
// General ledger report instance. // General ledger report instance.
const generalLedgerInstance = new GeneralLedgerSheet( const generalLedgerInstance = new GeneralLedgerSheet(
tenantId,
filter, filter,
genealLedgerRepository, genealLedgerRepository,
i18n i18n