Use of enum DmpStatus

This commit is contained in:
apapachristou 2019-06-24 17:30:30 +03:00
parent 744942032e
commit 74ed505702
3 changed files with 5 additions and 5 deletions

View File

@ -170,7 +170,6 @@ export class DatasetWizardComponent extends BaseComponent implements OnInit, IBr
});
});
} else if (dmpId != null) {
console.log("inhere");
this.isNew = true;
this.dmpService.getSingle(dmpId).map(data => data as DmpModel)
.pipe(takeUntil(this._destroyed))

View File

@ -440,12 +440,12 @@ export class DmpEditorComponent extends BaseComponent implements OnInit, IBreadC
confirmButton: this.language.instant('DMP-FINALISE-DIALOG.SUBMIT'),
cancelButton: this.language.instant('GENERAL.CONFIRMATION-DIALOG.ACTIONS.CANCEL'),
submitFunction: () => {
this.formGroup.get('status').setValue('1');
this.formGroup.get('status').setValue(DmpStatus.Finalized);
this.formSubmit();
dialogRef.close();
}
}
});
dialogRef.afterClosed().pipe(takeUntil(this._destroyed)).subscribe(result => { });
dialogRef.afterClosed().pipe(takeUntil(this._destroyed)).subscribe(result => {});
}
}

View File

@ -16,6 +16,7 @@ import { QuickWizardEditorWizardModel } from './quick-wizard-editor.model';
import { DatasetEditorWizardComponent } from '../dataset-editor/dataset-editor-wizard.component';
import { ConfirmationDialogComponent } from '../../../library/confirmation-dialog/confirmation-dialog.component';
import { DmpFinalizeDialogComponent } from '../../dmp/editor/dmp-finalize-dialog/dmp-finalize-dialog.component';
import { DmpStatus } from '../../../core/common/enum/dmp-status';
@Component({
@ -91,9 +92,9 @@ export class QuickWizardEditorComponent extends BaseComponent implements OnInit,
if (!this.isFormValid()) { return; }
if (this.formGroup.get('datasets') && this.formGroup.get('datasets').get('datasetsList') && (this.formGroup.get('datasets').get('datasetsList') as FormArray).length > 0) {
for (let control of (this.formGroup.get('datasets').get('datasetsList') as FormArray).controls) {
control.get('status').setValue('1');
control.get('status').setValue(DmpStatus.Finalized);
}
this.formGroup.get('dmp').get('status').setValue('1');
this.formGroup.get('dmp').get('status').setValue(DmpStatus.Finalized);
this.onSubminSaveAndFinalize();
} else {
return;