Skip to content
Snippets Groups Projects
Commit 4c145672 authored by Alex ORLUC's avatar Alex ORLUC
Browse files

FEAT #12869 TIME 0:15 add senders

parent b2fad173
No related branches found
No related tags found
No related merge requests found
......@@ -22,10 +22,10 @@
 
<span title="{{lang[row.categoryId]}}">{{lang[row.categoryId]}}</span>
</span>
<span class="sub-info-data col-md-4 text-center">
<span class="sub-info-data col-md-4 text-center senders" (click)="openContact(row,'senders')">
<i class="fas fa-user" title="{{lang.contact}}"></i>
&nbsp;
<span [title]="'Pierre BRUNEL'">Pierre BRUNEL</span>
<span [title]="row.senders">{{row.senders}}</span>
</span>
<span class="sub-info-data col-md-4 text-right">
<i class="fas fa-calendar" title="{{lang.creationDate}}"></i>
......
......@@ -38,4 +38,11 @@
color: red;
font-weight: bold;
opacity: 0.6;
}
.senders {
cursor: pointer;
&:hover {
color: $primary
}
}
\ No newline at end of file
......@@ -12,6 +12,7 @@ import { ConfirmComponent } from '../../plugins/modal/confirm.component';
import { MatDialog } from '@angular/material';
import { LinkResourceModalComponent } from './linkResourceModal/link-resource-modal.component';
import { FunctionsService } from '../../service/functions.service';
import { ContactsListModalComponent } from '../contact/list/modal/contacts-list-modal.component';
declare function $j(selector: any): any;
......@@ -80,6 +81,14 @@ export class LinkedResourceListComponent implements OnInit {
} else if (this.functions.empty(linkeRes[key]) && ['senders', 'recipients', 'attachments', 'hasDocument', 'confidentiality', 'visaCircuit'].indexOf(key) === -1) {
linkeRes[key] = this.lang.undefined;
}
if (key === 'senders' && linkeRes[key].length > 1) {
if (linkeRes[key].length > 1) {
linkeRes[key] = linkeRes[key].length + ' ' + this.lang.contacts;
} else {
linkeRes[key] = linkeRes[key][0];
}
}
});
});
......@@ -141,4 +150,8 @@ export class LinkedResourceListComponent implements OnInit {
})
).subscribe();
}
openContact(row: any, mode: string) {
this.dialog.open(ContactsListModalComponent, { data: { title: `${row.chrono} - ${row.subject}`, mode: mode, resId: row.resId } });
}
}
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