diff --git a/application/Espo/Resources/metadata/app/complexExpression.json b/application/Espo/Resources/metadata/app/complexExpression.json index c24fcb8d79..70f25a5dc7 100644 --- a/application/Espo/Resources/metadata/app/complexExpression.json +++ b/application/Espo/Resources/metadata/app/complexExpression.json @@ -236,6 +236,31 @@ "name": "ROUND", "insertText": "ROUND:(VALUE, PRECISION)", "returnType": "float" + }, + { + "name": "COUNT", + "insertText": "COUNT:(EXPR)", + "returnType": "int" + }, + { + "name": "SUM", + "insertText": "SUM:(EXPR)", + "returnType": "int|float" + }, + { + "name": "AVG", + "insertText": "AVG:(EXPR)", + "returnType": "float" + }, + { + "name": "MAX", + "insertText": "MAX:(EXPR)", + "returnType": "int|float" + }, + { + "name": "MIN", + "insertText": "MIN:(EXPR)", + "returnType": "int|float" } ] }