Please i need your help, on a Groovy script i need to concat a Double value to an string as you can see on the next line of code:
def script = ""; script = "UPDATE crm_caso SET MontoProyecto = "+String.valueOf(varGlobalMontoDiseno)+" WHERE CodCaso ='"+varGlobalIdCaso+"'";And i have tryed the next change but it doesnt work:
def script = “”;
script = “UPDATE crm_caso SET MontoProyecto = “+varGlobalMontoDiseno.toString()+” WHERE CodCaso ='”+varGlobalIdCaso+“'”;
I cant find the way to do it.
The variable “varGlobalIdCaso” is a Double
Thanks in advance for your help.