This commit is contained in:
@@ -7,6 +7,16 @@
|
||||
|
||||
TODO: SET DEADLINES
|
||||
|
||||
TODO: Joyce testing items
|
||||
Inventory:
|
||||
find flaws in inventory
|
||||
try to unbalance inventory
|
||||
can only consume through adjustments at the moment but can add from po and adjustments
|
||||
multiple simultaneous edits to same part should just work and not break or go out of balance
|
||||
Translations anywhere in UI: login as alternate language and look for missing translations that show in English
|
||||
note that some languages the translation is the same for some words so need to cross check e.g. in German then in French (spanish is often similar to french)
|
||||
|
||||
|
||||
MISC ITEMS THAT CAME UP
|
||||
|
||||
## CLIENT MISC ITEMS
|
||||
|
||||
@@ -251,6 +251,7 @@
|
||||
:loading-text="$ay.t('Loading')"
|
||||
class="elevation-1"
|
||||
data-cy="datatable"
|
||||
:no-data-text="$ay.t('NoData')"
|
||||
>
|
||||
<template v-slot:body="{ items }">
|
||||
<v-row>
|
||||
|
||||
@@ -16,6 +16,7 @@
|
||||
:disable-filtering="true"
|
||||
hide-default-footer
|
||||
hide-default-header
|
||||
:no-data-text="$ay.t('NoData')"
|
||||
>
|
||||
</v-data-table>
|
||||
</div>
|
||||
|
||||
@@ -99,6 +99,7 @@
|
||||
}"
|
||||
:header-props="{ sortByText: $ay.t('Sort') }"
|
||||
:search="search"
|
||||
:no-data-text="$ay.t('NoData')"
|
||||
must-sort
|
||||
>
|
||||
<template
|
||||
|
||||
@@ -700,6 +700,7 @@
|
||||
:show-select="false"
|
||||
:header-props="{ sortByText: $ay.t('Sort') }"
|
||||
data-cy="custUsersTable"
|
||||
:no-data-text="$ay.t('NoData')"
|
||||
>
|
||||
<template v-slot:[`item.active`]="{ item }">
|
||||
<v-simple-checkbox
|
||||
|
||||
@@ -609,6 +609,7 @@
|
||||
:show-select="false"
|
||||
:header-props="{ sortByText: $ay.t('Sort') }"
|
||||
data-cy="custUsersTable"
|
||||
:no-data-text="$ay.t('NoData')"
|
||||
>
|
||||
<template v-slot:[`item.active`]="{ item }">
|
||||
<v-simple-checkbox
|
||||
|
||||
@@ -11,6 +11,7 @@
|
||||
@click:row="rowClick"
|
||||
:header-props="{ sortByText: $ay.t('Sort') }"
|
||||
data-cy="subsTable"
|
||||
:no-data-text="$ay.t('NoData')"
|
||||
>
|
||||
</v-data-table>
|
||||
</div>
|
||||
|
||||
@@ -237,6 +237,7 @@
|
||||
data-cy="itemsTable"
|
||||
dense
|
||||
:item-class="poItemsRowClasses"
|
||||
:no-data-text="$ay.t('NoData')"
|
||||
>
|
||||
<template v-slot:top>
|
||||
<v-col cols="12">
|
||||
@@ -745,6 +746,7 @@
|
||||
hide-default-footer
|
||||
data-cy="restockTable"
|
||||
dense
|
||||
:no-data-text="$ay.t('NoData')"
|
||||
>
|
||||
</v-data-table>
|
||||
</v-col>
|
||||
|
||||
@@ -73,6 +73,7 @@
|
||||
:sort-desc="[true]"
|
||||
:header-props="{ sortByText: $ay.t('Sort') }"
|
||||
data-cy="backupTable"
|
||||
:no-data-text="$ay.t('NoData')"
|
||||
>
|
||||
<template v-slot:[`item.actions`]="{ item }">
|
||||
<v-btn icon :href="item.url" v-if="item.url">
|
||||
|
||||
@@ -14,6 +14,7 @@
|
||||
:disable-sort="true"
|
||||
hide-default-footer
|
||||
data-cy="jobsTable"
|
||||
:no-data-text="$ay.t('NoData')"
|
||||
>
|
||||
<template v-slot:[`item.actions`]="{ item }">
|
||||
<v-btn icon :href="item.url">
|
||||
|
||||
@@ -15,6 +15,7 @@
|
||||
hide-default-footer
|
||||
:header-props="{ sortByText: $ay.t('Sort') }"
|
||||
data-cy="notifyQueueTable"
|
||||
:no-data-text="$ay.t('NoData')"
|
||||
>
|
||||
<template v-slot:[`item.actions`]="{ item }">
|
||||
<v-icon small class="mr-2" @click="deleteItem(item)">
|
||||
|
||||
Reference in New Issue
Block a user