feat: bank rules for uncategorized transactions

This commit is contained in:
Ahmed Bouhuolia
2024-06-18 17:14:30 +02:00
parent 590715037b
commit 906835c396
16 changed files with 752 additions and 2 deletions

View File

@@ -0,0 +1,11 @@
import { Transformer } from '@/lib/Transformer/Transformer';
export class GetBankRulesTransformer extends Transformer {
/**
* Include these attributes to sale invoice object.
* @returns {Array}
*/
public includeAttributes = (): string[] => {
return [];
};
}