fix: base currency from organization metadata.

This commit is contained in:
a.bouhuolia
2021-09-11 13:36:14 +02:00
parent 4bac4685d0
commit 6d79fe3498
19 changed files with 175 additions and 184 deletions

View File

@@ -2,6 +2,14 @@ import moment from "moment";
import { isEmpty, isObject, isUndefined } from 'lodash';
export class Transformer {
meta: any;
setMeta(meta) {
this.meta = meta;
return this;
}
/**
* Includeded attributes.
* @returns
@@ -23,7 +31,7 @@ export class Transformer {
};
/**
*
* Transformes the given item to desired output.
* @param item
* @returns
*/