mirror of
https://github.com/bigcapitalhq/bigcapital.git
synced 2026-02-19 06:10:31 +00:00
43 lines
1.4 KiB
TypeScript
43 lines
1.4 KiB
TypeScript
import { Inject, Injectable } from '@nestjs/common';
|
|
import { PaymentReceivedValidators } from '../commands/PaymentReceivedValidators.service';
|
|
import { SaleInvoice } from '../../SaleInvoices/models/SaleInvoice';
|
|
import { PaymentReceived } from '../models/PaymentReceived';
|
|
import { TenantModelProxy } from '@/modules/System/models/TenantBaseModel';
|
|
|
|
@Injectable()
|
|
export class GetPaymentReceivedInvoices {
|
|
constructor(
|
|
@Inject(PaymentReceived.name)
|
|
private paymentReceiveModel: TenantModelProxy<typeof PaymentReceived>,
|
|
|
|
@Inject(SaleInvoice.name)
|
|
private saleInvoiceModel: TenantModelProxy<typeof SaleInvoice>,
|
|
|
|
private validators: PaymentReceivedValidators,
|
|
) {}
|
|
|
|
/**
|
|
* Retrieve sale invoices that associated to the given payment receive.
|
|
* @param {number} paymentReceiveId - Payment receive id.
|
|
* @return {Promise<ISaleInvoice>}
|
|
*/
|
|
public async getPaymentReceiveInvoices(paymentReceiveId: number) {
|
|
const paymentReceive = await this.paymentReceiveModel()
|
|
.query()
|
|
.findById(paymentReceiveId)
|
|
.withGraphFetched('entries');
|
|
|
|
// Validates the payment receive existence.
|
|
this.validators.validatePaymentExistance(paymentReceive);
|
|
|
|
const paymentReceiveInvoicesIds = paymentReceive.entries.map(
|
|
(entry) => entry.invoiceId,
|
|
);
|
|
const saleInvoices = await this.saleInvoiceModel()
|
|
.query()
|
|
.whereIn('id', paymentReceiveInvoicesIds);
|
|
|
|
return saleInvoices;
|
|
}
|
|
}
|