BTB-12 Als Benutzer möchte ich eine Meldung "Türkontakt/Anlagenbegehung" erstellen können, damit ich sicher nachvollziehen kann, dass sich noch jemand in der Anlage befindet.
diff --git a/src/app/common/globals.ts b/src/app/common/globals.ts
index 68d8b0a..6f95de8 100644
--- a/src/app/common/globals.ts
+++ b/src/app/common/globals.ts
@@ -60,4 +60,8 @@
static SORTING_STATE = 'SORTING_STATE';
static SORTING_STATE_GRID_ID_OPEN_NOTS = 'OverviewOpenNot';
+ static NOTIFICATION_TYPE_PRESENCE_CHECK = 'presence-check';
+ static PRESENCE_CHECK_TEXT = 'Meldung für Türkontakt/Anlagenbegehung';
+ static NOTIFICATION_STATUS_OFFEN = 1;
+
}
diff --git a/src/app/dialogs/entry/entry.component.html b/src/app/dialogs/entry/entry.component.html
index a7cb628..349b934 100644
--- a/src/app/dialogs/entry/entry.component.html
+++ b/src/app/dialogs/entry/entry.component.html
@@ -13,18 +13,24 @@
<form #entryForm="ngForm">
<header>
- <h2 *ngIf="!isInstructionDialog && !isEditDialog && !isReadOnlyDialog">
+ <h2 *ngIf="!isPresenceReminderDialog && !isInstructionDialog && !isEditDialog && !isReadOnlyDialog">
Betriebstagebucheintrag anlegen
</h2>
<h2 *ngIf="isInstructionDialog && !isEditDialog && !isReadOnlyDialog">
Anweisung anlegen
</h2>
- <h2 *ngIf="!isInstructionDialog && isEditDialog && !isReadOnlyDialog">
+ <h2 *ngIf="isPresenceReminderDialog && !isEditDialog && !isReadOnlyDialog">
+ Türkontaktmeldung anlegen
+ </h2>
+ <h2 *ngIf="!isPresenceReminderDialog && !isInstructionDialog && isEditDialog && !isReadOnlyDialog">
Betriebstagebucheintrag bearbeiten
</h2>
<h2 *ngIf="isInstructionDialog && isEditDialog && !isReadOnlyDialog">
Anweisung bearbeiten
</h2>
+ <h2 *ngIf="isPresenceReminderDialog && isEditDialog && !isReadOnlyDialog">
+ Türkontaktmeldung bearbeiten
+ </h2>
<table *ngIf="isReadOnlyDialog && notificationVersions" id="mainEntryTable">
<tbody>
<tr>
@@ -75,8 +81,9 @@
<td class="text-left" style="width: 17%">
<div class="form-group">
<select class="form-control" [(ngModel)]="notification.fkRefBranch"
- (ngModelChange)="notification.fkRefBranch = $event ? $event : null" name="branchSelection" [required]="!isReadOnlyDialog && !isInstructionDialog">
+ (ngModelChange)="notification.fkRefBranch = $event ? $event : null" name="branchSelection" [required]="!isReadOnlyDialog && !isInstructionDialog && !isPresenceReminderDialog">
<option *ngIf="isInstructionDialog" value=""></option>
+ <option *ngIf="isPresenceReminderDialog" value=""></option>
<option *ngFor="let branch of branches" value="{{ branch.id }}">{{ branch.description }}</option>
</select>
</div>
@@ -88,8 +95,9 @@
<td class="text-left" style="width: 17%">
<div class="form-group">
<select class="form-control" [(ngModel)]="notification.fkRefGridTerritory"
- (ngModelChange)="notification.fkRefGridTerritory = $event ? $event : null" name="gridTerritorySelection" [required]="!isReadOnlyDialog && !isInstructionDialog">
+ (ngModelChange)="notification.fkRefGridTerritory = $event ? $event : null" name="gridTerritorySelection" [required]="!isReadOnlyDialog && !isInstructionDialog && !isPresenceReminderDialog">
<option *ngIf="isInstructionDialog" value=""></option>
+ <option *ngIf="isPresenceReminderDialog" value=""></option>
<option *ngFor="let gridTerritory of gridTerritories" value="{{ gridTerritory.id }}">{{ gridTerritory.description }}</option>
</select>
</div>
@@ -247,7 +255,7 @@
<div>
<button *ngIf="isEditDialog && !isReadOnlyDialog" class="btn btn-primary btn-sm btn-success" (click)="edit()" autofocus type="submit"
[disabled]="!entryForm.form.valid">Ändern</button>
- <button *ngIf="!isEditDialog && !isReadOnlyDialog" class="btn btn-primary btn-sm btn-success" (click)="add(isInstructionDialog)"
+ <button *ngIf="!isEditDialog && !isReadOnlyDialog" class="btn btn-primary btn-sm btn-success" (click)="add()"
autofocus type="submit" [disabled]="!entryForm.form.valid">Hinzufügen</button>
<button class="btn btn-primary btn-sm" type="button" (click)="cancel()">Abbrechen</button>
</div>
diff --git a/src/app/dialogs/entry/entry.component.ts b/src/app/dialogs/entry/entry.component.ts
index d5d877c..825e494 100644
--- a/src/app/dialogs/entry/entry.component.ts
+++ b/src/app/dialogs/entry/entry.component.ts
@@ -27,6 +27,7 @@
import { FormattedTimestampPipe } from '../../common-components/pipes/formatted-timestamp.pipe';
import { MessageService } from '../../services/message.service';
import { Priority } from 'app/model/priority';
+import { Globals } from 'app/common/globals';
@Component({
selector: 'app-entry',
templateUrl: './entry.component.html',
@@ -38,6 +39,7 @@
isEditDialog = false;
isReadOnlyDialog = false;
isInstructionDialog = false;
+ isPresenceReminderDialog = false;
user: User = null;
notification: Notification = new Notification();
selectedStatusId: number;
@@ -87,6 +89,8 @@
this.notification.beginDate = this.getCurrentDateTime();
}
+ this.initPresenceReminderDialog();
+
if (!this.notification.createUser) {
this.notification.createUser = this.user.name;
}
@@ -112,6 +116,18 @@
}
}
+ initPresenceReminderDialog(){
+ if (this.isPresenceReminderDialog && !this.isEditDialog) {
+ const presenceCheckDate : Date = new Date();
+ presenceCheckDate.setHours(16);
+ presenceCheckDate.setMinutes(0);
+ presenceCheckDate.setSeconds(0);
+ this.notification.reminderDate = presenceCheckDate.toISOString();
+ this.notification.fkRefNotificationStatus = Globals.NOTIFICATION_STATUS_OFFEN;
+ this.notification.notificationText = Globals.PRESENCE_CHECK_TEXT;
+ }
+ }
+
onNotificationVersionChange(version: number) {
this.notification = this.notificationVersions.find(notification => Number(notification.version) === Number(version));
}
@@ -144,9 +160,9 @@
});
}
- add(adminFlag: boolean) {
+ add() {
this.notification.responsibilityControlPoint = this.user.name;
- this.notification.adminFlag = adminFlag;
+ this.setNotificationType();
this.notificationService.createNotification(this.notification).subscribe(result => this.dialogRef.close(),
error => {
this.messageService.emitError('Eintrags', ErrorType.create);
@@ -154,6 +170,13 @@
});
}
+ setNotificationType() {
+ this.notification.adminFlag = this.isInstructionDialog;
+ if(this.isPresenceReminderDialog){
+ this.notification.type = Globals.NOTIFICATION_TYPE_PRESENCE_CHECK;
+ }
+ }
+
cancel() {
this.dialogRef.close();
}
diff --git a/src/app/lists/current-reminders/current-reminders.component.html b/src/app/lists/current-reminders/current-reminders.component.html
index 7cebce7..8b7aed7 100644
--- a/src/app/lists/current-reminders/current-reminders.component.html
+++ b/src/app/lists/current-reminders/current-reminders.component.html
@@ -35,6 +35,9 @@
<th *ngIf="withCheckboxes" class="notification-check-col">
<input type="checkbox" [(ngModel)]="selectAll" (change)="changeAllSelection()">
</th>
+ <th class="notification-tab-prio-col">
+ <app-sorting [initColumnName]="'fkRefNotificationPriority'" (click)=" sort('fkRefNotificationPriority')" [isDesc]="sortingState?.isDesc" [defaultState]="sortingState?.defaultState" [columnName]="sortingState?.column">Prio</app-sorting>
+ </th>
<th class="notification-tab-first-col">
<app-sorting [initColumnName]="'reminderDate'" (click)="sort('reminderDate')" [isDesc]="sortingState?.isDesc" [defaultState]="sortingState?.defaultState" [columnName]="sortingState?.column">Erinnerungs Datum</app-sorting>
</th>
@@ -58,12 +61,16 @@
</thead>
<tbody>
<tr *ngFor="let notification of notifications" class='notification_row_testable'>
- <td colspan="8" style="padding:0px;">
+ <td colspan="9" style="padding:0px;">
<table style="width:100%">
<tr>
<td *ngIf="withCheckboxes" class="notification-check-col">
<input type="checkbox" [(ngModel)]="notification.selected" (change)="selectionChanged()">
</td>
+ <td class="notification-tab-prio-col">
+ <img *ngIf="sessionContext.getPrioById(notification.fkRefNotificationPriority)?.imageName"
+ src="assets/img/{{sessionContext.getPrioById(notification.fkRefNotificationPriority)?.imageName}}" width="18">
+ </td>
<td class="notification-tab-first-col" ngInit="notification.historyOpen=false">
<a *ngIf="notification.version > 1 && isCollapsible" href="#history_finishedNot_{{notification.id}}" data-toggle="collapse"
class="glyphicon glyphicon-menu-down glyphicon-menu-up" (click)="toggleHistoryTab(notification)" [ngClass]="{'glyphicon-menu-up': notification.historyOpen, 'glyphicon-menu-down': !notification.historyOpen}"
@@ -96,10 +103,14 @@
</td>
</tr>
<tr id="history_openNot_{{notification.id}}" [ngClass]="{'panel-collapse': notification.historyOpen}" *ngIf="isCollapsible && notification.historyOpen">
- <td colspan="8">
+ <td colspan="9">
<table style="width:100%;" class="notificationVersions">
<tbody>
<tr *ngFor="let notificationVersion of notification.decoratorNotificationVersions">
+ <td class="notification-tab-prio-col">
+ <img *ngIf="sessionContext.getPrioById(notificationVersion.fkRefNotificationPriority)?.imageName"
+ src="assets/img/{{sessionContext.getPrioById(notificationVersion.fkRefNotificationPriority)?.imageName}}" width="18">
+ </td>
<td class="notification-tab-version-col">
<span>
{{ notificationVersion.beginDate | formattedTimestamp: 'DD.MM.YYYY HH:mm' }}
diff --git a/src/app/model/notification.ts b/src/app/model/notification.ts
index 18b9574..628630b 100644
--- a/src/app/model/notification.ts
+++ b/src/app/model/notification.ts
@@ -9,6 +9,7 @@
*
******************************************************************************
*/
+import { Globals } from "app/common/globals";
export class Notification {
id: number;
selected: boolean;
@@ -35,9 +36,17 @@
version: number;
clerk: string;
adminFlag: boolean;
+ type: string;
decoratorNotificationVersions?: Notification[];
historyOpen?: boolean;
+
+ public isTypePresenceCheck() {
+ if(this.type && this.type === Globals.NOTIFICATION_TYPE_PRESENCE_CHECK) {
+ return true;
+ }
+ return false;
+ }
}
diff --git a/src/app/pages/overview/overview.component.html b/src/app/pages/overview/overview.component.html
index 052c9e8..13ba168 100644
--- a/src/app/pages/overview/overview.component.html
+++ b/src/app/pages/overview/overview.component.html
@@ -19,12 +19,9 @@
</div>
<div class="col-xs-9">
<div class="pull-right">
- <button style="width: 120px" class="btn btn-primary" (click)="openDialogNewEntry()">
- Eintrag anlegen
- </button>
- <button *ngIf="isSpecialUser()" class="btn btn-info" (click)="openInstructionDialogNewEntry()">
- Anweisung anlegen
- </button>
+ <button style="width: 120px" class="btn btn-primary" (click)="openDialogNewEntry()">Eintrag anlegen</button>
+ <button *ngIf="isSpecialUser()" class="btn btn-info" (click)="openInstructionDialogNewEntry()">Anweisung anlegen</button>
+ <button *ngIf="isSpecialUser()" class="btn btn-info" (click)="openPresenceReminderDialogNewEntry()">Türkontaktmeldung anlegen</button>
<button style="width: 120px" class="btn btn-primary" id="dataimport" [ngClass]="{'btn-warning': sessionContext.isImportFileAvailable()}"
(click)="openDialogDataImport()">
Datenimport
diff --git a/src/app/pages/overview/overview.component.ts b/src/app/pages/overview/overview.component.ts
index 41988be..d03cc89 100644
--- a/src/app/pages/overview/overview.component.ts
+++ b/src/app/pages/overview/overview.component.ts
@@ -113,10 +113,21 @@
});
}
+ openPresenceReminderDialogNewEntry() {
+ const dialogRef = this.dialog.open(EntryComponent, this.dialogConfig);
+ dialogRef.componentInstance.isPresenceReminderDialog = true;
+ dialogRef.componentInstance.user = this.user;
+ dialogRef.componentInstance.isEditDialog = false;
+ dialogRef.afterClosed().subscribe(result => {
+ });
+ }
+
openDialogEditEntry(notification: Notification) {
+ const notificationObj = Object.assign(new Notification(), notification);
const dialogRef = this.dialog.open(EntryComponent, this.dialogConfig);
dialogRef.componentInstance.user = this.user;
dialogRef.componentInstance.isInstructionDialog = notification.adminFlag;
+ dialogRef.componentInstance.isPresenceReminderDialog = notificationObj.isTypePresenceCheck();
dialogRef.componentInstance.setNotification(notification);
dialogRef.componentInstance.isEditDialog = true;
dialogRef.afterClosed().subscribe(result => {
diff --git a/src/app/pages/reminder/reminder.component.ts b/src/app/pages/reminder/reminder.component.ts
index 1725c00..5dd5fb6 100644
--- a/src/app/pages/reminder/reminder.component.ts
+++ b/src/app/pages/reminder/reminder.component.ts
@@ -62,9 +62,11 @@
}
openDialogEditEntry(notification: Notification) {
+ const notificationObj = Object.assign(new Notification(), notification);
const dialogRef = this.dialog.open(EntryComponent, this.dialogConfig);
dialogRef.componentInstance.user = this.user;
dialogRef.componentInstance.isInstructionDialog = notification.adminFlag;
+ dialogRef.componentInstance.isPresenceReminderDialog = notificationObj.isTypePresenceCheck();
dialogRef.componentInstance.setNotification(notification);
dialogRef.componentInstance.isEditDialog = true;
dialogRef.afterClosed().subscribe(result => {
diff --git a/src/app/pages/search/search.component.ts b/src/app/pages/search/search.component.ts
index 04ee699..51537d9 100644
--- a/src/app/pages/search/search.component.ts
+++ b/src/app/pages/search/search.component.ts
@@ -87,8 +87,10 @@
openDialogEditEntry(notification: Notification) {
const dialogRef = this.dialog.open(EntryComponent, this.dialogConfig);
+ const notificationObj = Object.assign(new Notification(), notification);
dialogRef.componentInstance.user = this.user;
dialogRef.componentInstance.isInstructionDialog = notification.adminFlag;
+ dialogRef.componentInstance.isPresenceReminderDialog = notificationObj.isTypePresenceCheck();
dialogRef.componentInstance.setNotification(notification);
dialogRef.componentInstance.isEditDialog = true;
dialogRef.afterClosed().subscribe(result => {
diff --git a/src/app/test-data/notifications.ts b/src/app/test-data/notifications.ts
index a6f77c2..fb71f4b 100644
--- a/src/app/test-data/notifications.ts
+++ b/src/app/test-data/notifications.ts
@@ -35,7 +35,10 @@
finishedDate: null,
createUser: 'Abteilungsleitung',
clerk: 'Mustermann',
- adminFlag: false
+ adminFlag: false,
+ type: null,
+ isTypePresenceCheck: Notification.prototype.isTypePresenceCheck
+
};
export const DUMMY_UPDATED_NOTIFICATION: Notification = {
id: 100,
@@ -62,7 +65,9 @@
finishedDate: null,
createUser: 'Abteilungsleitung',
clerk: 'Mustermann',
- adminFlag: false
+ adminFlag: false,
+ type: null,
+ isTypePresenceCheck: Notification.prototype.isTypePresenceCheck
};
export const DUMMY_NOTIFICATION: Notification = {
id: null,
@@ -89,7 +94,9 @@
finishedDate: null,
createUser: 'Abteilungsleitung',
clerk: 'Mustermann',
- adminFlag: false
+ adminFlag: false,
+ type: null,
+ isTypePresenceCheck: Notification.prototype.isTypePresenceCheck
};
export const CURRENT_NOTIFICATIONS: Notification[] = [
{
@@ -117,7 +124,9 @@
finishedDate: null,
createUser: 'Abteilungsleitung',
clerk: 'Mustermann',
- adminFlag: false
+ adminFlag: false,
+ type: null,
+ isTypePresenceCheck: Notification.prototype.isTypePresenceCheck
},
{
id: 101,
@@ -144,7 +153,9 @@
finishedDate: null,
createUser: 'Personalrat',
clerk: 'Mustermann',
- adminFlag: false
+ adminFlag: false,
+ type: null,
+ isTypePresenceCheck: Notification.prototype.isTypePresenceCheck
}
];
@@ -174,7 +185,9 @@
finishedDate: null,
createUser: 'Ersteller 1',
clerk: 'Mustermann',
- adminFlag: false
+ adminFlag: false,
+ type: null,
+ isTypePresenceCheck: Notification.prototype.isTypePresenceCheck
},
{
id: 2,
@@ -201,7 +214,9 @@
finishedDate: null,
createUser: 'Ersteller 2',
clerk: 'Musterfrau',
- adminFlag: false
+ adminFlag: false,
+ type: null,
+ isTypePresenceCheck: Notification.prototype.isTypePresenceCheck
}
];
@@ -231,7 +246,9 @@
finishedDate: null,
createUser: 'Bearbeiter 3',
clerk: 'Musterkind',
- adminFlag: false
+ adminFlag: false,
+ type: null,
+ isTypePresenceCheck: Notification.prototype.isTypePresenceCheck
},
{
id: 4,
@@ -258,7 +275,9 @@
finishedDate: null,
createUser: 'Bearbeiter 4',
clerk: 'Musterenkel',
- adminFlag: false
+ adminFlag: false,
+ type: null,
+ isTypePresenceCheck: Notification.prototype.isTypePresenceCheck
},
{
id: 5,
@@ -285,7 +304,9 @@
finishedDate: null,
createUser: 'Bearbeiter 5',
clerk: 'Imaginär',
- adminFlag: false
+ adminFlag: false,
+ type: null,
+ isTypePresenceCheck: Notification.prototype.isTypePresenceCheck
},
{
id: 6,
@@ -312,7 +333,9 @@
finishedDate: null,
createUser: 'Bearbeiter 6',
clerk: 'Geist',
- adminFlag: false
+ adminFlag: false,
+ type: null,
+ isTypePresenceCheck: Notification.prototype.isTypePresenceCheck
}
];
@@ -342,7 +365,9 @@
finishedDate: '2017-01-15T16:16:00',
createUser: 'Test 7',
clerk: 'Bearbeiter 1',
- adminFlag: false
+ adminFlag: false,
+ type: null,
+ isTypePresenceCheck: Notification.prototype.isTypePresenceCheck
},
{
id: 8,
@@ -369,7 +394,9 @@
finishedDate: '2017-01-17T05:01:00',
createUser: 'Test 8',
clerk: 'Bearbeiter 2',
- adminFlag: false
+ adminFlag: false,
+ type: null,
+ isTypePresenceCheck: Notification.prototype.isTypePresenceCheck
},
{
id: 9,
@@ -396,7 +423,9 @@
finishedDate: '2017-01-18T21:13:00',
createUser: 'Test 9',
clerk: 'Bearbeiter 3',
- adminFlag: false
+ adminFlag: false,
+ type: null,
+ isTypePresenceCheck: Notification.prototype.isTypePresenceCheck
}
];
@@ -426,7 +455,9 @@
finishedDate: '2017-01-15T16:16:00',
createUser: 'Test 7',
clerk: 'Bearbeiter 1',
- adminFlag: false
+ adminFlag: false,
+ type: null,
+ isTypePresenceCheck: Notification.prototype.isTypePresenceCheck
},
{
id: 8,
@@ -453,7 +484,9 @@
finishedDate: '2017-01-17T05:01:00',
createUser: 'Test 8',
clerk: 'Bearbeiter 2',
- adminFlag: false
+ adminFlag: false,
+ type: null,
+ isTypePresenceCheck: Notification.prototype.isTypePresenceCheck
},
{
id: 9,
@@ -480,6 +513,8 @@
finishedDate: '2017-01-18T21:13:00',
createUser: 'Test 9',
clerk: 'Bearbeiter 3',
- adminFlag: false
+ adminFlag: false,
+ type: null,
+ isTypePresenceCheck: Notification.prototype.isTypePresenceCheck
}
];
diff --git a/src/app/test-data/reminder-notifications.ts b/src/app/test-data/reminder-notifications.ts
index ebe24bc..c128bc4 100644
--- a/src/app/test-data/reminder-notifications.ts
+++ b/src/app/test-data/reminder-notifications.ts
@@ -35,7 +35,9 @@
finishedDate: null,
createUser: 'Abteilungsleitung',
clerk: 'Mustermann',
- adminFlag: false
+ adminFlag: false,
+ type: null,
+ isTypePresenceCheck: Notification.prototype.isTypePresenceCheck
};
export const DUMMY_UPDATED_REMINDER_NOTIFICATION: Notification = {
id: 100,
@@ -62,7 +64,9 @@
finishedDate: null,
createUser: 'Abteilungsleitung',
clerk: 'Mustermann',
- adminFlag: false
+ adminFlag: false,
+ type: null,
+ isTypePresenceCheck: Notification.prototype.isTypePresenceCheck
};
export const DUMMY_REMINDER_NOTIFICATION: Notification = {
id: null,
@@ -89,7 +93,9 @@
finishedDate: null,
createUser: 'Abteilungsleitung',
clerk: 'Mustermann',
- adminFlag: false
+ adminFlag: false,
+ type: null,
+ isTypePresenceCheck: Notification.prototype.isTypePresenceCheck
};
export const REMINDER_NOTIFICATIONS: Notification[] = [
{
@@ -117,7 +123,9 @@
finishedDate: null,
createUser: 'Abteilungsleitung',
clerk: 'Mustermann',
- adminFlag: false
+ adminFlag: false,
+ type: null,
+ isTypePresenceCheck: Notification.prototype.isTypePresenceCheck
},
{
id: 101,
@@ -144,7 +152,9 @@
finishedDate: null,
createUser: 'Personalrat',
clerk: 'Mustermann',
- adminFlag: false
+ adminFlag: false,
+ type: null,
+ isTypePresenceCheck: Notification.prototype.isTypePresenceCheck
},
{
id: 102,
@@ -171,6 +181,8 @@
finishedDate: null,
createUser: 'Bearbeiter 5',
clerk: 'Imaginär',
- adminFlag: false
+ adminFlag: false,
+ type: null,
+ isTypePresenceCheck: Notification.prototype.isTypePresenceCheck
}
];
diff --git a/src/app/test-data/search-result-notifications.ts b/src/app/test-data/search-result-notifications.ts
index e5112fb..738f70b 100644
--- a/src/app/test-data/search-result-notifications.ts
+++ b/src/app/test-data/search-result-notifications.ts
@@ -36,7 +36,9 @@
finishedDate: null,
createUser: 'Abteilungsleitung',
clerk: 'Mustermann',
- adminFlag: false
+ adminFlag: false,
+ type: null,
+ isTypePresenceCheck: Notification.prototype.isTypePresenceCheck
};
export const SEARCH_RESULT_NOTIFICATIONS: Notification[] = [
@@ -65,7 +67,9 @@
finishedDate: null,
createUser: 'Bearbeiter 3',
clerk: 'Musterkind',
- adminFlag: false
+ adminFlag: false,
+ type: null,
+ isTypePresenceCheck: Notification.prototype.isTypePresenceCheck
},
{
id: 4,
@@ -92,7 +96,9 @@
finishedDate: null,
createUser: 'Bearbeiter 4',
clerk: 'Musterenkel',
- adminFlag: false
+ adminFlag: false,
+ type: null,
+ isTypePresenceCheck: Notification.prototype.isTypePresenceCheck
},
{
id: 5,
@@ -119,7 +125,9 @@
finishedDate: null,
createUser: 'Bearbeiter 5',
clerk: 'Imaginär',
- adminFlag: false
+ adminFlag: false,
+ type: null,
+ isTypePresenceCheck: Notification.prototype.isTypePresenceCheck
}
];
@@ -149,7 +157,9 @@
finishedDate: null,
createUser: 'Bearbeiter 3',
clerk: 'Musterkind',
- adminFlag: false
+ adminFlag: false,
+ type: null,
+ isTypePresenceCheck: Notification.prototype.isTypePresenceCheck
},
{
id: 4,
@@ -176,7 +186,9 @@
finishedDate: null,
createUser: 'Bearbeiter 4',
clerk: 'Musterenkel',
- adminFlag: false
+ adminFlag: false,
+ type: null,
+ isTypePresenceCheck: Notification.prototype.isTypePresenceCheck
},
{
id: 5,
@@ -203,7 +215,9 @@
finishedDate: null,
createUser: 'Bearbeiter 5',
clerk: 'Imaginär',
- adminFlag: false
+ adminFlag: false,
+ type: null,
+ isTypePresenceCheck: Notification.prototype.isTypePresenceCheck
},
{
id: 6,
@@ -230,6 +244,8 @@
finishedDate: null,
createUser: 'Bearbeiter 6',
clerk: 'Geist',
- adminFlag: false
+ adminFlag: false,
+ type: null,
+ isTypePresenceCheck: Notification.prototype.isTypePresenceCheck
}
];
\ No newline at end of file