Skip to content
Snippets Groups Projects
Verified Commit 6cd7e70d authored by Alex ORLUC's avatar Alex ORLUC
Browse files

FEAT #8754 add send document action

parent 69603eee
No related branches found
No related tags found
No related merge requests found
...@@ -96,7 +96,7 @@ ...@@ -96,7 +96,7 @@
<footer class="footer" *ngIf="!this.signaturesService.annotationMode && !freezeSidenavClose"> <footer class="footer" *ngIf="!this.signaturesService.annotationMode && !freezeSidenavClose">
<button class="btn red" (click)="openDialog()"><i class="fas fa-backspace fa-2x"></i>Refuser</button> <button class="btn red" (click)="openDialog()"><i class="fas fa-backspace fa-2x"></i>Refuser</button>
<button class="btn green" (click)="openDrawer()" [disabled]="!this.signaturesService.isTaggable">Parapher le document</button> <button class="btn green" (click)="openDrawer()" [disabled]="!this.signaturesService.isTaggable">Parapher le document</button>
<button class="btn" (click)="confirmDialog()">Valider<i class="fas fa-check-circle fa-2x"></i></button> <button class="btn" (click)="confirmDialog('validate')">Valider<i class="fas fa-check-circle fa-2x"></i></button>
</footer> </footer>
<app-drawer></app-drawer> <app-drawer></app-drawer>
</mat-sidenav-content> </mat-sidenav-content>
......
...@@ -77,6 +77,7 @@ export class DocumentComponent implements OnInit { ...@@ -77,6 +77,7 @@ export class DocumentComponent implements OnInit {
this.signaturesService.signaturesContent = []; this.signaturesService.signaturesContent = [];
this.signaturesService.notesContent = []; this.signaturesService.notesContent = [];
this.mainDocument = data.document; this.mainDocument = data.document;
this.signaturesService.mainDocumentId = this.mainDocument.id;
this.docList.push({ 'id': this.mainDocument.id, 'encodedDocument': this.mainDocument.encodedDocument, 'title': this.mainDocument.subject }); this.docList.push({ 'id': this.mainDocument.id, 'encodedDocument': this.mainDocument.encodedDocument, 'title': this.mainDocument.subject });
this.mainDocument.attachments.forEach((attach: any, index: any) => { this.mainDocument.attachments.forEach((attach: any, index: any) => {
this.docList.push({ 'id': attach.id, 'encodedDocument': '', 'title': '' }); this.docList.push({ 'id': attach.id, 'encodedDocument': '', 'title': '' });
...@@ -280,10 +281,10 @@ export class DocumentComponent implements OnInit { ...@@ -280,10 +281,10 @@ export class DocumentComponent implements OnInit {
}); });
} }
confirmDialog(): void { confirmDialog(mode: any): void {
const dialogRef = this.dialog.open(ConfirmModalComponent, { const dialogRef = this.dialog.open(ConfirmModalComponent, {
width: '350px', width: '350px',
data: { msg: 'Êtes-vous sûr ?' } data: { msg: 'Êtes-vous sûr ?', mode : mode }
}); });
dialogRef.afterClosed().subscribe(result => { dialogRef.afterClosed().subscribe(result => {
...@@ -369,7 +370,51 @@ export class WarnModalComponent { ...@@ -369,7 +370,51 @@ export class WarnModalComponent {
styleUrls: ['../modal/confirm-modal.component.styl'] styleUrls: ['../modal/confirm-modal.component.styl']
}) })
export class ConfirmModalComponent { export class ConfirmModalComponent {
constructor(@Inject(MAT_DIALOG_DATA) public data: any, public dialogRef: MatDialogRef<ConfirmModalComponent>, public signaturesService: SignaturesContentService) { } constructor(@Inject(MAT_DIALOG_DATA) public data: any, public http: HttpClient, public dialogRef: MatDialogRef<ConfirmModalComponent>, public signaturesService: SignaturesContentService) { }
confirmDoc () {
const signatures: any[] = [];
if (this.data.mode) {
for (let index = 1; index <= this.signaturesService.totalPage; index++) {
if (this.signaturesService.signaturesContent[index]) {
this.signaturesService.signaturesContent[index].forEach((signature: any) => {
signatures.push(
{
'fullPath': signature.encodedSignature,
'height': 'auto',
'width': this.signaturesService.signWidth,
'positionX': 1,
'positionY': 1,
'page': index,
}
);
});
}
if (this.signaturesService.notesContent[index]) {
this.signaturesService.notesContent[index].forEach((note: any) => {
signatures.push(
{
'fullPath': note.fullPath,
'height': note.height,
'width': note.width,
'positionX': note.positionX,
'positionY': note.positionY,
'page': index,
}
);
});
}
this.http.put('../rest/documents/' + this.signaturesService.mainDocumentId + '/action', {'action_id': 5, 'signatures': signatures})
.subscribe(() => {
this.dialogRef.close('sucess');
}, (err: any) => {
console.log(err);
});
}
} else {
this.dialogRef.close('sucess');
}
}
} }
@Component({ @Component({
...@@ -377,6 +422,7 @@ export class ConfirmModalComponent { ...@@ -377,6 +422,7 @@ export class ConfirmModalComponent {
styleUrls: ['../modal/success-info-valid.styl'] styleUrls: ['../modal/success-info-valid.styl']
}) })
export class SuccessInfoValidBottomSheetComponent { export class SuccessInfoValidBottomSheetComponent {
date: Date = new Date();
constructor(private bottomSheetRef: MatBottomSheetRef<SuccessInfoValidBottomSheetComponent>) { } constructor(private bottomSheetRef: MatBottomSheetRef<SuccessInfoValidBottomSheetComponent>) { }
} }
......
...@@ -4,6 +4,6 @@ ...@@ -4,6 +4,6 @@
<p *ngIf="signaturesService.signaturesContent.length == 0">Vous êtes sur le point de valider ce document sans signature !</p> <p *ngIf="signaturesService.signaturesContent.length == 0">Vous êtes sur le point de valider ce document sans signature !</p>
</div> </div>
<div mat-dialog-actions> <div mat-dialog-actions>
<button class="btn green" mat-button (click)="this.dialogRef.close('sucess');"><i class="fas fa-check-circle fa-2x"></i> Valider</button> <button class="btn green" mat-button (click)="confirmDoc();"><i class="fas fa-check-circle fa-2x"></i> Valider</button>
<button class="btn red" mat-button cdkFocusInitial (click)="this.dialogRef.close();"><i class="fas fa-times-circle fa-2x"></i> Annuler</button> <button class="btn red" mat-button cdkFocusInitial (click)="this.dialogRef.close();"><i class="fas fa-times-circle fa-2x"></i> Annuler</button>
</div> </div>
...@@ -2,6 +2,6 @@ ...@@ -2,6 +2,6 @@
<h1><i class="fa fa-thumbs-up fa-4x"></i></h1> <h1><i class="fa fa-thumbs-up fa-4x"></i></h1>
<p>Document signé en tant que :</p> <p>Document signé en tant que :</p>
<p style="font-weight:bold;font-size: 30px;">Thierry Lascou (DSI)</p> <p style="font-weight:bold;font-size: 30px;">Jenny JANE</p>
<p style="font-weight:bold;font-size: 15px;">le 18/10/2018 à 17h21</p> <p style="font-weight:bold;font-size: 15px;">le {{date | date:'dd/MM/yyyy'}} à {{date | date:'HH:mm'}}</p>
</div> </div>
...@@ -2,7 +2,7 @@ import { Injectable } from '@angular/core'; ...@@ -2,7 +2,7 @@ import { Injectable } from '@angular/core';
@Injectable() @Injectable()
export class SignaturesContentService { export class SignaturesContentService {
mainDocumentId: Number = 0;
signaturesContent: any[] = []; signaturesContent: any[] = [];
notesContent: any[] = []; notesContent: any[] = [];
signaturesList: any[] = []; signaturesList: any[] = [];
......
...@@ -3,7 +3,7 @@ import { Observable } from 'rxjs'; ...@@ -3,7 +3,7 @@ import { Observable } from 'rxjs';
import { HttpClient } from '@angular/common/http'; import { HttpClient } from '@angular/common/http';
import { Router } from '@angular/router'; import { Router } from '@angular/router';
import { ScrollEvent } from 'ngx-scroll-event'; import { ScrollEvent } from 'ngx-scroll-event';
import { MatSidenav } from '@angular/material'; import { MatSidenav, MatSnackBar } from '@angular/material';
import * as $ from 'jquery'; import * as $ from 'jquery';
interface AppState { interface AppState {
...@@ -24,7 +24,7 @@ export class SidebarComponent implements OnInit { ...@@ -24,7 +24,7 @@ export class SidebarComponent implements OnInit {
@ViewChild('listContent') listContent: ElementRef; @ViewChild('listContent') listContent: ElementRef;
constructor(public http: HttpClient, private sidenav: MatSidenav, private router: Router) { } constructor(public http: HttpClient, private sidenav: MatSidenav, private router: Router, public snackBar: MatSnackBar) { }
handleScroll(event: ScrollEvent) { handleScroll(event: ScrollEvent) {
if (event.isReachingBottom && !this.loadingList && this.documentsList.length < this.countDocumentsList) { if (event.isReachingBottom && !this.loadingList && this.documentsList.length < this.countDocumentsList) {
...@@ -39,6 +39,13 @@ export class SidebarComponent implements OnInit { ...@@ -39,6 +39,13 @@ export class SidebarComponent implements OnInit {
this.documentsList = this.documentsList.concat(data.documents); this.documentsList = this.documentsList.concat(data.documents);
this.loadingList = false; this.loadingList = false;
this.listContent.nativeElement.style.overflowY = 'auto'; this.listContent.nativeElement.style.overflowY = 'auto';
this.snackBar.open('Liste des documents actualisée', null,
{
duration: 3000,
panelClass: 'center-snackbar',
verticalPosition: 'top'
}
);
}); });
} }
} }
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment