This commit is contained in:
@@ -7,6 +7,16 @@
|
|||||||
|
|
||||||
TODO: SET DEADLINES
|
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
|
MISC ITEMS THAT CAME UP
|
||||||
|
|
||||||
## CLIENT MISC ITEMS
|
## CLIENT MISC ITEMS
|
||||||
|
|||||||
@@ -251,6 +251,7 @@
|
|||||||
:loading-text="$ay.t('Loading')"
|
:loading-text="$ay.t('Loading')"
|
||||||
class="elevation-1"
|
class="elevation-1"
|
||||||
data-cy="datatable"
|
data-cy="datatable"
|
||||||
|
:no-data-text="$ay.t('NoData')"
|
||||||
>
|
>
|
||||||
<template v-slot:body="{ items }">
|
<template v-slot:body="{ items }">
|
||||||
<v-row>
|
<v-row>
|
||||||
|
|||||||
@@ -16,6 +16,7 @@
|
|||||||
:disable-filtering="true"
|
:disable-filtering="true"
|
||||||
hide-default-footer
|
hide-default-footer
|
||||||
hide-default-header
|
hide-default-header
|
||||||
|
:no-data-text="$ay.t('NoData')"
|
||||||
>
|
>
|
||||||
</v-data-table>
|
</v-data-table>
|
||||||
</div>
|
</div>
|
||||||
|
|||||||
@@ -99,6 +99,7 @@
|
|||||||
}"
|
}"
|
||||||
:header-props="{ sortByText: $ay.t('Sort') }"
|
:header-props="{ sortByText: $ay.t('Sort') }"
|
||||||
:search="search"
|
:search="search"
|
||||||
|
:no-data-text="$ay.t('NoData')"
|
||||||
must-sort
|
must-sort
|
||||||
>
|
>
|
||||||
<template
|
<template
|
||||||
|
|||||||
@@ -700,6 +700,7 @@
|
|||||||
:show-select="false"
|
:show-select="false"
|
||||||
:header-props="{ sortByText: $ay.t('Sort') }"
|
:header-props="{ sortByText: $ay.t('Sort') }"
|
||||||
data-cy="custUsersTable"
|
data-cy="custUsersTable"
|
||||||
|
:no-data-text="$ay.t('NoData')"
|
||||||
>
|
>
|
||||||
<template v-slot:[`item.active`]="{ item }">
|
<template v-slot:[`item.active`]="{ item }">
|
||||||
<v-simple-checkbox
|
<v-simple-checkbox
|
||||||
|
|||||||
@@ -609,6 +609,7 @@
|
|||||||
:show-select="false"
|
:show-select="false"
|
||||||
:header-props="{ sortByText: $ay.t('Sort') }"
|
:header-props="{ sortByText: $ay.t('Sort') }"
|
||||||
data-cy="custUsersTable"
|
data-cy="custUsersTable"
|
||||||
|
:no-data-text="$ay.t('NoData')"
|
||||||
>
|
>
|
||||||
<template v-slot:[`item.active`]="{ item }">
|
<template v-slot:[`item.active`]="{ item }">
|
||||||
<v-simple-checkbox
|
<v-simple-checkbox
|
||||||
|
|||||||
@@ -11,6 +11,7 @@
|
|||||||
@click:row="rowClick"
|
@click:row="rowClick"
|
||||||
:header-props="{ sortByText: $ay.t('Sort') }"
|
:header-props="{ sortByText: $ay.t('Sort') }"
|
||||||
data-cy="subsTable"
|
data-cy="subsTable"
|
||||||
|
:no-data-text="$ay.t('NoData')"
|
||||||
>
|
>
|
||||||
</v-data-table>
|
</v-data-table>
|
||||||
</div>
|
</div>
|
||||||
|
|||||||
@@ -237,6 +237,7 @@
|
|||||||
data-cy="itemsTable"
|
data-cy="itemsTable"
|
||||||
dense
|
dense
|
||||||
:item-class="poItemsRowClasses"
|
:item-class="poItemsRowClasses"
|
||||||
|
:no-data-text="$ay.t('NoData')"
|
||||||
>
|
>
|
||||||
<template v-slot:top>
|
<template v-slot:top>
|
||||||
<v-col cols="12">
|
<v-col cols="12">
|
||||||
@@ -745,6 +746,7 @@
|
|||||||
hide-default-footer
|
hide-default-footer
|
||||||
data-cy="restockTable"
|
data-cy="restockTable"
|
||||||
dense
|
dense
|
||||||
|
:no-data-text="$ay.t('NoData')"
|
||||||
>
|
>
|
||||||
</v-data-table>
|
</v-data-table>
|
||||||
</v-col>
|
</v-col>
|
||||||
|
|||||||
@@ -73,6 +73,7 @@
|
|||||||
:sort-desc="[true]"
|
:sort-desc="[true]"
|
||||||
:header-props="{ sortByText: $ay.t('Sort') }"
|
:header-props="{ sortByText: $ay.t('Sort') }"
|
||||||
data-cy="backupTable"
|
data-cy="backupTable"
|
||||||
|
:no-data-text="$ay.t('NoData')"
|
||||||
>
|
>
|
||||||
<template v-slot:[`item.actions`]="{ item }">
|
<template v-slot:[`item.actions`]="{ item }">
|
||||||
<v-btn icon :href="item.url" v-if="item.url">
|
<v-btn icon :href="item.url" v-if="item.url">
|
||||||
|
|||||||
@@ -14,6 +14,7 @@
|
|||||||
:disable-sort="true"
|
:disable-sort="true"
|
||||||
hide-default-footer
|
hide-default-footer
|
||||||
data-cy="jobsTable"
|
data-cy="jobsTable"
|
||||||
|
:no-data-text="$ay.t('NoData')"
|
||||||
>
|
>
|
||||||
<template v-slot:[`item.actions`]="{ item }">
|
<template v-slot:[`item.actions`]="{ item }">
|
||||||
<v-btn icon :href="item.url">
|
<v-btn icon :href="item.url">
|
||||||
|
|||||||
@@ -15,6 +15,7 @@
|
|||||||
hide-default-footer
|
hide-default-footer
|
||||||
:header-props="{ sortByText: $ay.t('Sort') }"
|
:header-props="{ sortByText: $ay.t('Sort') }"
|
||||||
data-cy="notifyQueueTable"
|
data-cy="notifyQueueTable"
|
||||||
|
:no-data-text="$ay.t('NoData')"
|
||||||
>
|
>
|
||||||
<template v-slot:[`item.actions`]="{ item }">
|
<template v-slot:[`item.actions`]="{ item }">
|
||||||
<v-icon small class="mr-2" @click="deleteItem(item)">
|
<v-icon small class="mr-2" @click="deleteItem(item)">
|
||||||
|
|||||||
Reference in New Issue
Block a user