46 lines
1.1 KiB
TypeScript
46 lines
1.1 KiB
TypeScript
import { BaseBatchUpdateStatusManager } from 'src/core/modules/domain/usecase/managers/base-batch-update-status.manager';
|
|
import { TaxEntity } from '../../entities/tax.entity';
|
|
import {
|
|
EventTopics,
|
|
validateRelations,
|
|
} from 'src/core/strings/constants/interface.constants';
|
|
import { TaxModel } from '../../../data/models/tax.model';
|
|
import { TaxChangeStatusEvent } from '../../entities/event/tax-change-status.event';
|
|
import { BatchResult } from 'src/core/response/domain/ok-response.interface';
|
|
import { Injectable } from '@nestjs/common';
|
|
|
|
@Injectable()
|
|
export class BatchActiveTaxManager extends BaseBatchUpdateStatusManager<TaxEntity> {
|
|
validateData(data: TaxEntity): Promise<void> {
|
|
return;
|
|
}
|
|
|
|
beforeProcess(): Promise<void> {
|
|
return;
|
|
}
|
|
|
|
afterProcess(): Promise<void> {
|
|
return;
|
|
}
|
|
|
|
get validateRelations(): validateRelations[] {
|
|
return [];
|
|
}
|
|
|
|
get entityTarget(): any {
|
|
return TaxModel;
|
|
}
|
|
|
|
get eventTopics(): EventTopics[] {
|
|
return [
|
|
{
|
|
topic: TaxChangeStatusEvent,
|
|
},
|
|
];
|
|
}
|
|
|
|
getResult(): BatchResult {
|
|
return this.result;
|
|
}
|
|
}
|