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