|
PowerFolder 工作流服务器版本0.5 试驾之旅(5)(10) Return - (Boolean) Description - true if either, but not both, (arguement1) or (argument2) is true, false otherwise. Example - client.or(client.getBooleanValue("RedLight"), client.getBooleanValue("CrossingIntersection")); 3.2.7 Other其它 3.2.7.1 convertStringToDecimal转换字符串到数值 Inputs - arguement1 (String) Return - (Decimal) Description - converts (arguement1) to a Decimal. Example - client.convertStringToDecimal(client.getWebValue("AGE")); 3.2.7.2 isStringDecimal是否是数值 Inputs - arguement1 (String) Return - (Boolean) Description - true if (arguement1) can be converted to a Decimal, false otherwise. Example - client.isStringDecimal(client.getWebValue("Quantity")); 3.2.7.3 saveChanges保存修改 Inputs - (none) Return - (none) Description - saves the changes made to all selected workflows. 描述--保存对于所有选中工作流所做的修改 Example - client.saveChanges();
|