This commit is contained in:
@@ -339,7 +339,7 @@ todo: many biz objects are not using new PUT methodology
|
|||||||
|
|
||||||
|
|
||||||
|
|
||||||
CURRENTLY DOING: nothing...pick something below to continue
|
CURRENTLY DOING:
|
||||||
|
|
||||||
|
|
||||||
todo: boolean fields in table are showing "true" "false" must change to checkboxes or checkbox characters or something
|
todo: boolean fields in table are showing "true" "false" must change to checkboxes or checkbox characters or something
|
||||||
|
|||||||
@@ -55,6 +55,12 @@
|
|||||||
:show-select="$vuetify.breakpoint.xs"
|
:show-select="$vuetify.breakpoint.xs"
|
||||||
single-select
|
single-select
|
||||||
>
|
>
|
||||||
|
<template v-slot:[`item.taxOnTax`]="{ item }">
|
||||||
|
<v-simple-checkbox
|
||||||
|
v-model="item.taxOnTax"
|
||||||
|
disabled
|
||||||
|
></v-simple-checkbox>
|
||||||
|
</template>
|
||||||
</v-data-table>
|
</v-data-table>
|
||||||
</v-col>
|
</v-col>
|
||||||
</template>
|
</template>
|
||||||
|
|||||||
@@ -71,6 +71,13 @@
|
|||||||
>{{ item.priority.name }}
|
>{{ item.priority.name }}
|
||||||
</template>
|
</template>
|
||||||
</template>
|
</template>
|
||||||
|
|
||||||
|
<template v-slot:[`item.warranty`]="{ item }">
|
||||||
|
<v-simple-checkbox
|
||||||
|
v-model="item.warranty"
|
||||||
|
disabled
|
||||||
|
></v-simple-checkbox>
|
||||||
|
</template>
|
||||||
</v-data-table>
|
</v-data-table>
|
||||||
</v-col>
|
</v-col>
|
||||||
</template>
|
</template>
|
||||||
|
|||||||
Reference in New Issue
Block a user