feat: Receivable and payable aging summary financial statement.

This commit is contained in:
Ahmed Bouhuolia
2020-06-11 22:05:34 +02:00
parent 55a4319827
commit 4d1dd14f8d
36 changed files with 1435 additions and 195 deletions

View File

@@ -1,9 +1,14 @@
import { Model } from 'objection';
import { Model, mixin } from 'objection';
import { snakeCase } from 'lodash';
import { mapKeysDeep } from '@/utils';
import PaginationQueryBuilder from '@/models/Pagination';
import DateSession from '@/models/DateSession';
export default class ModelBase extends Model {
export default class ModelBase extends mixin(Model, [DateSession]) {
static get timestamps() {
return [];
}
static get knexBinded() {
return this.knexBindInstance;