787 lines
24 KiB
Vue
787 lines
24 KiB
Vue
<template>
|
|
<div v-if="value != null" class="mt-8">
|
|
<v-row>
|
|
<v-col cols="12">
|
|
<v-menu offset-y max-width="600px">
|
|
<template v-slot:activator="{ on, attrs }">
|
|
<div class="text-h6">
|
|
<v-icon large :color="hasData ? 'primary' : null" class="mr-2"
|
|
>$ayiMoneyBillWave</v-icon
|
|
>
|
|
{{ $ay.t("WorkOrderItemExpenseList") }}
|
|
<v-btn v-if="!parentDeleted" large icon v-bind="attrs" v-on="on">
|
|
<v-icon small color="primary">$ayiEllipsisV</v-icon>
|
|
</v-btn>
|
|
</div>
|
|
</template>
|
|
<v-list>
|
|
<v-list-item v-if="canAdd" @click="newItem">
|
|
<v-list-item-icon>
|
|
<v-icon>$ayiPlus</v-icon>
|
|
</v-list-item-icon>
|
|
<v-list-item-title>{{ $ay.t("New") }}</v-list-item-title>
|
|
</v-list-item>
|
|
<v-list-item v-if="canDelete && isDeleted" @click="unDeleteItem">
|
|
<v-list-item-icon>
|
|
<v-icon>$ayiTrashRestoreAlt</v-icon>
|
|
</v-list-item-icon>
|
|
<v-list-item-title>{{ $ay.t("Undelete") }}</v-list-item-title>
|
|
</v-list-item>
|
|
<v-list-item v-if="canDelete && !isDeleted" @click="deleteItem">
|
|
<v-list-item-icon>
|
|
<v-icon>$ayiTrashAlt</v-icon>
|
|
</v-list-item-icon>
|
|
<v-list-item-title>{{ $ay.t("SoftDelete") }}</v-list-item-title>
|
|
</v-list-item>
|
|
<v-list-item v-if="canDeleteAll" @click="deleteAllItem">
|
|
<v-list-item-icon>
|
|
<v-icon>$ayiDumpster</v-icon>
|
|
</v-list-item-icon>
|
|
<v-list-item-title>{{
|
|
$ay.t("SoftDeleteAll")
|
|
}}</v-list-item-title>
|
|
</v-list-item>
|
|
</v-list>
|
|
</v-menu>
|
|
</v-col>
|
|
|
|
<template v-if="hasData">
|
|
<!-- ############################################################### -->
|
|
<v-col cols="12" class="mb-10">
|
|
<v-data-table
|
|
v-model="selectedRow"
|
|
:headers="headerList"
|
|
:items="itemList"
|
|
item-key="index"
|
|
class="elevation-1"
|
|
disable-pagination
|
|
disable-filtering
|
|
disable-sort
|
|
hide-default-footer
|
|
data-cy="expensesTable"
|
|
dense
|
|
:item-class="itemRowClasses"
|
|
:show-select="$vuetify.breakpoint.xs"
|
|
single-select
|
|
@click:row="handleRowClick"
|
|
>
|
|
<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-col>
|
|
</template>
|
|
<template v-if="hasData && hasSelection">
|
|
<div ref="expensetopform"></div>
|
|
<v-btn
|
|
v-if="canDelete && isDeleted"
|
|
large
|
|
color="primary"
|
|
@click="unDeleteItem"
|
|
>{{ $ay.t("Undelete")
|
|
}}<v-icon right large>$ayiTrashRestoreAlt</v-icon></v-btn
|
|
>
|
|
|
|
<v-col
|
|
v-if="form().showMe(this, 'WorkOrderItemExpenseName')"
|
|
cols="12"
|
|
sm="6"
|
|
lg="4"
|
|
xl="3"
|
|
>
|
|
<v-text-field
|
|
:ref="
|
|
`Items[${activeWoItemIndex}].expenses[${activeItemIndex}].name`
|
|
"
|
|
v-model="
|
|
value.items[activeWoItemIndex].expenses[activeItemIndex].name
|
|
"
|
|
:readonly="formState.readOnly"
|
|
:disabled="isDeleted"
|
|
:label="$ay.t('WorkOrderItemExpenseName')"
|
|
:error-messages="
|
|
form().serverErrors(
|
|
this,
|
|
`Items[${activeWoItemIndex}].expenses[${activeItemIndex}].name`
|
|
)
|
|
"
|
|
data-cy="expenses.name"
|
|
@input="
|
|
fieldValueChanged(
|
|
`Items[${activeWoItemIndex}].expenses[${activeItemIndex}].name`
|
|
)
|
|
"
|
|
></v-text-field>
|
|
</v-col>
|
|
|
|
<v-col
|
|
v-if="form().showMe(this, 'WorkOrderItemExpenseTotalCost')"
|
|
cols="12"
|
|
sm="6"
|
|
lg="4"
|
|
xl="3"
|
|
>
|
|
<gz-currency
|
|
:ref="
|
|
`Items[${activeWoItemIndex}].expenses[${activeItemIndex}].totalCost`
|
|
"
|
|
v-model="
|
|
value.items[activeWoItemIndex].expenses[activeItemIndex].totalCost
|
|
"
|
|
:readonly="formState.readOnly || isDeleted"
|
|
:disabled="isDeleted"
|
|
:label="$ay.t('WorkOrderItemExpenseTotalCost')"
|
|
data-cy="expenses.totalCost"
|
|
:error-messages="
|
|
form().serverErrors(
|
|
this,
|
|
`Items[${activeWoItemIndex}].expenses[${activeItemIndex}].totalCost`
|
|
)
|
|
"
|
|
:rules="[
|
|
form().decimalValid(
|
|
this,
|
|
`Items[${activeWoItemIndex}].expenses[${activeItemIndex}].totalCost`
|
|
),
|
|
form().required(
|
|
this,
|
|
`Items[${activeWoItemIndex}].expenses[${activeItemIndex}].totalCost`
|
|
)
|
|
]"
|
|
@input="
|
|
fieldValueChanged(
|
|
`Items[${activeWoItemIndex}].expenses[${activeItemIndex}].totalCost`
|
|
)
|
|
"
|
|
></gz-currency>
|
|
</v-col>
|
|
|
|
<v-col
|
|
v-if="
|
|
form().showMe(this, 'WorkOrderItemExpenseChargeAmount') &&
|
|
!value.userIsRestrictedType
|
|
"
|
|
cols="12"
|
|
sm="6"
|
|
lg="4"
|
|
xl="3"
|
|
>
|
|
<gz-currency
|
|
:ref="
|
|
`Items[${activeWoItemIndex}].expenses[${activeItemIndex}].chargeAmount`
|
|
"
|
|
v-model="
|
|
value.items[activeWoItemIndex].expenses[activeItemIndex]
|
|
.chargeAmount
|
|
"
|
|
:readonly="formState.readOnly || isDeleted"
|
|
:disabled="isDeleted"
|
|
:label="$ay.t('WorkOrderItemExpenseChargeAmount')"
|
|
data-cy="expenses.chargeAmount"
|
|
:error-messages="
|
|
form().serverErrors(
|
|
this,
|
|
`Items[${activeWoItemIndex}].expenses[${activeItemIndex}].chargeAmount`
|
|
)
|
|
"
|
|
:rules="[
|
|
form().decimalValid(
|
|
this,
|
|
`Items[${activeWoItemIndex}].expenses[${activeItemIndex}].chargeAmount`
|
|
),
|
|
form().required(
|
|
this,
|
|
`Items[${activeWoItemIndex}].expenses[${activeItemIndex}].chargeAmount`
|
|
)
|
|
]"
|
|
@input="
|
|
fieldValueChanged(
|
|
`Items[${activeWoItemIndex}].expenses[${activeItemIndex}].chargeAmount`
|
|
)
|
|
"
|
|
></gz-currency>
|
|
</v-col>
|
|
|
|
<v-col
|
|
v-if="
|
|
form().showMe(this, 'WorkOrderItemExpenseChargeToCustomer') &&
|
|
!value.userIsRestrictedType
|
|
"
|
|
cols="12"
|
|
sm="6"
|
|
lg="4"
|
|
xl="3"
|
|
>
|
|
<v-checkbox
|
|
:ref="
|
|
`Items[${activeWoItemIndex}].expenses[${activeItemIndex}].chargeToCustomer`
|
|
"
|
|
v-model="
|
|
value.items[activeWoItemIndex].expenses[activeItemIndex]
|
|
.chargeToCustomer
|
|
"
|
|
:readonly="formState.readOnly"
|
|
:disabled="isDeleted"
|
|
:label="$ay.t('WorkOrderItemExpenseChargeToCustomer')"
|
|
data-cy="expenses.chargeToCustomer"
|
|
:error-messages="
|
|
form().serverErrors(
|
|
this,
|
|
`Items[${activeWoItemIndex}].expenses[${activeItemIndex}].chargeToCustomer`
|
|
)
|
|
"
|
|
@change="
|
|
fieldValueChanged(
|
|
`Items[${activeWoItemIndex}].expenses[${activeItemIndex}].chargeToCustomer`
|
|
)
|
|
"
|
|
></v-checkbox>
|
|
</v-col>
|
|
|
|
<v-col
|
|
v-if="form().showMe(this, 'WorkOrderItemExpenseTaxPaid')"
|
|
cols="12"
|
|
sm="6"
|
|
lg="4"
|
|
xl="3"
|
|
>
|
|
<gz-currency
|
|
:ref="
|
|
`Items[${activeWoItemIndex}].expenses[${activeItemIndex}].taxPaid`
|
|
"
|
|
v-model="
|
|
value.items[activeWoItemIndex].expenses[activeItemIndex].taxPaid
|
|
"
|
|
:readonly="formState.readOnly || isDeleted"
|
|
:disabled="isDeleted"
|
|
:label="$ay.t('WorkOrderItemExpenseTaxPaid')"
|
|
data-cy="expenses.taxPaid"
|
|
:error-messages="
|
|
form().serverErrors(
|
|
this,
|
|
`Items[${activeWoItemIndex}].expenses[${activeItemIndex}].taxPaid`
|
|
)
|
|
"
|
|
:rules="[
|
|
form().decimalValid(
|
|
this,
|
|
`Items[${activeWoItemIndex}].expenses[${activeItemIndex}].taxPaid`
|
|
),
|
|
form().required(
|
|
this,
|
|
`Items[${activeWoItemIndex}].expenses[${activeItemIndex}].taxPaid`
|
|
)
|
|
]"
|
|
@input="
|
|
fieldValueChanged(
|
|
`Items[${activeWoItemIndex}].expenses[${activeItemIndex}].taxPaid`
|
|
)
|
|
"
|
|
></gz-currency>
|
|
</v-col>
|
|
|
|
<v-col
|
|
v-if="
|
|
form().showMe(this, 'WorkOrderItemExpenseChargeTaxCodeID') &&
|
|
!value.userIsRestrictedType
|
|
"
|
|
cols="12"
|
|
sm="6"
|
|
lg="4"
|
|
xl="3"
|
|
>
|
|
<gz-pick-list
|
|
:ref="
|
|
`Items[${activeWoItemIndex}].expenses[${activeItemIndex}].chargeTaxCodeId`
|
|
"
|
|
v-model="
|
|
value.items[activeWoItemIndex].expenses[activeItemIndex]
|
|
.chargeTaxCodeId
|
|
"
|
|
:aya-type="$ay.ayt().TaxCode"
|
|
show-edit-icon
|
|
:readonly="formState.readOnly || isDeleted"
|
|
:disabled="isDeleted"
|
|
:label="$ay.t('WorkOrderItemExpenseChargeTaxCodeID')"
|
|
data-cy="expenses.chargeTaxCode"
|
|
:error-messages="
|
|
form().serverErrors(
|
|
this,
|
|
`Items[${activeWoItemIndex}].expenses[${activeItemIndex}].chargeTaxCodeId`
|
|
)
|
|
"
|
|
@input="
|
|
fieldValueChanged(
|
|
`Items[${activeWoItemIndex}].expenses[${activeItemIndex}].chargeTaxCodeId`
|
|
)
|
|
"
|
|
@update:name="taxCodeChange"
|
|
></gz-pick-list>
|
|
</v-col>
|
|
|
|
<v-col
|
|
v-if="
|
|
form().showMe(this, 'WorkOrderItemExpenseReimburseUser') &&
|
|
!value.userIsRestrictedType
|
|
"
|
|
cols="12"
|
|
sm="6"
|
|
lg="4"
|
|
xl="3"
|
|
>
|
|
<v-checkbox
|
|
:ref="
|
|
`Items[${activeWoItemIndex}].expenses[${activeItemIndex}].reimburseUser`
|
|
"
|
|
v-model="
|
|
value.items[activeWoItemIndex].expenses[activeItemIndex]
|
|
.reimburseUser
|
|
"
|
|
:readonly="formState.readOnly"
|
|
:disabled="isDeleted"
|
|
:label="$ay.t('WorkOrderItemExpenseReimburseUser')"
|
|
data-cy="expenses.reimburseUser"
|
|
:error-messages="
|
|
form().serverErrors(
|
|
this,
|
|
`Items[${activeWoItemIndex}].expenses[${activeItemIndex}].reimburseUser`
|
|
)
|
|
"
|
|
@change="
|
|
fieldValueChanged(
|
|
`Items[${activeWoItemIndex}].expenses[${activeItemIndex}].reimburseUser`
|
|
)
|
|
"
|
|
></v-checkbox>
|
|
</v-col>
|
|
|
|
<v-col
|
|
v-if="form().showMe(this, 'WorkOrderItemExpenseUserID')"
|
|
cols="12"
|
|
sm="6"
|
|
lg="4"
|
|
xl="3"
|
|
>
|
|
<gz-pick-list
|
|
:ref="
|
|
`Items[${activeWoItemIndex}].expenses[${activeItemIndex}].userId`
|
|
"
|
|
v-model="
|
|
value.items[activeWoItemIndex].expenses[activeItemIndex].userId
|
|
"
|
|
:aya-type="$ay.ayt().User"
|
|
variant="tech"
|
|
:show-edit-icon="!value.userIsRestrictedType"
|
|
:readonly="
|
|
formState.readOnly || isDeleted || value.userIsRestrictedType
|
|
"
|
|
:disabled="isDeleted"
|
|
:label="$ay.t('WorkOrderItemExpenseUserID')"
|
|
data-cy="expenses.user"
|
|
:error-messages="
|
|
form().serverErrors(
|
|
this,
|
|
`Items[${activeWoItemIndex}].expenses[${activeItemIndex}].userId`
|
|
)
|
|
"
|
|
@input="
|
|
fieldValueChanged(
|
|
`Items[${activeWoItemIndex}].expenses[${activeItemIndex}].userId`
|
|
)
|
|
"
|
|
@update:name="userChange"
|
|
></gz-pick-list>
|
|
</v-col>
|
|
|
|
<v-col
|
|
v-if="form().showMe(this, 'WorkOrderItemExpenseDescription')"
|
|
cols="12"
|
|
>
|
|
<v-textarea
|
|
:ref="
|
|
`Items[${activeWoItemIndex}].expenses[${activeItemIndex}].description`
|
|
"
|
|
v-model="
|
|
value.items[activeWoItemIndex].expenses[activeItemIndex]
|
|
.description
|
|
"
|
|
:readonly="formState.readOnly"
|
|
:disabled="isDeleted"
|
|
:label="$ay.t('WorkOrderItemExpenseDescription')"
|
|
:error-messages="
|
|
form().serverErrors(
|
|
this,
|
|
`Items[${activeWoItemIndex}].expenses[${activeItemIndex}].description`
|
|
)
|
|
"
|
|
data-cy="expenses.description"
|
|
auto-grow
|
|
@input="
|
|
fieldValueChanged(
|
|
`Items[${activeWoItemIndex}].expenses[${activeItemIndex}].description`
|
|
)
|
|
"
|
|
></v-textarea>
|
|
</v-col>
|
|
</template>
|
|
</v-row>
|
|
</div>
|
|
</template>
|
|
<script>
|
|
export default {
|
|
props: {
|
|
value: {
|
|
default: null,
|
|
type: Object
|
|
},
|
|
pvm: {
|
|
default: null,
|
|
type: Object
|
|
},
|
|
activeWoItemIndex: {
|
|
default: null,
|
|
type: Number
|
|
},
|
|
gotoIndex: {
|
|
default: null,
|
|
type: Number
|
|
}
|
|
},
|
|
data() {
|
|
return {
|
|
activeItemIndex: null,
|
|
selectedRow: []
|
|
};
|
|
},
|
|
computed: {
|
|
isDeleted: function() {
|
|
if (
|
|
this.value.items[this.activeWoItemIndex].expenses[
|
|
this.activeItemIndex
|
|
] == null
|
|
) {
|
|
this.setDefaultView();
|
|
return true;
|
|
}
|
|
return (
|
|
this.value.items[this.activeWoItemIndex].expenses[this.activeItemIndex]
|
|
.deleted === true
|
|
);
|
|
},
|
|
parentDeleted: function() {
|
|
return this.value.items[this.activeWoItemIndex].deleted === true;
|
|
},
|
|
|
|
headerList: function() {
|
|
const headers = [];
|
|
|
|
if (this.form().showMe(this, "WorkOrderItemExpenseName")) {
|
|
headers.push({
|
|
text: this.$ay.t("WorkOrderItemExpenseName"),
|
|
align: "start",
|
|
value: "name"
|
|
});
|
|
}
|
|
|
|
if (this.form().showMe(this, "WorkOrderItemExpenseTotalCost")) {
|
|
headers.push({
|
|
text: this.$ay.t("WorkOrderItemExpenseTotalCost"),
|
|
align: "right",
|
|
value: "totalCost"
|
|
});
|
|
}
|
|
|
|
if (this.form().showMe(this, "WorkOrderItemExpenseChargeAmount")) {
|
|
headers.push({
|
|
text: this.$ay.t("WorkOrderItemExpenseChargeAmount"),
|
|
align: "right",
|
|
value: "chargeAmount"
|
|
});
|
|
}
|
|
|
|
if (this.form().showMe(this, "WorkOrderItemExpenseChargeToCustomer")) {
|
|
headers.push({
|
|
text: this.$ay.t("WorkOrderItemExpenseChargeToCustomer"),
|
|
align: "center",
|
|
value: "chargeToCustomer"
|
|
});
|
|
}
|
|
|
|
if (this.form().showMe(this, "WorkOrderItemExpenseTaxPaid")) {
|
|
headers.push({
|
|
text: this.$ay.t("WorkOrderItemExpenseTaxPaid"),
|
|
align: "right",
|
|
value: "taxPaid"
|
|
});
|
|
}
|
|
|
|
if (this.form().showMe(this, "WorkOrderItemExpenseChargeTaxCodeID")) {
|
|
headers.push({
|
|
text: this.$ay.t("Tax"),
|
|
align: "left",
|
|
value: "taxCodeViz"
|
|
});
|
|
}
|
|
|
|
if (this.form().showMe(this, "ExpenseTaxAViz")) {
|
|
headers.push({
|
|
text: this.$ay.t("TaxAAmt"),
|
|
align: "right",
|
|
value: "taxAViz"
|
|
});
|
|
}
|
|
|
|
if (this.form().showMe(this, "ExpenseTaxBViz")) {
|
|
headers.push({
|
|
text: this.$ay.t("TaxBAmt"),
|
|
align: "right",
|
|
value: "taxBViz"
|
|
});
|
|
}
|
|
|
|
if (this.form().showMe(this, "ExpenseLineTotalViz")) {
|
|
headers.push({
|
|
text: this.$ay.t("LineTotal"),
|
|
align: "right",
|
|
value: "lineTotalViz"
|
|
});
|
|
}
|
|
|
|
if (this.form().showMe(this, "WorkOrderItemExpenseReimburseUser")) {
|
|
headers.push({
|
|
text: this.$ay.t("WorkOrderItemExpenseReimburseUser"),
|
|
align: "center",
|
|
value: "reimburseUser"
|
|
});
|
|
}
|
|
|
|
if (this.form().showMe(this, "WorkOrderItemExpenseUserID")) {
|
|
headers.push({
|
|
text: this.$ay.t("WorkOrderItemExpenseUserID"),
|
|
align: "left",
|
|
value: "userViz"
|
|
});
|
|
}
|
|
|
|
return headers;
|
|
},
|
|
itemList: function() {
|
|
return this.value.items[this.activeWoItemIndex].expenses.map((x, i) => {
|
|
return {
|
|
index: i,
|
|
id: x.id,
|
|
name: x.name,
|
|
totalCost: window.$gz.locale.currencyLocalized(
|
|
x.totalCost,
|
|
this.pvm.languageName,
|
|
this.pvm.currencyName
|
|
),
|
|
chargeAmount: window.$gz.locale.currencyLocalized(
|
|
x.chargeAmount,
|
|
this.pvm.languageName,
|
|
this.pvm.currencyName
|
|
),
|
|
chargeToCustomer: x.chargeToCustomer,
|
|
taxPaid: window.$gz.locale.currencyLocalized(
|
|
x.taxPaid,
|
|
this.pvm.languageName,
|
|
this.pvm.currencyName
|
|
),
|
|
taxCodeViz: x.taxCodeViz,
|
|
taxAViz: window.$gz.locale.currencyLocalized(
|
|
x.taxAViz,
|
|
this.pvm.languageName,
|
|
this.pvm.currencyName
|
|
),
|
|
taxBViz: window.$gz.locale.currencyLocalized(
|
|
x.taxBViz,
|
|
this.pvm.languageName,
|
|
this.pvm.currencyName
|
|
),
|
|
lineTotalViz: window.$gz.locale.currencyLocalized(
|
|
x.lineTotalViz,
|
|
this.pvm.languageName,
|
|
this.pvm.currencyName
|
|
),
|
|
reimburseUser: x.reimburseUser,
|
|
userViz: x.userViz
|
|
};
|
|
});
|
|
},
|
|
formState: function() {
|
|
return this.pvm.formState;
|
|
},
|
|
formCustomTemplateKey: function() {
|
|
return this.pvm.formCustomTemplateKey;
|
|
},
|
|
hasData: function() {
|
|
return this.value.items[this.activeWoItemIndex].expenses.length > 0;
|
|
},
|
|
hasSelection: function() {
|
|
return this.activeItemIndex != null;
|
|
},
|
|
canAdd: function() {
|
|
return this.pvm.rights.change;
|
|
},
|
|
canDelete: function() {
|
|
return this.activeItemIndex != null && this.pvm.rights.change;
|
|
},
|
|
canDeleteAll: function() {
|
|
return this.pvm.rights.change && !this.value.userIsRestrictedType;
|
|
}
|
|
},
|
|
watch: {
|
|
activeWoItemIndex(val, oldVal) {
|
|
if (val != oldVal) {
|
|
this.setDefaultView();
|
|
}
|
|
},
|
|
gotoIndex(val, oldVal) {
|
|
if (val != oldVal) {
|
|
let gotoIndex = val;
|
|
if (val < 0) {
|
|
//it's a create request
|
|
gotoIndex = this.newItem();
|
|
}
|
|
|
|
this.selectedRow = [{ index: gotoIndex }];
|
|
this.activeItemIndex = gotoIndex;
|
|
this.$nextTick(() => {
|
|
const el = this.$refs.expensetopform;
|
|
if (el) {
|
|
el.scrollIntoView({ behavior: "smooth" });
|
|
}
|
|
});
|
|
}
|
|
}
|
|
},
|
|
created() {
|
|
this.setDefaultView();
|
|
},
|
|
methods: {
|
|
userChange(newName) {
|
|
this.value.items[this.activeWoItemIndex].expenses[
|
|
this.activeItemIndex
|
|
].userViz = newName;
|
|
},
|
|
taxCodeChange(newName) {
|
|
this.value.items[this.activeWoItemIndex].expenses[
|
|
this.activeItemIndex
|
|
].taxCodeViz = newName;
|
|
},
|
|
newItem() {
|
|
const newIndex = this.value.items[this.activeWoItemIndex].expenses.length;
|
|
|
|
//#################################### IMPORTANT ##################################################
|
|
//NOTE: default values are critical and must match server validation ExpenseValidateAsync for restricted users
|
|
//so that they are in agreement otherwise restricted users will never be able to create new records
|
|
|
|
this.value.items[this.activeWoItemIndex].expenses.push({
|
|
id: 0,
|
|
concurrency: 0,
|
|
description: null,
|
|
name: null,
|
|
totalCost: 0,
|
|
chargeAmount: 0,
|
|
taxPaid: 0,
|
|
chargeTaxCodeId: null,
|
|
taxCodeViz: null,
|
|
reimburseUser: false,
|
|
userId: this.$store.getters.isScheduleableUser
|
|
? this.$store.state.userId
|
|
: null,
|
|
userViz: this.$store.getters.isScheduleableUser
|
|
? this.$store.state.userName
|
|
: null,
|
|
chargeToCustomer: false,
|
|
isDirty: true,
|
|
workOrderItemId: this.value.items[this.activeWoItemIndex].id,
|
|
uid: Date.now() //used for error tracking / display
|
|
});
|
|
this.$emit("change");
|
|
this.selectedRow = [{ index: newIndex }];
|
|
this.activeItemIndex = newIndex;
|
|
return newIndex; //for create new on goto
|
|
},
|
|
unDeleteItem() {
|
|
this.value.items[this.activeWoItemIndex].expenses[
|
|
this.activeItemIndex
|
|
].deleted = false;
|
|
this.setDefaultView();
|
|
},
|
|
deleteItem() {
|
|
this.value.items[this.activeWoItemIndex].expenses[
|
|
this.activeItemIndex
|
|
].deleted = true;
|
|
this.setDefaultView();
|
|
this.$emit("change");
|
|
},
|
|
deleteAllItem() {
|
|
this.value.items[this.activeWoItemIndex].expenses.forEach(
|
|
z => (z.deleted = true)
|
|
);
|
|
this.setDefaultView();
|
|
this.$emit("change");
|
|
},
|
|
setDefaultView: function() {
|
|
//if only one record left then display it otherwise just let the datatable show what the user can click on
|
|
if (
|
|
this.hasData &&
|
|
this.value.items[this.activeWoItemIndex].expenses.length == 1
|
|
) {
|
|
this.selectedRow = [{ index: 0 }];
|
|
this.activeItemIndex = 0;
|
|
} else {
|
|
this.selectedRow = [];
|
|
this.activeItemIndex = null; //select nothing in essence resetting a child selects and this one too clearing form
|
|
}
|
|
},
|
|
handleRowClick: function(item) {
|
|
this.activeItemIndex = item.index;
|
|
this.selectedRow = [{ index: item.index }];
|
|
},
|
|
form() {
|
|
return window.$gz.form;
|
|
},
|
|
fieldValueChanged(ref) {
|
|
if (!this.formState.loading && !this.formState.readonly) {
|
|
//flag this record dirty so it gets picked up by save
|
|
this.value.items[this.activeWoItemIndex].expenses[
|
|
this.activeItemIndex
|
|
].isDirty = true;
|
|
window.$gz.form.fieldValueChanged(this.pvm, ref);
|
|
}
|
|
},
|
|
itemRowClasses: function(item) {
|
|
let ret = "";
|
|
const isDeleted =
|
|
this.value.items[this.activeWoItemIndex].expenses[item.index]
|
|
.deleted === true;
|
|
|
|
const hasError = this.form().childRowHasError(
|
|
this,
|
|
`Items[${this.activeWoItemIndex}].Expenses[${item.index}].`
|
|
);
|
|
|
|
if (isDeleted) {
|
|
ret += this.form().tableRowDeletedClass();
|
|
}
|
|
if (hasError) {
|
|
ret += this.form().tableRowErrorClass();
|
|
}
|
|
return ret;
|
|
}
|
|
}
|
|
};
|
|
</script>
|