aboutsummaryrefslogtreecommitdiffstats
path: root/deprecated-workflow-designer/sdc-workflow-designer-ui/src/app/components/property/intermediate-catch-event/intermediate-catch-event.component.html
diff options
context:
space:
mode:
authorvempo <vitaliy.emporopulo@amdocs.com>2018-10-22 11:33:19 +0300
committervempo <vitaliy.emporopulo@amdocs.com>2018-10-22 11:33:19 +0300
commit032929d287cbafefe8367e0fcee18dec4b1bf9f7 (patch)
tree6e4f28cd5303d810c24cd110fb69c6d95b875e98 /deprecated-workflow-designer/sdc-workflow-designer-ui/src/app/components/property/intermediate-catch-event/intermediate-catch-event.component.html
parenta224f54637da8de90570beee979aef9069f467d5 (diff)
Deleted deprecated workflow project
Change-Id: I2ad75adab7d47d8df5b3996a315a9b173fa4bbfe Issue-ID: SDC-1855 Signed-off-by: vempo <vitaliy.emporopulo@amdocs.com>
Diffstat (limited to 'deprecated-workflow-designer/sdc-workflow-designer-ui/src/app/components/property/intermediate-catch-event/intermediate-catch-event.component.html')
-rw-r--r--deprecated-workflow-designer/sdc-workflow-designer-ui/src/app/components/property/intermediate-catch-event/intermediate-catch-event.component.html92
1 files changed, 0 insertions, 92 deletions
diff --git a/deprecated-workflow-designer/sdc-workflow-designer-ui/src/app/components/property/intermediate-catch-event/intermediate-catch-event.component.html b/deprecated-workflow-designer/sdc-workflow-designer-ui/src/app/components/property/intermediate-catch-event/intermediate-catch-event.component.html
deleted file mode 100644
index 1c1e766b..00000000
--- a/deprecated-workflow-designer/sdc-workflow-designer-ui/src/app/components/property/intermediate-catch-event/intermediate-catch-event.component.html
+++ /dev/null
@@ -1,92 +0,0 @@
-<!--
-/*******************************************************************************
- * Copyright (c) 2017 ZTE Corporation.
- * All rights reserved. This program and the accompanying materials
- * are made available under the terms of the Eclipse Public License v1.0
- * and the Apache License 2.0 which both accompany this distribution,
- * and are available at http://www.eclipse.org/legal/epl-v10.html
- * and http://www.apache.org/licenses/LICENSE-2.0
- *
- * Contributors:
- * ZTE - initial API and implementation and/or initial documentation
- *******************************************************************************/
--->
-<form class="form-horizontal">
- <div class="form-group row">
- <label class="col-md-3 form-control-label text-md-right">{{'WORKFLOW.TIMER_TYPE' | translate}}</label>
- <div class="col-md-9">
- <label class="plx-radio-container">
- <input type="radio" class="plx-radio" [checked]="checkedType === timeType[timeType.timeDuration]"
- (click)="timeTypeChange(timeType[timeType.timeDuration])">
- <div class="radio-substitute"></div>
- <span>{{'WORKFLOW.TIMER_CYCLE' | translate}}</span>
- </label>&nbsp;&nbsp;
- <label class="plx-radio-container">
- <input type="radio" class="plx-radio" [checked]="checkedType === timeType[timeType.timeDate]"
- (click)="timeTypeChange(timeType[timeType.timeDate])">
- <div class="radio-substitute"></div>
- <span>{{'WORKFLOW.TIMER_DATE' | translate}}</span>
- </label>
- </div>
- </div>
-
- <div *ngIf="checkedType === timeType[timeType.timeDuration]">
- <!--<div class="form-group row">
- <label class="col-md-3 form-control-label text-md-right">{{'WORKFLOW.TIMER_YEAR' | translate}}</label>
- <div class="col-md-9">
- <plx-text-input type="number" name="year" min="0" width="336px"
- [(ngModel)]="timeCycle.year" (change)="transformTimeDurationToString()"></plx-text-input>
- </div>
- </div>-->
- <div class="form-group row">
- <label class="col-md-3 form-control-label text-md-right">{{'WORKFLOW.TIMER_MONTH' | translate}}</label>
- <div class="col-md-9">
- <plx-text-input type="number" name="month" min="0" max="12" width="336px"
- [(ngModel)]="timeDuration.month" (change)="transformTimeDurationToString()"></plx-text-input>
- </div>
- </div>
- <div class="form-group row">
- <label class="col-md-3 form-control-label text-md-right">{{'WORKFLOW.TIMER_DAY' | translate}}</label>
- <div class="col-md-9">
- <plx-text-input type="number" name="day" min="0" max="31" width="336px"
- [(ngModel)]="timeDuration.day" (change)="transformTimeDurationToString()"></plx-text-input>
- </div>
- </div>
- <div class="form-group row">
- <label class="col-md-3 form-control-label text-md-right">{{'WORKFLOW.TIMER_HOUR' | translate}}</label>
- <div class="col-md-9">
- <plx-text-input type="number" name="hour" min="0" max="23" width="336px"
- [(ngModel)]="timeDuration.hour" (change)="transformTimeDurationToString()"></plx-text-input>
- </div>
- </div>
- <div class="form-group row">
- <label class="col-md-3 form-control-label text-md-right">{{'WORKFLOW.TIMER_MINUTE' | translate}}</label>
- <div class="col-md-9">
- <plx-text-input type="number" name="minute" min="0" max="59" width="336px"
- [(ngModel)]="timeDuration.minute" (change)="transformTimeDurationToString()"></plx-text-input>
- </div>
- </div>
- <div class="form-group row">
- <label class="col-md-3 form-control-label text-md-right">{{'WORKFLOW.TIMER_SECOND' | translate}}</label>
- <div class="col-md-9">
- <plx-text-input type="number" name="second" min="0" max="59" width="336px"
- [(ngModel)]="timeDuration.second" (change)="transformTimeDurationToString()"></plx-text-input>
- </div>
- </div>
- <!--<div class="form-group row">
- <label class="col-md-3 form-control-label text-md-right">{{'WORKFLOW.TIMER_CYCLE_INDEX' | translate}}</label>
- <div class="col-md-9">
- <plx-text-input type="number" name="time" min="1" width="336px"
- [(ngModel)]="timeCycle.time" (change)="transformTimeDurationToString()"></plx-text-input>
- </div>
- </div>-->
- </div>
-
- <div *ngIf="checkedType === timeType[timeType.timeDate]" class="form-group row">
- <label class="col-md-3 form-control-label text-md-right">{{'WORKFLOW.TIMER_DATE' | translate}}</label>
- <div class="col-md-9">
- <plx-datepicker name="date" [(ngModel)]="timeDate" [locale]="locale" (onConfirm)="timeDateChange()" showTime="true"
- showSeconds='true' dateFormat="YYYY/MM/DD HH:mm:ss"></plx-datepicker>
- </div>
- </div>
-</form> \ No newline at end of file