edit recurrence event

This commit is contained in:
Eudes Inácio
2024-06-13 12:14:48 +01:00
parent 35b1f3ae08
commit b0583ce9e6
7 changed files with 84 additions and 13 deletions
+7 -6
View File
@@ -165,9 +165,10 @@ export class SearchPage implements OnInit {
}
async view(item: SearchList) {
console.log('doc item',item)
const ApplicationType = item.ApplicationType.toString()
const Id = item.Id
const ApplicationType = item.applicationId.toString()
const Id = item.docId
if (ApplicationType == '8') {
@@ -178,12 +179,12 @@ export class SearchPage implements OnInit {
componentProps: {
trustedUrl: '',
file: {
title: item.Assunto,
title: item.subject,
url: '',
title_link: '',
},
applicationId: ApplicationType,
docId: item.Id,
docId: item.docId,
},
cssClass: 'modal-width-100-width-background modal'
});
@@ -196,12 +197,12 @@ export class SearchPage implements OnInit {
componentProps: {
trustedUrl: '',
file: {
title: item.Assunto,
title: item.subject,
url: '',
title_link: '',
},
applicationId: ApplicationType,
docId: item.Id,
docId: item.docId,
},
cssClass: 'modal-width-100-width-background modal'
});