This commit is contained in:
@@ -341,14 +341,6 @@ todo: many biz objects are not using new PUT methodology
|
|||||||
|
|
||||||
CURRENTLY DOING:
|
CURRENTLY DOING:
|
||||||
|
|
||||||
|
|
||||||
todo: boolean fields in table are showing "true" "false" must change to checkboxes or checkbox characters or something
|
|
||||||
do this sooner than later
|
|
||||||
check po and other tables as well.
|
|
||||||
there is specific guidance on this in the vuetify docs with example
|
|
||||||
|
|
||||||
todo: concurrency conflict not displaying properly in UI, no error shows at all
|
|
||||||
|
|
||||||
todo: there may be an extraneous formfield item as there is taxname and taxcode id both as customizable.
|
todo: there may be an extraneous formfield item as there is taxname and taxcode id both as customizable.
|
||||||
maybe settle on one and use it dual purpose for the picklist as well as the taxname
|
maybe settle on one and use it dual purpose for the picklist as well as the taxname
|
||||||
|
|
||||||
|
|||||||
@@ -57,6 +57,19 @@
|
|||||||
:show-select="$vuetify.breakpoint.xs"
|
:show-select="$vuetify.breakpoint.xs"
|
||||||
single-select
|
single-select
|
||||||
>
|
>
|
||||||
|
<template v-slot:[`item.reimburseUser`]="{ item }">
|
||||||
|
<v-simple-checkbox
|
||||||
|
v-model="item.reimburseUser"
|
||||||
|
disabled
|
||||||
|
></v-simple-checkbox>
|
||||||
|
</template>
|
||||||
|
|
||||||
|
<template v-slot:[`item.chargeToCustomer`]="{ item }">
|
||||||
|
<v-simple-checkbox
|
||||||
|
v-model="item.chargeToCustomer"
|
||||||
|
disabled
|
||||||
|
></v-simple-checkbox>
|
||||||
|
</template>
|
||||||
</v-data-table>
|
</v-data-table>
|
||||||
</v-col>
|
</v-col>
|
||||||
</template>
|
</template>
|
||||||
@@ -620,7 +633,7 @@ export default {
|
|||||||
if (this.form().showMe(this, "WorkOrderItemExpenseName")) {
|
if (this.form().showMe(this, "WorkOrderItemExpenseName")) {
|
||||||
headers.push({
|
headers.push({
|
||||||
text: this.$ay.t("WorkOrderItemExpenseName"),
|
text: this.$ay.t("WorkOrderItemExpenseName"),
|
||||||
align: "left",
|
align: "start",
|
||||||
value: "name"
|
value: "name"
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -743,7 +743,7 @@ export default {
|
|||||||
});
|
});
|
||||||
}
|
}
|
||||||
|
|
||||||
if (this.form().showMe(this, "LaborTaxName")) {
|
if (this.form().showMe(this, "WorkOrderItemLaborTaxRateSaleID")) {
|
||||||
headers.push({
|
headers.push({
|
||||||
text: this.$ay.t("Tax"),
|
text: this.$ay.t("Tax"),
|
||||||
align: "left",
|
align: "left",
|
||||||
|
|||||||
Reference in New Issue
Block a user