...
|
...
|
@@ -494,7 +494,7 @@ func GetItemValues(transactionContext application.TransactionContext, q *query.C |
|
|
var result = make([]itemValue, 0)
|
|
|
result = append(result, itemValue{
|
|
|
Name: querySet.Name,
|
|
|
Value: value,
|
|
|
Value: domain.RoundValue(value),
|
|
|
})
|
|
|
|
|
|
for _, f := range q.Formula.TableFields {
|
...
|
...
|
@@ -511,7 +511,7 @@ func GetItemValues(transactionContext application.TransactionContext, q *query.C |
|
|
})
|
|
|
result = append(result, itemValue{
|
|
|
Name: f.FieldName,
|
|
|
Value: value,
|
|
|
Value: domain.RoundValue(value),
|
|
|
})
|
|
|
}
|
|
|
return querySet, result
|
...
|
...
|
|