This commit is contained in:
2021-09-22 19:20:36 +00:00
parent acfcaac5cf
commit b5988fc84b

View File

@@ -344,7 +344,46 @@
<v-card>
<v-card-title> </v-card-title>
<v-card-text>
settings here
<v-row no-gutters>
<v-col cols="12">
<v-checkbox
v-model="formUserOptions.wisu"
:label="$ay.t('WorkOrderItemScheduledUser')"
></v-checkbox>
</v-col>
<v-col cols="12">
<v-radio-group
v-model="formUserOptions.wisuColorSource"
:mandatory="true"
>
<v-radio :label="$ay.t('None')" value="0"></v-radio>
<v-radio
:label="$ay.t('WorkOrderStatus')"
value="2"
></v-radio>
<v-radio
:label="$ay.t('WorkOrderItemStatus')"
value="3"
></v-radio>
<v-radio
:label="$ay.t('WorkOrderItemPriority')"
value="4"
></v-radio>
</v-radio-group>
</v-col>
<v-col cols="12">
<v-checkbox
v-model="formUserOptions.reviews"
:label="$ay.t('Review')"
></v-checkbox>
</v-col>
<v-col cols="12">
<v-checkbox
v-model="formUserOptions.reminders"
:label="$ay.t('Reminder')"
></v-checkbox>
</v-col>
</v-row>
</v-card-text>
<v-card-actions>
<v-btn text @click="settingsDialog = false" color="primary">{{
@@ -935,6 +974,7 @@ export default {
}
},
async saveUserOptions() {
this.settingsDialog = false;
await saveFormUserOptions(this);
}
//eom