refactor: financial reports to nestjs

This commit is contained in:
Ahmed Bouhuolia
2025-01-18 22:32:45 +02:00
parent 6dd854178d
commit dfc5674088
151 changed files with 5264 additions and 1296 deletions

View File

@@ -1,9 +1,12 @@
import * as R from 'ramda';
import { get, isEmpty } from 'lodash';
import { Constructor } from '@/common/types/Constructor';
import { GConstructor } from '@/common/types/Constructor';
import { FinancialSheet } from './FinancialSheet';
export const FinancialHorizTotals = <T extends Constructor>(Base: T) =>
class extends Base {
export const FinancialHorizTotals = <T extends GConstructor<FinancialSheet>>(
Base: T,
) =>
class FinancialHorizTotals extends Base {
/**
*
*/