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:
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, 92 insertions, 0 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
new file mode 100644
index 00000000..1c1e766b
--- /dev/null
+++ b/deprecated-workflow-designer/sdc-workflow-designer-ui/src/app/components/property/intermediate-catch-event/intermediate-catch-event.component.html
@@ -0,0 +1,92 @@
+<!--
+/*******************************************************************************
+ * 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