This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <cfscript> | |
| percentOfTotal = (25/60)*255; | |
| writeOutput(percentOfTotal & "<br>"); | |
| writeOutput(formatBaseN(percentOfTotal, 16) & "<br>"); | |
| </cfscript> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <cfscript> | |
| String function replaceEquivalent(required numeric phoneId, required String productList) { | |
| var i = createObject("java", "java.util.ArrayList").init(); | |
| i.add({"product_from": 12345, "product_to": 112233, "requires_service_validation": 1}); | |
| i.add({"product_from": 23456, "product_to": 112233, "requires_service_validation": 0}); | |
| i.add({"product_from": 34567, "product_to": 112233, "requires_service_validation": 1}); | |
| i.add({"product_from": 45678, "product_to": 112233, "requires_service_validation": 0}); | |
| var iter = i.iterator(); |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <cfscript> | |
| writedump( structCopy( new query() ) ) | |
| </cfscript> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <cfscript> | |
| local.index = 1; | |
| writeOutput("prova_#local.index#"); | |
| local.index++; | |
| writeOutput("prova_#local.index#") | |
| </cfscript> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <cfscript> | |
| </cfscript> | |
| <li class="dropdown"> | |
| <a href="https://portal.comssystems.cloud/proxy/comsredirect/<cfoutput>#qCustomer.accountGUID#</cfoutput>/incidents/search" target="_blank" class="btn btn-warning" >Review Incidents</a> | |
| <a href="/client/index.cfm/layout/client_cashManagement_land" title="Cash Management" >Cash Management</a> | |
| </li> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <cfscript> | |
| </cfscript> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <cfscript> | |
| idList = "A1,A2,B1,B4,C6"; | |
| writeOutput("Lista di id: #idList#<hr>"); | |
| writeOutput("Codice originale"); | |
| queryObj = queryNew("IDCODICE","VarChar"); | |
| for (item in listToArray(idList)) { |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <cfscript> | |
| idList = "A1,A2,B1,B4,C6"; | |
| writeOutput("Lista di id: #idList#<hr>"); | |
| writeOutput("Codice originale"); | |
| queryObj = queryNew("IDCODICE","VarChar"); | |
| for (item in listToArray(idList)) { |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <cfscript> | |
| idList = "A1,A2,B1,B4,C6,A1,A2,B1,B4,C6"; | |
| writeOutput("Lista di id: #idList#<hr>"); | |
| writeOutput("Codice originale"); | |
| queryObj = queryNew("IDCODICE","VarChar"); | |
| for (item in listToArray(idList)) { |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <cfset popend_ui=''> | |
| <cfset dt = DateFormat(ParseDateTime(popend_ui, "yyyy-MM-dd"))> | |
| <cfoutput>#dt#</cfoutput> |