From eac36f5b276d5a471752de3804931f1909ffe17e Mon Sep 17 00:00:00 2001 From: Johannes Hoermann <j.hoermann@adito.de> Date: Tue, 29 Jan 2019 11:31:41 +0100 Subject: [PATCH] fix --- .../Address_entity/entityfields/country/displayValueProcess.js | 2 +- entity/Org_entity/entityfields/language/displayValueProcess.js | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/entity/Address_entity/entityfields/country/displayValueProcess.js b/entity/Address_entity/entityfields/country/displayValueProcess.js index c030b65a02..227f7b918b 100644 --- a/entity/Address_entity/entityfields/country/displayValueProcess.js +++ b/entity/Address_entity/entityfields/country/displayValueProcess.js @@ -6,6 +6,6 @@ import("Sql_lib"); //TODO: temporary testing code var isoCode = vars.get("$field.COUNTRY"); -var countryName = db.cell(SqlCondition.begin().andPrepare("COUNTRYINFO.ISO2", isoCode).buildSelect("select COUNTRYINFO.NAME_LATIN from COUNTRYINFO")); +var countryName = db.cell(SqlCondition.begin().andPrepare("COUNTRYINFO.ISO2", isoCode).buildSql("select COUNTRYINFO.NAME_LATIN from COUNTRYINFO")); countryName = translate.text(countryName); result.string(countryName); \ No newline at end of file diff --git a/entity/Org_entity/entityfields/language/displayValueProcess.js b/entity/Org_entity/entityfields/language/displayValueProcess.js index 434f279047..d8f39933bb 100644 --- a/entity/Org_entity/entityfields/language/displayValueProcess.js +++ b/entity/Org_entity/entityfields/language/displayValueProcess.js @@ -6,6 +6,6 @@ import("Sql_lib"); //TODO: temporary testing code var isoCode = vars.get("$field.LANGUAGE"); -var countryName = db.cell(SqlCondition.begin().andPrepare("COUNTRYINFO.ISO2", isoCode).buildSelect("select COUNTRYINFO.NAME_LATIN from COUNTRYINFO")); +var countryName = db.cell(SqlCondition.begin().andPrepare("COUNTRYINFO.ISO2", isoCode).buildSql("select COUNTRYINFO.NAME_LATIN from COUNTRYINFO")); countryName = translate.text(countryName); result.string(countryName); \ No newline at end of file -- GitLab