Histórico da Página
...
After performing some maintenance in the request attachments so that these actions are performed, you need to Run the Task or click the Save button.
Estado | ||||
---|---|---|---|---|
|
HTML |
---|
<a id="toggleAll" href="#" >Expand/hide additional information. </a>
<script type="text/javascript">
var abertos = 0;
var fechados = 0;
function contador() {
abertos = 0;
fechados = 0;
jQuery(".expand-control").each( function() {
if (document.getElementById(this.id).children[0].className != "expand-control-icon icon expanded") {
fechados++;
} else {
abertos++;
}
});
}
AJS.toInit(function() {
contador();
var soma = abertos + fechados;
$("#toggleAll").html('Expand/hide ' + soma + ' additional information.');
AJS.$('#toggleAll').click(function() {
contador();
if (abertos >= fechados) {
jQuery(".expand-control").each(
function() {
if (document.getElementById(this.id).children[0].className == "expand-control-icon icon expanded") {
jQuery(this).trigger("click");
}
}
)
} else {
jQuery(".expand-control").each(
function() {
if (document.getElementById(this.id).children[0].className != "expand-control-icon icon expanded") {
jQuery(this).trigger("click");
}
}
)
}
});
});
</script> |
Basic Path
01. Access the process request to which you want to add an attachment.
Expandir | title | Learn more
---|
Painel |
To add an attachment in a request, the user should be the person responsible for the request current activity or be the process manager. |
...
Add Attachment through Upload
01. Click Load files.
Expandirpanel | ||
---|---|---|
| ||
This button allows the user to upload the file the user wishes to attach to the request. Upload is the transfer of the file from the user's computer to the platform's server. It is required because, for an attachment to be posted, it must first be written in a file posting area. |
02. Select the file(s) to be attached through Explorer.
Painel | ||
---|---|---|
Expandir | ||
| ||
You can drag the file when transferring it directly to the screen for posting new attachments. |
03. Click Open in Explorer to start the transfer.
Expandirpanel | ||
---|---|---|
| ||
In order for a new attachment to take effect after being added, you need to Run the Task or click on the Save button. |
...
03. Click the attachment options, on the right side of each file
04. Click on Download.
Painel | ||
---|---|---|
Expandir | ||
| ||
A new way to download one or more files at the same time is through the Download button, on the bar above the attachments. When you select a file, it is downloaded automatically. If you select two or more files, they are downloaded immediately, generating a zip file containing all the files that were selected to be downloaded |
...
02. Click on More Options, located to the right of the attachment name.
03. Click Post.
Expandir | title | Learn more
---|
Painel |
Documents attached to the process via upload can only be posted in ECM after they are written. In addition, users must have at least write permission for the folder in which they wish to post the attachment. |
...