mirror of
https://code.equilibrium.co.ao/ITO/doneit-web.git
synced 2026-04-19 04:57:52 +00:00
fix agenda and publication
This commit is contained in:
@@ -366,7 +366,7 @@ export class EditEventPage implements OnInit {
|
||||
|
||||
try {
|
||||
if(this.sesseionStora.user.Profile == 'MDGPR' || this.sesseionStora.user.Profile == 'PR') {
|
||||
await this.eventsService.editEvent(this._postEvent, 2, 3).toPromise()
|
||||
await this.eventsService.editEvent(this._postEvent, 2, 3, this._postEvent.CalendarId).toPromise()
|
||||
if(this.initCalendarName != this._postEvent.CalendarName) {
|
||||
let body = {
|
||||
"EventId": this._postEvent.EventId,
|
||||
@@ -380,6 +380,7 @@ export class EditEventPage implements OnInit {
|
||||
this.showLoader = false;
|
||||
this.httpErrorHandle.httpsSucessMessagge('Editar evento')
|
||||
} else {
|
||||
console.log(this._postEvent, 2, 3, this._postEvent.CalendarId)
|
||||
await this.eventsService.editEvent(this._postEvent, 2, 3, this._postEvent.CalendarId).toPromise()
|
||||
if(this.initCalendarName != this._postEvent.CalendarName) {
|
||||
let body = {
|
||||
@@ -542,7 +543,7 @@ export class EditEventPage implements OnInit {
|
||||
SourceName: data.selected.Assunto,
|
||||
ParentId: this._postEvent.EventId,
|
||||
SourceId: data.selected.Id,
|
||||
Stakeholders: data.selected.Stakeholders | data.selected.EntidadeOrganicaNome,
|
||||
Stakeholders: data.selected.EntidadeOrganicaNome | data.selected.Stakeholders,
|
||||
ApplicationId: data.selected.ApplicationType.toString(),
|
||||
CreateDate: data.selected.Data,
|
||||
Id: 'add',
|
||||
@@ -590,13 +591,13 @@ export class EditEventPage implements OnInit {
|
||||
this.postEvent.IsAllDayEvent = this.allDayCheck;
|
||||
this.postEvent.StartDate = this.setAlldayTime(this.postEvent.StartDate)
|
||||
this.postEvent.EndDate = this.setAlldayTimeEndDate(this.postEvent.EndDate)
|
||||
|
||||
|
||||
console.log('Recurso ativado!!');
|
||||
} else {
|
||||
this.postEvent.IsAllDayEvent = this.allDayCheck;
|
||||
this.postEvent.EndDate = this.setAlldayTimeEndDateNotAlday(this.postEvent.EndDate)
|
||||
console.log('Recurso desativado');
|
||||
|
||||
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
@@ -213,7 +213,7 @@
|
||||
{{last ? scrollToBottom() : ''}}
|
||||
</div>
|
||||
<div *ngIf="msg.t == 'au' && msg.msg != sessionStore.user.UserName">
|
||||
<div *ngFor="let user of allUsers">
|
||||
<div *ngFor="let user of ChatSystemService.users">
|
||||
<div *ngIf="msg.msg == user.username" class="info-text-leave">
|
||||
<ion-label>Adicionou {{user.name}}</ion-label><br />
|
||||
</div>
|
||||
|
||||
@@ -41,7 +41,6 @@ export class GroupMessagesPage implements OnInit, OnChanges, AfterViewInit, OnDe
|
||||
loggedUser: any;
|
||||
message: any;
|
||||
messages: any;
|
||||
allUsers: any[] = [];
|
||||
documents: SearchList[] = [];
|
||||
|
||||
room: any = new Array();
|
||||
@@ -333,12 +332,18 @@ export class GroupMessagesPage implements OnInit, OnChanges, AfterViewInit, OnDe
|
||||
|
||||
async getChatMembers() {
|
||||
|
||||
this.chatService.getAllUsers().subscribe(res => {
|
||||
//
|
||||
// this.chatService.getAllUsers().subscribe(res => {
|
||||
// //
|
||||
|
||||
// this.allUsers = res['users']
|
||||
// //
|
||||
// });
|
||||
|
||||
|
||||
if(this.ChatSystemService.users.length == 0) {
|
||||
this.ChatSystemService.getUser()
|
||||
}
|
||||
|
||||
this.allUsers = res['users']
|
||||
//
|
||||
});
|
||||
}
|
||||
|
||||
openGroupContactsPage() {
|
||||
|
||||
@@ -226,13 +226,14 @@ export class PublicationFromMvService {
|
||||
|
||||
try {
|
||||
|
||||
await this.publications.CreatePublication(publication.ProcessId, publication).toPromise()
|
||||
const publicationsId = await this.publications.CreatePublication(publication.ProcessId, publication).toPromise()
|
||||
|
||||
this.httpErroHandle.httpsSucessMessagge('Criar publicação')
|
||||
|
||||
// this.goBackToViewPublications.emit();
|
||||
window['upload-header-set-remove'](this.id);
|
||||
this.doneUpload()
|
||||
this.publicationFolderService.getPublicationsIds(this.folderId)
|
||||
this.publicationFolderService.loadPublication(publicationsId, this.folderId)
|
||||
} catch (error) {
|
||||
window['upload-header-set-retry'](this.id)
|
||||
this.httpErroHandle.httpStatusHandle(error)
|
||||
|
||||
@@ -43,13 +43,13 @@
|
||||
<ion-card-content>
|
||||
|
||||
<div style="width: 100%; height: 395px;">
|
||||
<app-swiper
|
||||
<app-swiper
|
||||
[publicationList]=publication
|
||||
[navigation]="true"
|
||||
[pagination]="false"
|
||||
></app-swiper>
|
||||
</div>
|
||||
<!--
|
||||
<!--
|
||||
<swiper-container [config]="swiperThumbsConfig" [modules]="swiperModules" [speed]=400 navigation="true" [pagination]="{clickable: true, dynamicBullets: true }">
|
||||
<swiper-slide *ngFor="let files of publication.Files let k = index" class="centered-slide">
|
||||
<div class="cool">
|
||||
|
||||
Reference in New Issue
Block a user