mirror of
https://github.com/bigcapitalhq/bigcapital.git
synced 2026-02-17 13:20:31 +00:00
114 lines
3.3 KiB
TypeScript
114 lines
3.3 KiB
TypeScript
import { Service, Inject } from 'typedi';
|
|
import { Knex } from 'knex';
|
|
import {
|
|
ISaleReceipt,
|
|
ISaleReceiptCreatedPayload,
|
|
ISaleReceiptCreatingPayload,
|
|
ISaleReceiptDTO,
|
|
} from '@/interfaces';
|
|
import events from '@/subscribers/events';
|
|
import TenancyService from '@/services/Tenancy/TenancyService';
|
|
import ItemsEntriesService from '@/services/Items/ItemsEntriesService';
|
|
import UnitOfWork from '@/services/UnitOfWork';
|
|
import { EventPublisher } from '@/lib/EventPublisher/EventPublisher';
|
|
import { SaleReceiptDTOTransformer } from './SaleReceiptDTOTransformer';
|
|
import { SaleReceiptValidators } from './SaleReceiptValidators';
|
|
|
|
@Service()
|
|
export class CreateSaleReceipt {
|
|
@Inject()
|
|
private tenancy: TenancyService;
|
|
|
|
@Inject()
|
|
private itemsEntriesService: ItemsEntriesService;
|
|
|
|
@Inject()
|
|
private eventPublisher: EventPublisher;
|
|
|
|
@Inject()
|
|
private uow: UnitOfWork;
|
|
|
|
@Inject()
|
|
private transformer: SaleReceiptDTOTransformer;
|
|
|
|
@Inject()
|
|
private validators: SaleReceiptValidators;
|
|
|
|
/**
|
|
* Creates a new sale receipt with associated entries.
|
|
* @async
|
|
* @param {ISaleReceipt} saleReceipt
|
|
* @return {Object}
|
|
*/
|
|
public async createSaleReceipt(
|
|
tenantId: number,
|
|
saleReceiptDTO: ISaleReceiptDTO,
|
|
trx?: Knex.Transaction
|
|
): Promise<ISaleReceipt> {
|
|
const { SaleReceipt, Contact } = this.tenancy.models(tenantId);
|
|
|
|
// Retireves the payment customer model.
|
|
const paymentCustomer = await Contact.query()
|
|
.modify('customer')
|
|
.findById(saleReceiptDTO.customerId)
|
|
.throwIfNotFound();
|
|
|
|
// Transform sale receipt DTO to model.
|
|
const saleReceiptObj = await this.transformer.transformDTOToModel(
|
|
tenantId,
|
|
saleReceiptDTO,
|
|
paymentCustomer
|
|
);
|
|
// Validate receipt deposit account existance and type.
|
|
await this.validators.validateReceiptDepositAccountExistance(
|
|
tenantId,
|
|
saleReceiptDTO.depositAccountId
|
|
);
|
|
// Validate items IDs existance on the storage.
|
|
await this.itemsEntriesService.validateItemsIdsExistance(
|
|
tenantId,
|
|
saleReceiptDTO.entries
|
|
);
|
|
// Validate the sellable items.
|
|
await this.itemsEntriesService.validateNonSellableEntriesItems(
|
|
tenantId,
|
|
saleReceiptDTO.entries
|
|
);
|
|
// Validate sale receipt number uniuqiness.
|
|
if (saleReceiptDTO.receiptNumber) {
|
|
await this.validators.validateReceiptNumberUnique(
|
|
tenantId,
|
|
saleReceiptDTO.receiptNumber
|
|
);
|
|
}
|
|
// Creates a sale receipt transaction and associated transactions under UOW env.
|
|
return this.uow.withTransaction(
|
|
tenantId,
|
|
async (trx: Knex.Transaction) => {
|
|
// Triggers `onSaleReceiptCreating` event.
|
|
await this.eventPublisher.emitAsync(events.saleReceipt.onCreating, {
|
|
saleReceiptDTO,
|
|
tenantId,
|
|
trx,
|
|
} as ISaleReceiptCreatingPayload);
|
|
|
|
// Inserts the sale receipt graph to the storage.
|
|
const saleReceipt = await SaleReceipt.query().upsertGraph({
|
|
...saleReceiptObj,
|
|
});
|
|
// Triggers `onSaleReceiptCreated` event.
|
|
await this.eventPublisher.emitAsync(events.saleReceipt.onCreated, {
|
|
tenantId,
|
|
saleReceipt,
|
|
saleReceiptId: saleReceipt.id,
|
|
saleReceiptDTO,
|
|
trx,
|
|
} as ISaleReceiptCreatedPayload);
|
|
|
|
return saleReceipt;
|
|
},
|
|
trx
|
|
);
|
|
}
|
|
}
|