+
{{document.SourceName}}
-
+
- {{document.Stakeholders}}
+
Correspondência
Acções Presidenciais
Arquivo Despacho Electrónico
- {{document.CreateDate | date: 'dd-MM-yy'}}
+
+
diff --git a/src/app/pages/agenda/edit-event/edit-event.page.ts b/src/app/pages/agenda/edit-event/edit-event.page.ts
index 0228acc0b..75dfabae1 100644
--- a/src/app/pages/agenda/edit-event/edit-event.page.ts
+++ b/src/app/pages/agenda/edit-event/edit-event.page.ts
@@ -38,7 +38,7 @@ export class EditEventPage implements OnInit {
caller:string;
- loadedEventAttachments: Attachment[];
+ loadedEventAttachments: Attachment[] = [];
taskParticipants: any = [];
taskParticipantsCc: any = [];
adding: "intervenient" | "CC" = "intervenient";
@@ -185,6 +185,40 @@ export class EditEventPage implements OnInit {
this.toastService.badRequest()
}
+ this.saveDocument()
+ }
+
+
+ saveDocument() {
+
+ this.loadedEventAttachments.forEach((e)=>{
+
+ const id: any = e.Id
+ const remove = e['remove']
+
+ if ( id == 'add') {
+ //data.selected
+ const DocumentToSave = {
+ SourceTitle: e.SourceName,
+ ParentId: this.postEvent.EventId,
+ Source: '1',
+ SourceId: e.SourceId,
+ ApplicationId: e.ApplicationId.toString(),
+ Id: '0',
+ Link: '',
+ SerialNumber: '',
+ };
+
+ this.attachmentsService.setEventAttachmentById(DocumentToSave).subscribe(()=>{
+ this.getAttachments(this.postEvent.EventId);
+ });
+
+ } else if(remove) {
+ this.attachmentsService.deleteEventAttachmentById(e.Id).subscribe( res=> {})
+ }
+
+ })
+
}
async openAttendees() {
@@ -254,12 +288,17 @@ export class EditEventPage implements OnInit {
});
}
- deleteAttachment(attachmentID: string) {
+ deleteAttachment(attachmentID: string, index) {
- this.attachmentsService.deleteEventAttachmentById(attachmentID).subscribe(
- res=>{
- this.loadedEventAttachments = this.loadedEventAttachments.filter(e=> e.Id.toString() != attachmentID);
- })
+ const id: any = this.loadedEventAttachments[index].Id
+
+ if(id == 'add') {
+ this.loadedEventAttachments = this.loadedEventAttachments.filter((e,i)=> i!=index)
+ } else {
+ this.loadedEventAttachments[index]['remove'] = true
+ }
+
+
}
async getDoc() {
@@ -273,27 +312,30 @@ export class EditEventPage implements OnInit {
}
});
await modal.present();
- modal.onDidDismiss().then( async (res)=>{
- if(res){
+ modal.onDidDismiss().then( async (res)=> {
+ if(res) {
const data = res.data;
- //data.selected
- const DocumentToSave = {
- SourceTitle: data.selected.Assunto,
+
+ const ApplicationIdDocumentToSave: any = {
+ SourceName: data.selected.Assunto,
ParentId: this.postEvent.EventId,
- Source: '1',
SourceId: data.selected.Id,
+ Stakeholders: false,
ApplicationId: data.selected.ApplicationType.toString(),
- Id: '0',
+ CreateDate: false,
+ // needed to attach this document
+ Id: 'add',
+ SourceTitle: data.selected.Assunto,
+ Source: '1',
Link: '',
SerialNumber: '',
- };
+ }
- await this.attachmentsService.setEventAttachmentById(DocumentToSave).subscribe(()=>{
- this.getAttachments(this.postEvent.EventId);
- });
+ console.log( this.loadedEventAttachments)
+ this.loadedEventAttachments.push(ApplicationIdDocumentToSave)
}
- });
+ })
}
}
\ No newline at end of file
diff --git a/src/app/pages/search/search.page.ts b/src/app/pages/search/search.page.ts
index a3cda93c2..7e0e52038 100644
--- a/src/app/pages/search/search.page.ts
+++ b/src/app/pages/search/search.page.ts
@@ -463,15 +463,15 @@ export class SearchPage implements OnInit {
}
}
- clearInputRemetente() {
+ clearInputRemetente(){
this.searchSender = "";
}
- clearInputDocumentDate() {
+ clearInputDocumentDate(){
this.searchDocumentDate = "";
}
- clearInputOrganicEntity() {
+ clearInputOrganicEntity(){
this.searchOrganicEntiry = "";
}
@@ -531,10 +531,10 @@ export class SearchPage implements OnInit {
}
- async filterDocList(categoryName:string) {
+ async filterDocList(categoryName:string){
// show all category
- if(this. showCategory == categoryName ) {
+ if(this. showCategory == categoryName ){
this.showSearchDocuments = this.searchDocuments;
@@ -562,12 +562,12 @@ export class SearchPage implements OnInit {
const ApplicationType = searchDocument.ApplicationType.toString()
const Id = searchDocument.Id
- if(this.select == false) {
+ if(this.select == false){
if(this.type == "Agenda") {
const modal = await this.modalCtrl.create({
component: ViewEventPage,
- componentProps: {
+ componentProps:{
eventId: Id
},
cssClass: 'modal modal-desktop',
@@ -575,7 +575,7 @@ export class SearchPage implements OnInit {
await modal.present();
modal.onDidDismiss().then((res)=>{});
- } else if(this.type == "AccoesPresidenciais") {
+ } else if(this.type == "AccoesPresidenciais"){
this.viewPublicationDetail(Id);
}
@@ -585,8 +585,6 @@ export class SearchPage implements OnInit {
}
- } else {
- console.log('!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!', this.select)
}
}