CLEANUP remove extraneous containers and rows and columns
This commit is contained in:
@@ -22,7 +22,7 @@ todo: Notification at server has NotifyDeliveryLog object unused and no UI at fr
|
|||||||
and no ui to view them?!
|
and no ui to view them?!
|
||||||
figure it out
|
figure it out
|
||||||
|
|
||||||
todo: do not compare null in queries so double check and instead make sure it's using "Is not null" or "is null" instead as results are non determinant otherwise
|
todo: figure out the grid view form slowness, maybe there are extraneous elements or something, it's important because it's oft-used
|
||||||
|
|
||||||
todo: unitmodel, maybe can make a combo unique constraint for the model number or name by combining with the vendorID
|
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?
|
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?
|
||||||
|
|||||||
@@ -18,14 +18,6 @@
|
|||||||
deletable-chips
|
deletable-chips
|
||||||
cache-items
|
cache-items
|
||||||
>
|
>
|
||||||
<!-- <template v-slot:no-data>
|
|
||||||
<v-list-item>
|
|
||||||
<v-list-item-title>
|
|
||||||
Search for your favorite
|
|
||||||
<strong>TAG</strong>
|
|
||||||
</v-list-item-title>
|
|
||||||
</v-list-item>
|
|
||||||
</template> -->
|
|
||||||
<template slot="no-data" v-if="tagSearchEntry">
|
<template slot="no-data" v-if="tagSearchEntry">
|
||||||
<v-container fluid>
|
<v-container fluid>
|
||||||
<v-row>
|
<v-row>
|
||||||
@@ -47,7 +39,7 @@
|
|||||||
/////////////////////////////////////////////////////////////////////////////////////////////////////////////
|
/////////////////////////////////////////////////////////////////////////////////////////////////////////////
|
||||||
/* eslint-disable */
|
/* eslint-disable */
|
||||||
////////////////////////////////////////////////////////////////////////////////////////////////////////////
|
////////////////////////////////////////////////////////////////////////////////////////////////////////////
|
||||||
//NOTE: I had some concerns about how the selection is made, but leving it for now
|
//NOTE: I had some concerns about how the selection is made, but leaving it for now
|
||||||
//basically the typed text stays after you select from dropdown, however, it clears as soon as you tab off
|
//basically the typed text stays after you select from dropdown, however, it clears as soon as you tab off
|
||||||
//and in theory it could help if picking more than one tag that have similar selection criteria
|
//and in theory it could help if picking more than one tag that have similar selection criteria
|
||||||
export default {
|
export default {
|
||||||
|
|||||||
@@ -9,25 +9,17 @@
|
|||||||
<span class="headline">{{ $ay.t("FindAndReplace") }}</span>
|
<span class="headline">{{ $ay.t("FindAndReplace") }}</span>
|
||||||
</v-card-title>
|
</v-card-title>
|
||||||
<v-card-text>
|
<v-card-text>
|
||||||
<v-container>
|
<v-text-field
|
||||||
<v-row>
|
v-model="find"
|
||||||
<v-col cols="12">
|
:label="$ay.t('Find')"
|
||||||
<v-text-field
|
required
|
||||||
v-model="find"
|
></v-text-field>
|
||||||
:label="$ay.t('Find')"
|
|
||||||
required
|
|
||||||
></v-text-field>
|
|
||||||
</v-col>
|
|
||||||
|
|
||||||
<v-col cols="12">
|
<v-text-field
|
||||||
<v-text-field
|
v-model="replace"
|
||||||
v-model="replace"
|
:label="$ay.t('Replace')"
|
||||||
:label="$ay.t('Replace')"
|
required
|
||||||
required
|
></v-text-field>
|
||||||
></v-text-field>
|
|
||||||
</v-col>
|
|
||||||
</v-row>
|
|
||||||
</v-container>
|
|
||||||
</v-card-text>
|
</v-card-text>
|
||||||
<v-card-actions>
|
<v-card-actions>
|
||||||
<v-spacer></v-spacer>
|
<v-spacer></v-spacer>
|
||||||
|
|||||||
@@ -1,5 +1,5 @@
|
|||||||
<template>
|
<template>
|
||||||
<div>
|
<div>
|
||||||
<gz-report-selector ref="reportSelector"></gz-report-selector>
|
<gz-report-selector ref="reportSelector"></gz-report-selector>
|
||||||
|
|
||||||
<div v-if="formState.ready">
|
<div v-if="formState.ready">
|
||||||
|
|||||||
@@ -4,60 +4,37 @@
|
|||||||
<v-dialog v-model="seedDialog" persistent max-width="600px">
|
<v-dialog v-model="seedDialog" persistent max-width="600px">
|
||||||
<v-card>
|
<v-card>
|
||||||
<v-card-title>
|
<v-card-title>
|
||||||
<span class="headline">{{ $ay.t("GenerateSampleData") }}</span>
|
<span class="headline mb-2">{{
|
||||||
|
$ay.t("GenerateSampleData")
|
||||||
|
}}</span>
|
||||||
</v-card-title>
|
</v-card-title>
|
||||||
<v-card-text>
|
<v-card-text>
|
||||||
<v-container>
|
<div v-if="formState.readOnly" class="text-h6 mt-8 warning--text">
|
||||||
<v-row>
|
{{ $ay.t("ErrorSecurityAdministratorOnlyMessage") }}
|
||||||
<v-col cols="12">
|
</div>
|
||||||
<!-- <div class="text-h5 mt-8 mb-2">
|
<v-select
|
||||||
{{ $ay.t("GenerateSampleData") }}
|
v-model="obj.seedLevel"
|
||||||
</div> -->
|
:items="selectLists.seedLevels"
|
||||||
<v-col cols="12" v-if="formState.readOnly">
|
:rules="[form().required(this, 'seedLevel')]"
|
||||||
<div class="text-h6 mt-8 warning--text">
|
@input="fieldValueChanged('seedLevel')"
|
||||||
{{ $ay.t("ErrorSecurityAdministratorOnlyMessage") }}
|
ref="seedLevel"
|
||||||
</div>
|
item-text="name"
|
||||||
</v-col>
|
item-value="id"
|
||||||
<v-col cols="12">
|
:readonly="formState.readOnly"
|
||||||
<v-select
|
:label="$ay.t('SeedLevel')"
|
||||||
v-model="obj.seedLevel"
|
></v-select>
|
||||||
:items="selectLists.seedLevels"
|
<v-text-field
|
||||||
:rules="[form().required(this, 'seedLevel')]"
|
v-model="obj.timeZoneOffset"
|
||||||
@input="fieldValueChanged('seedLevel')"
|
:readonly="formState.readOnly"
|
||||||
ref="seedLevel"
|
:rules="[
|
||||||
item-text="name"
|
form().decimalValid(this, 'timeZoneOffset'),
|
||||||
item-value="id"
|
form().required(this, 'timeZoneOffset')
|
||||||
:readonly="formState.readOnly"
|
]"
|
||||||
:label="$ay.t('SeedLevel')"
|
:label="$ay.t('UserTimeZoneOffset')"
|
||||||
></v-select>
|
type="number"
|
||||||
</v-col>
|
ref="timeZoneOffset"
|
||||||
<v-col cols="12">
|
@input="fieldValueChanged('timeZoneOffset')"
|
||||||
<v-text-field
|
></v-text-field>
|
||||||
v-model="obj.timeZoneOffset"
|
|
||||||
:readonly="formState.readOnly"
|
|
||||||
:rules="[
|
|
||||||
form().decimalValid(this, 'timeZoneOffset'),
|
|
||||||
form().required(this, 'timeZoneOffset')
|
|
||||||
]"
|
|
||||||
:label="$ay.t('UserTimeZoneOffset')"
|
|
||||||
type="number"
|
|
||||||
ref="timeZoneOffset"
|
|
||||||
@input="fieldValueChanged('timeZoneOffset')"
|
|
||||||
></v-text-field>
|
|
||||||
</v-col>
|
|
||||||
|
|
||||||
<!-- <v-col cols="12">
|
|
||||||
<v-btn
|
|
||||||
:loading="seedingJobActive"
|
|
||||||
|
|
||||||
@click="generate()"
|
|
||||||
class="my-8 mr-4"
|
|
||||||
>{{ $ay.t("StartJob") }}</v-btn
|
|
||||||
>
|
|
||||||
</v-col> -->
|
|
||||||
</v-col>
|
|
||||||
</v-row>
|
|
||||||
</v-container>
|
|
||||||
</v-card-text>
|
</v-card-text>
|
||||||
<v-card-actions>
|
<v-card-actions>
|
||||||
<v-spacer></v-spacer>
|
<v-spacer></v-spacer>
|
||||||
|
|||||||
@@ -1,5 +1,5 @@
|
|||||||
<template>
|
<template>
|
||||||
<v-container fluid>
|
<div>
|
||||||
<v-row v-if="formState.ready">
|
<v-row v-if="formState.ready">
|
||||||
<v-col>
|
<v-col>
|
||||||
<v-form ref="form">
|
<v-form ref="form">
|
||||||
@@ -132,7 +132,7 @@
|
|||||||
:size="60"
|
:size="60"
|
||||||
></v-progress-circular>
|
></v-progress-circular>
|
||||||
</template>
|
</template>
|
||||||
</v-container>
|
</div>
|
||||||
</template>
|
</template>
|
||||||
|
|
||||||
<script>
|
<script>
|
||||||
|
|||||||
@@ -1,5 +1,5 @@
|
|||||||
<template>
|
<template>
|
||||||
<v-container fluid>
|
<div>
|
||||||
<gz-report-selector ref="reportSelector"></gz-report-selector>
|
<gz-report-selector ref="reportSelector"></gz-report-selector>
|
||||||
<div v-if="formState.ready">
|
<div v-if="formState.ready">
|
||||||
<gz-error :errorBoxMessage="formState.errorBoxMessage"></gz-error>
|
<gz-error :errorBoxMessage="formState.errorBoxMessage"></gz-error>
|
||||||
@@ -131,7 +131,7 @@
|
|||||||
:size="60"
|
:size="60"
|
||||||
></v-progress-circular>
|
></v-progress-circular>
|
||||||
</template>
|
</template>
|
||||||
</v-container>
|
</div>
|
||||||
</template>
|
</template>
|
||||||
|
|
||||||
<script>
|
<script>
|
||||||
|
|||||||
@@ -1,5 +1,5 @@
|
|||||||
<template>
|
<template>
|
||||||
<v-container fluid>
|
<div>
|
||||||
<gz-report-selector ref="reportSelector"></gz-report-selector>
|
<gz-report-selector ref="reportSelector"></gz-report-selector>
|
||||||
<div v-if="formState.ready">
|
<div v-if="formState.ready">
|
||||||
<gz-error :errorBoxMessage="formState.errorBoxMessage"></gz-error>
|
<gz-error :errorBoxMessage="formState.errorBoxMessage"></gz-error>
|
||||||
@@ -167,7 +167,7 @@
|
|||||||
:size="60"
|
:size="60"
|
||||||
></v-progress-circular>
|
></v-progress-circular>
|
||||||
</template>
|
</template>
|
||||||
</v-container>
|
</div>
|
||||||
</template>
|
</template>
|
||||||
|
|
||||||
<script>
|
<script>
|
||||||
|
|||||||
@@ -1,5 +1,5 @@
|
|||||||
<template>
|
<template>
|
||||||
<v-container fluid>
|
<div>
|
||||||
<v-row justify="center">
|
<v-row justify="center">
|
||||||
<v-dialog v-model="testDialog" persistent max-width="600px">
|
<v-dialog v-model="testDialog" persistent max-width="600px">
|
||||||
<v-card>
|
<v-card>
|
||||||
@@ -7,18 +7,12 @@
|
|||||||
<span class="headline">{{ $ay.t("TestSMTPSettings") }}</span>
|
<span class="headline">{{ $ay.t("TestSMTPSettings") }}</span>
|
||||||
</v-card-title>
|
</v-card-title>
|
||||||
<v-card-text>
|
<v-card-text>
|
||||||
<v-container>
|
<v-text-field
|
||||||
<v-row>
|
v-model="testAddress"
|
||||||
<v-col cols="12">
|
:label="$ay.t('TestToAddress')"
|
||||||
<v-text-field
|
required
|
||||||
v-model="testAddress"
|
hint="test_send_to@example.com"
|
||||||
:label="$ay.t('TestToAddress')"
|
></v-text-field>
|
||||||
required
|
|
||||||
hint="test_send_to@example.com"
|
|
||||||
></v-text-field>
|
|
||||||
</v-col>
|
|
||||||
</v-row>
|
|
||||||
</v-container>
|
|
||||||
</v-card-text>
|
</v-card-text>
|
||||||
<v-card-actions>
|
<v-card-actions>
|
||||||
<v-spacer></v-spacer>
|
<v-spacer></v-spacer>
|
||||||
@@ -159,7 +153,7 @@
|
|||||||
</v-form>
|
</v-form>
|
||||||
</v-col>
|
</v-col>
|
||||||
</v-row>
|
</v-row>
|
||||||
</v-container>
|
</div>
|
||||||
</template>
|
</template>
|
||||||
|
|
||||||
<script>
|
<script>
|
||||||
|
|||||||
@@ -1,5 +1,5 @@
|
|||||||
<template>
|
<template>
|
||||||
<v-container fluid>
|
<div>
|
||||||
<gz-report-selector ref="reportSelector"></gz-report-selector>
|
<gz-report-selector ref="reportSelector"></gz-report-selector>
|
||||||
<div v-if="formState.ready">
|
<div v-if="formState.ready">
|
||||||
<gz-error :errorBoxMessage="formState.errorBoxMessage"></gz-error>
|
<gz-error :errorBoxMessage="formState.errorBoxMessage"></gz-error>
|
||||||
@@ -179,7 +179,7 @@
|
|||||||
:size="60"
|
:size="60"
|
||||||
></v-progress-circular>
|
></v-progress-circular>
|
||||||
</template>
|
</template>
|
||||||
</v-container>
|
</div>
|
||||||
</template>
|
</template>
|
||||||
|
|
||||||
<script>
|
<script>
|
||||||
|
|||||||
@@ -1,5 +1,5 @@
|
|||||||
<template>
|
<template>
|
||||||
<v-container fluid>
|
<div>
|
||||||
<gz-report-selector ref="reportSelector"></gz-report-selector>
|
<gz-report-selector ref="reportSelector"></gz-report-selector>
|
||||||
<div v-if="formState.ready">
|
<div v-if="formState.ready">
|
||||||
<gz-error :errorBoxMessage="formState.errorBoxMessage"></gz-error>
|
<gz-error :errorBoxMessage="formState.errorBoxMessage"></gz-error>
|
||||||
@@ -258,7 +258,7 @@
|
|||||||
:size="60"
|
:size="60"
|
||||||
></v-progress-circular>
|
></v-progress-circular>
|
||||||
</template>
|
</template>
|
||||||
</v-container>
|
</div>
|
||||||
</template>
|
</template>
|
||||||
|
|
||||||
<script>
|
<script>
|
||||||
|
|||||||
@@ -1,5 +1,5 @@
|
|||||||
<template>
|
<template>
|
||||||
<v-container fluid>
|
<div>
|
||||||
<gz-report-selector ref="reportSelector"></gz-report-selector>
|
<gz-report-selector ref="reportSelector"></gz-report-selector>
|
||||||
<div v-if="formState.ready">
|
<div v-if="formState.ready">
|
||||||
<gz-error :errorBoxMessage="formState.errorBoxMessage"></gz-error>
|
<gz-error :errorBoxMessage="formState.errorBoxMessage"></gz-error>
|
||||||
@@ -583,7 +583,7 @@
|
|||||||
:size="60"
|
:size="60"
|
||||||
></v-progress-circular>
|
></v-progress-circular>
|
||||||
</template>
|
</template>
|
||||||
</v-container>
|
</div>
|
||||||
</template>
|
</template>
|
||||||
|
|
||||||
<script>
|
<script>
|
||||||
|
|||||||
@@ -1,7 +1,7 @@
|
|||||||
<template>
|
<template>
|
||||||
<v-container fluid>
|
<div>
|
||||||
<gz-report-selector ref="reportSelector"></gz-report-selector>
|
<gz-report-selector ref="reportSelector"></gz-report-selector>
|
||||||
<!-- {{ formState }} -->
|
|
||||||
<v-row v-if="formState.ready">
|
<v-row v-if="formState.ready">
|
||||||
<v-col>
|
<v-col>
|
||||||
<v-form ref="form">
|
<v-form ref="form">
|
||||||
@@ -232,7 +232,7 @@
|
|||||||
:size="60"
|
:size="60"
|
||||||
></v-progress-circular>
|
></v-progress-circular>
|
||||||
</template>
|
</template>
|
||||||
</v-container>
|
</div>
|
||||||
</template>
|
</template>
|
||||||
|
|
||||||
<script>
|
<script>
|
||||||
|
|||||||
Reference in New Issue
Block a user