This commit is contained in:
@@ -54,12 +54,23 @@
|
|||||||
SCHEDULE TODO:
|
SCHEDULE TODO:
|
||||||
Basically just replicate google calendar UI with our own related objects driving it
|
Basically just replicate google calendar UI with our own related objects driving it
|
||||||
Day, Week, Month, Year, Schedule (not actually a calendar, but a list, do we need??), 4 days views
|
Day, Week, Month, Year, Schedule (not actually a calendar, but a list, do we need??), 4 days views
|
||||||
Data list functionality with filters to drive schedule, however people select them in the UI rather than the way we filter datalists now
|
Data list functionality with filters to drive schedule, however people select them in the UI rather than the way we filter datalists now (would be ideal)
|
||||||
|
only real filters are who, when where who could be also a particular customer (or is that it's own view)
|
||||||
|
Making more schedule forms is a relatively cheap thing to do so if there is a customer centric view then maybe that's it's own schedule page
|
||||||
|
entirely, e.g. a "View Schedule" menu item option in Customer opens a customer centric view since it doesn't need a lot of other shit
|
||||||
|
(maybe even a timeline??) This differs from the record history, it's the business history
|
||||||
|
Also can schedule work from that calendar maybe? Or follow ups etc
|
||||||
|
|
||||||
|
TO BE DETERMINED:
|
||||||
|
How / if show multiple users schedules at once?
|
||||||
|
same calendar, separate calendars? How do major softwares booking multiple people do it or should it be done?
|
||||||
|
what are the tasks when multiple??
|
||||||
|
compare, look for openings?
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
//..........
|
||||||
Dashboard / widgets
|
Dashboard / widgets
|
||||||
Installer INNO
|
Installer INNO
|
||||||
version with postgres included, version without postgres included
|
version with postgres included, version without postgres included
|
||||||
@@ -761,3 +772,4 @@ MID CENTURY MODERN TUNES - https://www.allmusic.com/album/ultra-lounge-vol-14-bo
|
|||||||
|
|
||||||
BUILD 131 CHANGES OF NOTE
|
BUILD 131 CHANGES OF NOTE
|
||||||
|
|
||||||
|
- case 3946 at a glance wiki present implemented
|
||||||
@@ -1,7 +1,12 @@
|
|||||||
<template>
|
<template>
|
||||||
<div class="mt-6">
|
<div class="mt-6">
|
||||||
<div>
|
<div>
|
||||||
<v-btn depressed tile @click="toggleReveal">
|
<v-btn
|
||||||
|
depressed
|
||||||
|
tile
|
||||||
|
@click="toggleReveal"
|
||||||
|
:color="isEmpty ? null : 'primary'"
|
||||||
|
>
|
||||||
Wiki<v-icon v-text="reveal ? '$ayiEyeSlash' : '$ayiEye'" right></v-icon
|
Wiki<v-icon v-text="reveal ? '$ayiEyeSlash' : '$ayiEye'" right></v-icon
|
||||||
></v-btn>
|
></v-btn>
|
||||||
</div>
|
</div>
|
||||||
@@ -401,6 +406,11 @@ export default {
|
|||||||
this.localVal = value ?? "";
|
this.localVal = value ?? "";
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
|
computed: {
|
||||||
|
isEmpty() {
|
||||||
|
return this.value == null;
|
||||||
|
}
|
||||||
|
},
|
||||||
methods: {
|
methods: {
|
||||||
goHelp() {
|
goHelp() {
|
||||||
window.open(this.$store.state.helpUrl + "ay-start-form-wiki", "_blank");
|
window.open(this.$store.state.helpUrl + "ay-start-form-wiki", "_blank");
|
||||||
|
|||||||
@@ -1,5 +1,5 @@
|
|||||||
<template>
|
<template>
|
||||||
<div v-resize="onResize" class="my-n8">
|
<div v-resize="onResize" class="my-n8">
|
||||||
<!-- <v-row dense>
|
<!-- <v-row dense>
|
||||||
<v-col> -->
|
<v-col> -->
|
||||||
<v-sheet height="64">
|
<v-sheet height="64">
|
||||||
@@ -21,9 +21,7 @@
|
|||||||
<template v-slot:activator="{ on, attrs }">
|
<template v-slot:activator="{ on, attrs }">
|
||||||
<v-btn outlined color="grey darken-2" v-bind="attrs" v-on="on">
|
<v-btn outlined color="grey darken-2" v-bind="attrs" v-on="on">
|
||||||
<span>{{ typeToLabel[type] }}</span>
|
<span>{{ typeToLabel[type] }}</span>
|
||||||
<v-icon right>
|
<v-icon right>$sort</v-icon>
|
||||||
mdi-menu-down
|
|
||||||
</v-icon>
|
|
||||||
</v-btn>
|
</v-btn>
|
||||||
</template>
|
</template>
|
||||||
<v-list>
|
<v-list>
|
||||||
@@ -43,7 +41,6 @@
|
|||||||
</v-menu>
|
</v-menu>
|
||||||
</v-toolbar>
|
</v-toolbar>
|
||||||
</v-sheet>
|
</v-sheet>
|
||||||
<!-- HEIGHT="600" -->
|
|
||||||
<v-sheet :height="calendarHeight">
|
<v-sheet :height="calendarHeight">
|
||||||
<v-calendar
|
<v-calendar
|
||||||
ref="calendar"
|
ref="calendar"
|
||||||
|
|||||||
Reference in New Issue
Block a user