issue-54 #62
@ -4,10 +4,7 @@
|
|||||||
<option name="autoReloadType" value="SELECTIVE" />
|
<option name="autoReloadType" value="SELECTIVE" />
|
||||||
</component>
|
</component>
|
||||||
<component name="ChangeListManager">
|
<component name="ChangeListManager">
|
||||||
<list default="true" id="3a869f59-290a-4ab2-b036-a878ce801bc4" name="Changes" comment="Edit and Delete in Draggable Scheduler">
|
<list default="true" id="3a869f59-290a-4ab2-b036-a878ce801bc4" name="Changes" comment="Edit and Delete in Draggable Scheduler" />
|
||||||
<change beforePath="$PROJECT_DIR$/.idea/workspace.xml" beforeDir="false" afterPath="$PROJECT_DIR$/.idea/workspace.xml" afterDir="false" />
|
|
||||||
<change beforePath="$PROJECT_DIR$/src/main/java/core/entities/timemanager/Taskgroup.java" beforeDir="false" afterPath="$PROJECT_DIR$/src/main/java/core/entities/timemanager/Taskgroup.java" afterDir="false" />
|
|
||||||
</list>
|
|
||||||
<option name="SHOW_DIALOG" value="false" />
|
<option name="SHOW_DIALOG" value="false" />
|
||||||
<option name="HIGHLIGHT_CONFLICTS" value="true" />
|
<option name="HIGHLIGHT_CONFLICTS" value="true" />
|
||||||
<option name="HIGHLIGHT_NON_ACTIVE_CHANGELIST" value="false" />
|
<option name="HIGHLIGHT_NON_ACTIVE_CHANGELIST" value="false" />
|
||||||
|
@ -2,17 +2,17 @@ package core.api.models.timemanager.taskSchedule;
|
|||||||
|
|
||||||
public class TaskScheduleStopResponse {
|
public class TaskScheduleStopResponse {
|
||||||
|
|
||||||
private int activeTime;
|
private int workTime;
|
||||||
|
|
||||||
public TaskScheduleStopResponse(int activeTime) {
|
public TaskScheduleStopResponse(int activeTime) {
|
||||||
this.activeTime = activeTime;
|
this.workTime = activeTime;
|
||||||
}
|
}
|
||||||
|
|
||||||
public int getActiveTime() {
|
public int getWorkTime() {
|
||||||
return activeTime;
|
return workTime;
|
||||||
}
|
}
|
||||||
|
|
||||||
public void setActiveTime(int activeTime) {
|
public void setWorkTime(int workTime) {
|
||||||
this.activeTime = activeTime;
|
this.workTime = workTime;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -10,7 +10,7 @@
|
|||||||
</mat-card-header>
|
</mat-card-header>
|
||||||
<mat-card-content>
|
<mat-card-content>
|
||||||
<span *ngFor="let taskgroupPath of activeSchedule!.taskgroupPath">{{taskgroupPath.taskgroupName}} /</span>
|
<span *ngFor="let taskgroupPath of activeSchedule!.taskgroupPath">{{taskgroupPath.taskgroupName}} /</span>
|
||||||
<p class="gray-text" *ngIf="activeSchedule!.scheduleType==='BASIC'">Running for {{displayTime}}</p>
|
<p class="gray-text">Running for {{displayTime}}</p>
|
||||||
</mat-card-content>
|
</mat-card-content>
|
||||||
<mat-card-actions>
|
<mat-card-actions>
|
||||||
<button mat-raised-button class="grayBtn" (click)="stopTask(false)">Stop</button>
|
<button mat-raised-button class="grayBtn" (click)="stopTask(false)">Stop</button>
|
||||||
|
@ -63,6 +63,7 @@ export class ActiveScheduleComponent implements OnInit{
|
|||||||
schedule: this.activeSchedule!,
|
schedule: this.activeSchedule!,
|
||||||
workedMinutes: resp.workTime
|
workedMinutes: resp.workTime
|
||||||
})
|
})
|
||||||
|
console.log(resp.workTime)
|
||||||
this.activeSchedule = undefined
|
this.activeSchedule = undefined
|
||||||
}
|
}
|
||||||
})
|
})
|
||||||
|
@ -18,7 +18,7 @@ import {TaskOverviewData} from "./taskgroup-overview/taskgroup-overview.componen
|
|||||||
})
|
})
|
||||||
export class DashboardComponent implements OnInit{
|
export class DashboardComponent implements OnInit{
|
||||||
|
|
||||||
missedSchedules: boolean = true
|
missedSchedules: boolean = false
|
||||||
schedules: ScheduleInfo[] = []
|
schedules: ScheduleInfo[] = []
|
||||||
workedMinutesToday: number = 0
|
workedMinutesToday: number = 0
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user