refactor: banking modules to nestjs

This commit is contained in:
Ahmed Bouhuolia
2025-01-05 23:06:33 +02:00
parent 1869ba216f
commit ba176394c8
25 changed files with 121 additions and 41 deletions

View File

@@ -46,10 +46,8 @@ export class PaymentReceivesApplication {
/**
* Edit details the given payment receive with associated entries.
* @param {number} tenantId
* @param {number} paymentReceiveId
* @param {IPaymentReceivedEditDTO} paymentReceiveDTO
* @param {ISystemUser} authorizedUser
* @param {number} paymentReceiveId - Payment receive id.
* @param {IPaymentReceivedEditDTO} paymentReceiveDTO - Payment receive data.
* @returns
*/
public editPaymentReceive(

View File

@@ -49,7 +49,7 @@ import { AccountsModule } from '../Accounts/Accounts.module';
PaymentReceivedGLEntriesSubscriber,
PaymentReceivedSyncInvoicesSubscriber,
],
exports: [PaymentReceivesApplication],
exports: [PaymentReceivesApplication, CreatePaymentReceivedService],
imports: [
ChromiumlyTenancyModule,
TemplateInjectableModule,