This commit is contained in:
@@ -19,21 +19,14 @@
|
||||
|
||||
SVC-SCHEDULE OUTSTANDING ITEMS
|
||||
|
||||
User colors? Is this even going to be a thing or needed anymore??
|
||||
in v7 it was only in calendar so if not in calendar now then no need
|
||||
maybe just remove colors for users, it is not exactly a good idea UI wise anyway
|
||||
|
||||
See about including no tech items as sched should show them as unassigned or something it's built in for non matches but I could enable that anyway
|
||||
it was in v7
|
||||
maybe always far right by default, but then people may not want it to take up space
|
||||
ensure if there are no unassigned that it doesn't show at all, i.e. it would come back with categories from schedule controller svc route if there are any
|
||||
maybe included with the tag selector as a checkbox to automatically include unassigned
|
||||
maybe it's a drill into unassigned on it's own?? but then can't drag to a tech as would be useful feature of this
|
||||
3698 - hide unassigned tech slot (or case 3697 above would take care of that too)
|
||||
|
||||
Keep both Day view and Category views but make category the default drill into view when click on a date
|
||||
|
||||
|
||||
|
||||
|
||||
need ability to drag to another tech in category view
|
||||
|
||||
@@ -43,7 +36,11 @@
|
||||
This is an important and must have feature for inital release
|
||||
|
||||
|
||||
|
||||
docs notes
|
||||
unassigned slot and how it works
|
||||
team view vs day view
|
||||
how to use the controls etc
|
||||
small screen view vs larger
|
||||
|
||||
|
||||
|
||||
@@ -789,4 +786,5 @@ MID CENTURY MODERN TUNES - https://www.allmusic.com/album/ultra-lounge-vol-14-bo
|
||||
|
||||
BUILD 133 CHANGES OF NOTE
|
||||
|
||||
- Work order header status control, moved click detection to outer div (just like signature control) so can more easily click anywhere on it to open the work order status control for setting
|
||||
- Work order header status control, moved click detection to outer div (just like signature control) so can more easily click anywhere on it to open the work order status control for setting
|
||||
- Removed User UIColor setting as it is not practical to use with the new schedule control and that was the only place it was used in v7
|
||||
|
||||
@@ -837,6 +837,12 @@ export default {
|
||||
window.$gz.form.setErrorBoxErrors(this);
|
||||
} else {
|
||||
this.categories = res.data.users;
|
||||
if (res.data.hasUnassigned) {
|
||||
this.categories.push({
|
||||
name: this.$ay.t("DashboardNotAssigned"),
|
||||
id: 0
|
||||
});
|
||||
}
|
||||
this.events.splice(0);
|
||||
const timeZoneName = this.timeZoneName;
|
||||
let i = res.data.items.length;
|
||||
@@ -1132,6 +1138,7 @@ async function fetchTranslatedText() {
|
||||
"ScheduleOptions",
|
||||
"ScheduleShowTypes",
|
||||
"FilterUsers",
|
||||
"DashboardNotAssigned",
|
||||
"NoColor",
|
||||
"WorkOrder",
|
||||
"WorkOrderList",
|
||||
|
||||
Reference in New Issue
Block a user