Files
doneit-web/src/app/modals/forward/forward.page.ts
T

239 lines
6.7 KiB
TypeScript
Raw Normal View History

2021-06-17 12:24:31 +01:00
import { Component, OnInit } from '@angular/core';
2021-06-17 16:12:56 +01:00
import { NavigationExtras, Router } from '@angular/router';
2021-06-17 12:24:31 +01:00
import { AlertController, AnimationController, ModalController, NavParams } from '@ionic/angular';
import { Event } from 'src/app/models/event.model'
import { EventBody } from 'src/app/models/eventbody.model';
import { ProcessesService } from 'src/app/services/processes.service';
import { EventPerson } from 'src/app/models/eventperson.model';
import { EventsService } from 'src/app/services/events.service';
import { AttachmentsService } from 'src/app/services/attachments.service';
import { DiscartExpedientModalPage } from 'src/app/pages/gabinete-digital/discart-expedient-modal/discart-expedient-modal.page';
import { AlertService } from 'src/app/services/alert.service';
import { BadRequestPage } from 'src/app/shared/popover/bad-request/bad-request.page';
import { SuccessMessagePage } from 'src/app/shared/popover/success-message/success-message.page';
import { ToastService } from 'src/app/services/toast.service';
import { SearchDocument } from 'src/app/models/search-document';
import { SearchPage } from 'src/app/pages/search/search.page';
2021-06-25 14:28:53 +01:00
import { AttendeesPageModal } from 'src/app/pages/events/attendees/attendees.page';
2021-06-17 12:24:31 +01:00
@Component({
selector: 'app-forward',
templateUrl: './forward.page.html',
styleUrls: ['./forward.page.scss'],
})
export class ForwardPage implements OnInit {
task: any;
note:string;
taskParticipants: EventPerson[] = [];
taskParticipantsCc: EventPerson[] = [];
taskDocId:string;
loadedAttachments:any;
adding: "intervenient" | "CC" = "intervenient";
postData: Event;
eventBody: EventBody;
eventAttendees: EventPerson;
formLocationSatus: boolean = false;
showAttendees= false;
documents:SearchDocument[] = [];
constructor(
private modalController: ModalController,
private router:Router,
private navParams: NavParams,
private processes:ProcessesService,
private attachmentsService: AttachmentsService,
private calendarService: EventsService,
public alertController: AlertController,
private alertService: AlertService,
private animationController: AnimationController,
private toastService: ToastService,
) {
this.task = this.navParams.get('task');
this.postData = new Event();
this.eventBody = { BodyType : "1", Text : ""};
this.postData.Body = this.eventBody;
this.postData.Subject = this.task.Folio;
this.postData.CalendarName = "Oficial";
let selectedEndDate = new Date();
}
ngOnInit() {
this.adding = "intervenient";
console.log(this.task);
}
close() {
this.router.navigate(['/home/gabinete-digital/expediente']);
this.modalController.dismiss(null);
}
cancelTask() {
this.modalController.dismiss(null);
}
2021-06-17 16:12:56 +01:00
goBack() {
this.modalController.dismiss(null);
if (window.innerWidth <= 800) {
this.router.navigate(['/home/gabinete-digital/pedidos']);
} else {
let navigationExtras: NavigationExtras = {
queryParams: {
"pedidos": true,
}
}
this.router.navigate(['/home/gabinete-digital'], navigationExtras);
}
}
2021-06-17 12:24:31 +01:00
async assignar(note:string, documents:any) {
let body = {
"serialNumber": this.task.SerialNumber,
"action": "Reencaminhar",
"ActionTypeId": 98,
"dataFields": {
"ReviewUserComment": note,
},
"AttachmentList" :documents,
}
}
notImplemented(){
this.alertService.presentAlert('Funcionalidade em desenvolvimento');
}
async saveTask() {
const DocumentToSave = this.documents.map((e) => {
return {
ApplicationId: e.ApplicationType,
SourceId: e.Id,
}
});
let docs = {
ProcessInstanceID: "",
Attachments: DocumentToSave,
}
2021-06-17 22:17:53 +01:00
if(this.taskParticipants.length < 1){
this.toastService.badRequest("Selecione um destinatário");
2021-06-17 12:24:31 +01:00
}
else {
2021-06-17 16:12:56 +01:00
let attendees: any = this.taskParticipants.concat(this.taskParticipantsCc);
attendees = attendees.map(function(val) {
return {
UserEmail: val.EmailAddress,
UserType: val.IsRequired?"I": "CC"
};
});
2021-06-17 12:24:31 +01:00
let body = {
2021-06-17 16:12:56 +01:00
"usersSelected": attendees,
2021-06-17 12:24:31 +01:00
"serialNumber": this.task.SerialNumber,
"action": "Reencaminhar",
"actionTypeId": 98,
"dataFields": {
"ReviewUserComment": this.note,
},
"FolderId": this.task.FolderId,
"AttachmentList" :docs,
}
console.log(body);
2021-06-17 16:12:56 +01:00
this.processes.CompleteParecerPrTask(body).subscribe(res=>{
2021-06-17 12:24:31 +01:00
console.log(res);
2021-06-17 16:12:56 +01:00
this.toastService.successMessage('Processo delegado');
this.goBack();
2021-06-17 12:24:31 +01:00
},
(error)=>{
this.toastService.badRequest("Processo não delegado")
});
}
}
2021-06-25 14:28:53 +01:00
async addParticipants() {
2021-06-17 12:24:31 +01:00
this.adding = "intervenient";
2021-06-25 14:28:53 +01:00
if(window.innerWidth <=800) {
this.showAttendees=false;
2021-06-17 12:24:31 +01:00
const modal = await this.modalController.create({
2021-06-25 14:28:53 +01:00
component: AttendeesPageModal,
componentProps: {
adding: this.adding,
taskParticipants: this.taskParticipants,
taskParticipantsCc: this.taskParticipantsCc
2021-06-17 12:24:31 +01:00
},
2021-06-25 14:28:53 +01:00
cssClass: 'modal attendee',
2021-06-17 12:24:31 +01:00
backdropDismiss: false
});
2021-06-25 14:28:53 +01:00
2021-06-17 12:24:31 +01:00
await modal.present();
2021-06-25 14:28:53 +01:00
modal.onDidDismiss().then((data) => {
if(data) {
data = data['data'];
const newAttendees: EventPerson[] = data['taskParticipants'];
const newAttendeesCC: EventPerson[] = data['taskParticipantsCc'];
this.setIntervenient(newAttendees);
this.setIntervenientCC(newAttendeesCC);
}
2021-06-17 12:24:31 +01:00
});
} else {
2021-06-25 14:28:53 +01:00
this.showAttendees=true
2021-06-17 12:24:31 +01:00
}
}
2021-06-25 14:28:53 +01:00
async setIntervenient(data) {
this.taskParticipants = data;
}
async setIntervenientCC(data) {
this.taskParticipantsCc = data;
}
2021-06-17 12:24:31 +01:00
validateFormInputs(){
let formLocation = this.postData.Location.trim();
if(!this.postData.Location && formLocation.length <= 0){
this.formLocationSatus=true;
}
}
dynamicSetIntervenient({taskParticipants}){
this.taskParticipants = taskParticipants;
}
async getDoc() {
const modal = await this.modalController.create({
component: SearchPage,
cssClass: 'modal-width-100-width-background modal',
componentProps: {
type: 'AccoesPresidenciais & ArquivoDespachoElect',
showSearchInput: true,
select: true
}
});
await modal.present();
modal.onDidDismiss().then((res)=>{
if(res){
const data = res.data;
this.documents.push(data.selected);
}
});
}
removeAttachment(index: number){
this.documents = this.documents.filter( (e, i) => index != i);
}
}