This commit is contained in:
2019-12-12 00:43:42 +00:00
parent 007f528bcf
commit 49370f804e
3 changed files with 3 additions and 3 deletions

View File

@@ -49,7 +49,7 @@ CURRENT TODOs
TODO: MAIN GRID LIST ANALYSIS, DESIGN AND COMPLETION TODO: MAIN GRID LIST ANALYSIS, DESIGN AND COMPLETION
- Main grid time is off from edit form time by -1 hour
- Should users be able to set columns or am I really going to force it to a preset? - Should users be able to set columns or am I really going to force it to a preset?
- I had a customer today request the Description field from unit show in the workorder service grid, it doesn't do that - I had a customer today request the Description field from unit show in the workorder service grid, it doesn't do that
- Customers probably want the option of picking what fields show and what don't - Customers probably want the option of picking what fields show and what don't

View File

@@ -59,7 +59,7 @@
></v-checkbox> ></v-checkbox>
</td> </td>
<td class="text-xs-left" @click="editItem(props.item)"> <td class="text-xs-left" @click="editItem(props.item)">
{{ props.item.name | capitalize }} {{ props.item.name }}
</td> </td>
<td class="text-xs-left" @click="editItem(props.item)"> <td class="text-xs-left" @click="editItem(props.item)">
{{ props.item.serial }} {{ props.item.serial }}

View File

@@ -156,7 +156,7 @@ Vue.filter("shortdatelocalized", function vueFilterShortDateLocalized(value) {
Vue.filter("currency", function vueFilterCurrency(value) { Vue.filter("currency", function vueFilterCurrency(value) {
if (!value) return ""; if (!value) return "";
return "$" + value; return locale.format().currencySymbol + value;
}); });
Vue.filter("boolastext", function vueFilterBoolAsText(value) { Vue.filter("boolastext", function vueFilterBoolAsText(value) {