This commit is contained in:
@@ -106,6 +106,10 @@ The Last option moves the widget to be displayed to the last position which is b
|
||||
|
||||
The remove option removes the widget from display.
|
||||
|
||||
### Hide / show chart legends
|
||||
|
||||
Clicking on a legend in a bar or line chart will toggle hiding or showing data for that item.
|
||||
|
||||
### Widgets available
|
||||
|
||||
#### Open customer service requests
|
||||
@@ -153,8 +157,6 @@ Available filter criteria:
|
||||
- Work order item tags
|
||||
- Work order Status
|
||||
|
||||
|
||||
|
||||
#### Reminders
|
||||
|
||||

|
||||
@@ -181,9 +183,9 @@ Personal chart showing labor hours for current User, available as a Line or Bar
|
||||
|
||||

|
||||
|
||||
These chart format widgets are available to scheduleable users with a dashboard and display all personal labor hours summarized by selected time span and selected interval.
|
||||
These chart format widgets are available to scheduleable users with a dashboard and display all personal labor hours summarized by selected time span and selected interval.
|
||||
|
||||
They will automatically update every 15 minutes approximately.
|
||||
They will automatically update every 15 minutes approximately.
|
||||
|
||||
Available filter criteria:
|
||||
|
||||
@@ -191,3 +193,32 @@ Available filter criteria:
|
||||
- Interval
|
||||
- Work order tags
|
||||
- Work order item tags
|
||||
|
||||
#### Service quantity - All
|
||||
|
||||
Management chart showing labor hours for all Users that fit criteria selected, available as a Line or Bar chart:
|
||||
|
||||

|
||||
|
||||

|
||||
|
||||
These chart format widgets display all labor hours grouped by User and summarized by selected time span and selected interval.
|
||||
|
||||
They will automatically update every 15 minutes approximately.
|
||||
|
||||
Available to the following roles:
|
||||
|
||||
- Accounting
|
||||
- Business administration
|
||||
- Business administration - restricted
|
||||
- Service manager
|
||||
- Service manager - restricted
|
||||
|
||||
Available filter criteria:
|
||||
|
||||
- Time span
|
||||
- Interval
|
||||
- User tags
|
||||
- User (specific single user only)
|
||||
- Work order tags
|
||||
- Work order item tags
|
||||
|
||||
@@ -64,7 +64,7 @@ AuthorizationRoles.Accounting;
|
||||
string userWhere = string.Empty;
|
||||
if (userid != null)
|
||||
{
|
||||
userWhere = $"AND LASTSTATUSID = {userid}";
|
||||
userWhere = $"AND aworkorderitemlabor.userid = {userid}";
|
||||
}
|
||||
|
||||
|
||||
@@ -74,7 +74,7 @@ FROM AWORKORDER
|
||||
LEFT JOIN AWORKORDERITEM ON AWORKORDER.ID = AWORKORDERITEM.WORKORDERID
|
||||
LEFT JOIN AWORKORDERITEMLABOR ON AWORKORDERITEM.ID = AWORKORDERITEMLABOR.WORKORDERITEMID
|
||||
LEFT JOIN AUSER ON AWORKORDERITEMLABOR.USERID = AUSER.ID
|
||||
WHERE {dateWhere} {techTagsWhere} {woTagsWhere} {woItemTagsWhere}
|
||||
WHERE {dateWhere} {userWhere} {techTagsWhere} {woTagsWhere} {woItemTagsWhere}
|
||||
GROUP BY Z, X
|
||||
ORDER BY X ASC
|
||||
) t";
|
||||
|
||||
Reference in New Issue
Block a user