if (info.fn && info.fn.name === 'GROUP_CONCAT' && value) {
return formatGroupConcatValues(info, value);
}
+ else if (info.fn && info.fn.name === 'COUNT') {
+ return value;
+ }
return formatFieldValue(info.field, value);
};
else if (type === 'Boolean' && typeof value === 'boolean') {
return value ? ts('Yes') : ts('No');
}
+ else if (type === 'Money') {
+ return CRM.formatMoney(value);
+ }
return value;
}
</thead>
<tbody>
<tr ng-repeat="row in $ctrl.results[$ctrl.page]">
- <td class="crm-search-result-select">
+ <td>
<input type="checkbox" ng-checked="isRowSelected(row)" ng-click="selectRow(row)" ng-disabled="!(loading === false && !loadingAllRows && row.id)">
</td>
<td ng-repeat="col in $ctrl.params.select">