This commit is contained in:
Peter Maquiran
2023-07-24 13:52:48 +01:00
parent ba8fce1ec8
commit 54a6fb5b6e
5 changed files with 18 additions and 13 deletions
@@ -217,14 +217,16 @@ export class DiplomaAssinarPage implements OnInit {
"serialNumber": this.serialnumber, "serialNumber": this.serialnumber,
"action": "Assinado", "action": "Assinado",
"ActionTypeId": 99999842, "ActionTypeId": 99999842,
"FolderId": this.task.FolderID,
"dataFields": { "dataFields": {
"DraftIds": "",
"ReviewUserComment": '', "ReviewUserComment": '',
"InstanceIDNew": this.task.InstanceID, "InstanceIDNew": this.task.InstanceID,
"DraftIds": "",
}, },
"AttachmentList": { "AttachmentList": {
"ProcessInstanceID": this.task.InstanceID, "ProcessInstanceID": this.task.InstanceID,
"DraftIds": "", "DraftIds": null,
"Attachments": []
}, },
} }
@@ -15,7 +15,7 @@
<ion-label *ngIf="hideRefreshBtn">Gabinete Digital</ion-label> <ion-label *ngIf="hideRefreshBtn">Gabinete Digital</ion-label>
<div class="d-flex align-center cursor" *ngIf="!hideRefreshBtn && segmentVista == 'listview' "> <div class="d-flex align-center cursor" *ngIf="!hideRefreshBtn && segmentVista == 'listview' ">
<mat-form-field class="task-filter-input" appearance="none" color="ion-color-secondary" placeholder="Selecione agenda"> <mat-form-field class="task-filter-input" appearance="none" color="ion-color-secondary" placeholder="Selecione agenda">
<mat-select [(value)]="filterName"> <mat-select [(value)]="filterName" (selectionChange)="dynamicSearch()">
<mat-option value="Para hoje" > <mat-option value="Para hoje" >
Para hoje Para hoje
@@ -114,7 +114,7 @@
<div *ngIf="hideSearchBtn"> <div *ngIf="hideSearchBtn">
<mat-form-field class="task-filter-input" appearance="none" color="ion-color-secondary" placeholder="Selecione agenda"> <mat-form-field class="task-filter-input" appearance="none" color="ion-color-secondary" placeholder="Selecione agenda">
<mat-select [(value)]="filterName" (change)="dynamicSearch()"> <mat-select [(value)]="filterName" (selectionChange)="dynamicSearch()">
<mat-option value="Para hoje" > <mat-option value="Para hoje" >
Para hoje Para hoje
@@ -35,6 +35,7 @@
@media only screen and (max-width: 800px) { @media only screen and (max-width: 800px) {
.btn-ok, .btn-cancel, .btn-delete{ .btn-ok, .btn-cancel, .btn-delete{
width: 47% !important; width: 47% !important;
min-width: 300px;
} }
} }
@media only screen and (min-width: 1024px) { @media only screen and (min-width: 1024px) {
@@ -208,14 +208,16 @@ export class DiplomaOptionsPage implements OnInit {
"serialNumber": this.serialNumber, "serialNumber": this.serialNumber,
"action": "Assinado", "action": "Assinado",
"ActionTypeId": 99999842, "ActionTypeId": 99999842,
"FolderId": this.task.FolderID,
"dataFields": { "dataFields": {
"DraftIds": "",
"ReviewUserComment": note, "ReviewUserComment": note,
"InstanceIDNew": this.task.InstanceID, "InstanceIDNew": this.task.InstanceID,
"DraftIds": "",
}, },
"AttachmentList" : { "AttachmentList" : {
"DraftIds": "", "ProcessInstanceID": this.task.InstanceID,
"ProcessInstanceID": this.task.InstanceID "DraftIds": null,
"Attachments": []
}, },
} }
+6 -6
View File
@@ -1,12 +1,12 @@
export let versionData = { export let versionData = {
"shortSHA": "8d438603e", "shortSHA": "ba8fce1ec",
"SHA": "8d438603e2c7ddc41573476c48384addde03190a", "SHA": "ba8fce1ec8e391c9ae1327a6da973ffc03561d36",
"branch": "developer-catch-merge", "branch": "developer-catch-merge",
"lastCommitAuthor": "'Peter Maquiran'", "lastCommitAuthor": "'Peter Maquiran'",
"lastCommitTime": "'Mon Jul 24 10:15:51 2023 +0100'", "lastCommitTime": "'Mon Jul 24 10:23:03 2023 +0100'",
"lastCommitMessage": "add null", "lastCommitMessage": "fix",
"lastCommitNumber": "5105", "lastCommitNumber": "5106",
"change": "", "change": "",
"changeStatus": "On branch developer-catch-merge\nChanges to be committed:\n (use \"git restore --staged <file>...\" to unstage)\n\tmodified: src/app/shared/popover/deploma-options/deploma-options.page.ts\n\tmodified: version/git-version.ts", "changeStatus": "On branch developer-catch-merge\nChanges to be committed:\n (use \"git restore --staged <file>...\" to unstage)\n\tmodified: src/app/pages/gabinete-digital/diplomas-assinar/diploma-assinar/diploma-assinar.page.ts\n\tmodified: src/app/pages/gabinete-digital/gabinete-digital.page.html\n\tmodified: src/app/shared/popover/deploma-options/deploma-options.page.scss\n\tmodified: src/app/shared/popover/deploma-options/deploma-options.page.ts",
"changeAuthor": "peter.maquiran" "changeAuthor": "peter.maquiran"
} }