@esfaenza/extensions 15.2.16 → 15.2.17
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
|
@@ -971,6 +971,8 @@ class ExportService {
|
|
|
971
971
|
parseObject(obj, prop, headers, loc) {
|
|
972
972
|
//se questa proprietà ha un navigator significa che deriva da un oggetto interno, recupero il valore in questa fase dato che prima non ce l'ho
|
|
973
973
|
let valuenavigator = obj[prop + csvValueNavigator];
|
|
974
|
+
// Localizzazione presa dalla classe base se c'è, altrimenti dalla classe interna
|
|
975
|
+
loc = loc || this.lc.generateFromType(obj[locProperty]);
|
|
974
976
|
//Es. di valuenavigator obj.subobj.subsubobj.property
|
|
975
977
|
let jmps = valuenavigator.split(".");
|
|
976
978
|
//Mi clono l'oggetto originale per non uccidergli i riferimenti
|