|
|
@@ -570,7 +570,7 @@ public class ConfigData { |
|
|
|
bpa_process.sort = item.sort; |
|
|
|
bpa_process.datatype = (item.actionType.equals("digit") ? 0 : ((item.actionType.equals("text") || item.actionType.equals("textarea") || item.actionType.equals("switch")) ? 1 : 2)); |
|
|
|
bpa_process.data = ""; |
|
|
|
if (item.actionType.equals("select") && !item.actionValue.isEmpty()) { |
|
|
|
if (item.actionType.equals("select") && item.actionValue!=null && !item.actionValue.isEmpty()) { |
|
|
|
List<TechnologyValueMode> val = new Json<TechnologyValueMode>().jsonToListobject(TechnologyValueMode.class, item.actionValue); |
|
|
|
for (int i = 0; i < val.size(); i++) { |
|
|
|
if (i < val.size() - 1) { |
|
|
|