This commit is contained in:
@@ -29,11 +29,11 @@ FIRST CLIENT SOURCE CODE COMMIT JAN 3rd 2019
|
|||||||
|
|
||||||
|
|
||||||
# SEEDING ISSUES
|
# SEEDING ISSUES
|
||||||
seeder wolabor is being created in the future fucking the kpi stuff or at least looking weird
|
|
||||||
no labor or date centric items should be created in the future, that's nonsensical
|
|
||||||
seeder csr requested has future dates fucking up kpi open csr
|
|
||||||
seeder sb some that are not scheduled to show off widget, i.e. newly created with no items or no scheduled users at least
|
|
||||||
seeder wo created date not set properly, should match the way it's generated
|
seeder wo created date not set properly, should match the way it's generated
|
||||||
|
|
||||||
|
seeder make reminders and reviews for all users, just random scattering for now to future month ahead at least one per day to show off schedule and widgets
|
||||||
seeder wo need new fields and generate data to show off and test kpi widgets and features
|
seeder wo need new fields and generate data to show off and test kpi widgets and features
|
||||||
Add completed date to workorder, should be set when a closed status is set
|
Add completed date to workorder, should be set when a closed status is set
|
||||||
used for numerous kpi stuff
|
used for numerous kpi stuff
|
||||||
@@ -46,9 +46,10 @@ seeder wo need new fields and generate data to show off and test kpi widgets and
|
|||||||
|
|
||||||
# WIDGET ISSUES
|
# WIDGET ISSUES
|
||||||
|
|
||||||
https://www.ayanova.com/AyaNova7webHelp/index.html?dashboard.htm
|
Fix location of COUNT bubble thing, it's too obscuring to the icon
|
||||||
|
Put count on LIST type widgets so that it's clear how many there are at a glance
|
||||||
|
|
||||||
|
Unscheduled is showing dupes, maybe it's one per woitem??
|
||||||
|
|
||||||
- Widgets to make for beta in order of priority
|
- Widgets to make for beta in order of priority
|
||||||
**MUST HAVE***
|
**MUST HAVE***
|
||||||
@@ -267,7 +268,7 @@ todo:3 todo: check out this SPA memory leak detector, it *does* have a login abi
|
|||||||
\_____|______|_____|______|_| \_| |_|
|
\_____|______|_____|______|_| \_| |_|
|
||||||
|
|
||||||
|
|
||||||
|
todo: 1 should a superuser really have a dashboard?
|
||||||
|
|
||||||
|
|
||||||
todo:2 need to track fetched keys vs used keys so can tell if fetched a key that I don't need or stopped using due to code change
|
todo:2 need to track fetched keys vs used keys so can tell if fetched a key that I don't need or stopped using due to code change
|
||||||
@@ -889,7 +890,8 @@ BUILD 8.0.0-beta.1-rc3 CHANGES OF NOTE
|
|||||||
- Added *back* User color as it now ties in with widget charts (user edit form, import, backend, docs etc)
|
- Added *back* User color as it now ties in with widget charts (user edit form, import, backend, docs etc)
|
||||||
- v8-migrate plugin, fixed new issue related to removal of unused locale / translation keys preventing migrate
|
- v8-migrate plugin, fixed new issue related to removal of unused locale / translation keys preventing migrate
|
||||||
- Login form added prominent warning "beta test - not for production use"
|
- Login form added prominent warning "beta test - not for production use"
|
||||||
- Seeder, minor changes to ensure future work orders don't have labor or other things that don't make sense if future
|
- Seeder, minor changes to ensure future work orders don't have labor or other things that don't make sense if future date
|
||||||
|
- seeder now 10% of future wo have no scheduled users set to show off unscheduled widget
|
||||||
- seeder no CSR generated in future
|
- seeder no CSR generated in future
|
||||||
|
|
||||||
|
|
||||||
|
|||||||
@@ -11,7 +11,7 @@
|
|||||||
@click="$emit('dash-more-click', id)"
|
@click="$emit('dash-more-click', id)"
|
||||||
>
|
>
|
||||||
<template v-if="count > 0">
|
<template v-if="count > 0">
|
||||||
<v-badge overlap>
|
<v-badge inline>
|
||||||
<template v-slot:badge>
|
<template v-slot:badge>
|
||||||
{{ count }}
|
{{ count }}
|
||||||
</template>
|
</template>
|
||||||
@@ -25,7 +25,7 @@
|
|||||||
</template>
|
</template>
|
||||||
<template v-else>
|
<template v-else>
|
||||||
<template v-if="count > 0">
|
<template v-if="count > 0">
|
||||||
<v-badge overlap class="mr-4">
|
<v-badge inline class="mr-4">
|
||||||
<template v-slot:badge>
|
<template v-slot:badge>
|
||||||
{{ count }}
|
{{ count }}
|
||||||
</template>
|
</template>
|
||||||
|
|||||||
@@ -1,5 +1,6 @@
|
|||||||
<template>
|
<template>
|
||||||
<gz-dash
|
<gz-dash
|
||||||
|
:count="obj.length"
|
||||||
icon="$ayiConciergeBell"
|
icon="$ayiConciergeBell"
|
||||||
:show-context-button="true"
|
:show-context-button="true"
|
||||||
:update-frequency="300000"
|
:update-frequency="300000"
|
||||||
|
|||||||
@@ -1,6 +1,7 @@
|
|||||||
<template>
|
<template>
|
||||||
<gz-dash
|
<gz-dash
|
||||||
icon="$ayiTools"
|
icon="$ayiTools"
|
||||||
|
:count="obj.length"
|
||||||
:add-url="'svc-workorders/0'"
|
:add-url="'svc-workorders/0'"
|
||||||
:show-context-button="true"
|
:show-context-button="true"
|
||||||
:update-frequency="300000"
|
:update-frequency="300000"
|
||||||
|
|||||||
Reference in New Issue
Block a user