This commit is contained in:
2021-01-02 18:59:42 +00:00
parent ee4fb103de
commit 6e7d786744
9 changed files with 37 additions and 52 deletions

View File

@@ -23,6 +23,8 @@ todo: Notification at server has NotifyDeliveryLog object unused and no UI at fr
figure it out
todo: figure out the grid view form slowness, maybe there are extraneous elements or something, it's important because it's oft-used
todo: in many areas I'm using unnecessary v-row elements, only one is necessary
Do a quick search for v-row and see what's what
todo: unitmodel, maybe can make a combo unique constraint for the model number or name by combining with the vendorID
it's doubtful two models from the same vendor would have the same model number so this covers that case or am I wrong on that?
@@ -63,11 +65,7 @@ todo: actual customer reports so can figure out datalist for bringing other name
CURRENTLY DOING:
Unit - front end
put warranty override in tab of it's own
override warranty checkbox should gray out override terms
Unit
Report isn't tested yet
Migration code

View File

@@ -19,18 +19,12 @@
cache-items
>
<template slot="no-data" v-if="tagSearchEntry">
<v-container fluid>
<v-row>
<v-row justify-center>
<v-chip color="primary" text-color="white" class="display-1">
{{ this.normalizeTag(tagSearchEntry) }}</v-chip
>
<v-btn large icon @click="addTag()">
<v-icon large color="success">$ayiPlusCircle</v-icon>
</v-btn>
</v-row>
</v-row>
</v-container>
<v-chip color="primary" text-color="white" class="display-1">
{{ this.normalizeTag(tagSearchEntry) }}</v-chip
>
<v-btn large icon @click="addTag()">
<v-icon large color="success">$ayiPlusCircle</v-icon>
</v-btn>
</template>
</v-autocomplete>
</div>

View File

@@ -33,29 +33,22 @@
<span class="headline">{{ $ay.t("MoveSelected") }}</span>
</v-card-title>
<v-card-text>
<v-container>
<v-row>
<v-col cols="12">
<v-select
v-model="moveType"
:items="selectLists.objectTypes"
item-text="name"
item-value="id"
:label="$ay.t('AyaType')"
></v-select>
</v-col>
<v-select
v-model="moveType"
:items="selectLists.objectTypes"
item-text="name"
item-value="id"
:label="$ay.t('AyaType')"
></v-select>
<v-col cols="12" v-if="moveType != 0">
<gz-pick-list
:ayaType="moveType"
:showEditIcon="false"
:includeInactive="true"
v-model="moveId"
label="Id"
></gz-pick-list>
</v-col>
</v-row>
</v-container>
<gz-pick-list
v-if="moveType != 0"
:ayaType="moveType"
:showEditIcon="false"
:includeInactive="true"
v-model="moveId"
label="Id"
></gz-pick-list>
</v-card-text>
<v-card-actions>
<v-spacer></v-spacer>

View File

@@ -11,7 +11,7 @@
<v-tab v-if="obj.id != 0">{{ $ay.t("UserSettings") }}</v-tab>
<v-tabs-items v-model="tab">
<v-tab-item class="mt-4">
<v-tab-item class="mt-4 ml-2">
<v-row>
<v-col cols="12" sm="6" lg="4" xl="3">
<v-text-field
@@ -216,7 +216,7 @@
></v-col>
</v-row>
</v-tab-item>
<v-tab-item v-if="obj.id != 0" class="mt-4">
<v-tab-item v-if="obj.id != 0" class="mt-4 ml-2">
<v-row>
<v-col cols="12" sm="6" lg="4" xl="3">
<v-select

View File

@@ -13,7 +13,7 @@
<v-tab>{{ $ay.t("Contacts") }}</v-tab>
<v-tabs-items v-model="tab">
<v-tab-item class="mt-4">
<v-tab-item class="mt-4 ml-2">
<v-row>
<v-col cols="12" sm="6" lg="4" xl="3">
<v-text-field
@@ -418,7 +418,7 @@
></v-col>
</v-row>
</v-tab-item>
<v-tab-item class="mt-4">
<v-tab-item class="mt-4 ml-2">
<v-row>
<v-col cols="12">
<v-menu offset-y v-if="rights.change">
@@ -696,7 +696,7 @@
</v-col>
</v-row>
</v-tab-item>
<v-tab-item class="mt-4">
<v-tab-item class="mt-4 ml-2">
<v-row>
<v-col cols="12">
<v-data-table

View File

@@ -13,7 +13,7 @@
<v-tab>{{ $ay.t("Contacts") }}</v-tab>
<v-tabs-items v-model="tab">
<v-tab-item class="mt-4">
<v-tab-item class="mt-4 ml-2">
<v-row>
<v-col cols="12" sm="6" lg="4" xl="3">
<v-text-field
@@ -323,7 +323,7 @@
></v-col>
</v-row>
</v-tab-item>
<v-tab-item class="mt-4">
<v-tab-item class="mt-4 ml-2">
<v-row>
<v-col cols="12">
<v-menu offset-y v-if="rights.change">
@@ -601,7 +601,7 @@
</v-col>
</v-row>
</v-tab-item>
<v-tab-item class="mt-4">
<v-tab-item class="mt-4 ml-2">
<v-row>
<v-col cols="12">
<v-data-table

View File

@@ -11,7 +11,7 @@
<v-tab v-if="obj.id != 0">{{ $ay.t("UserSettings") }}</v-tab>
<v-tabs-items v-model="tab">
<v-tab-item class="mt-4">
<v-tab-item class="mt-4 ml-2">
<v-row>
<v-col
v-if="form().showMe(this, 'customerId') && obj.userType == 3"
@@ -206,7 +206,7 @@
></v-col>
</v-row>
</v-tab-item>
<v-tab-item v-if="obj.id != 0" class="mt-4">
<v-tab-item v-if="obj.id != 0" class="mt-4 ml-2">
<v-row>
<v-col cols="12" sm="6" lg="4" xl="3">
<v-select

View File

@@ -577,7 +577,7 @@
################################# WARRANTY TAB #########################
-->
<v-tab-item class="mt-4 ml-2">
<v-tab-item class="mt-4 ml-2">
<v-row>
<v-col cols="12" sm="6" lg="4" xl="3">
<v-checkbox

View File

@@ -9,7 +9,7 @@
<v-tab>{{ $ay.t("Vendor") }}</v-tab>
<v-tab>{{ $ay.t("Address") }}</v-tab>
<v-tabs-items v-model="tab">
<v-tab-item class="mt-4">
<v-tab-item class="mt-4 ml-2">
<v-row>
<v-col cols="12" sm="6" lg="4" xl="3">
<v-text-field
@@ -294,7 +294,7 @@
></v-col>
</v-row>
</v-tab-item>
<v-tab-item class="mt-4">
<v-tab-item class="mt-4 ml-2">
<v-row>
<v-col cols="12">
<v-menu offset-y v-if="rights.change">