This commit is contained in:
@@ -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
|
||||||
|
|||||||
@@ -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 }}
|
||||||
|
|||||||
@@ -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) {
|
||||||
|
|||||||
Reference in New Issue
Block a user