elixForms API v2

- reorg Proposta CCT requests
- update requests from Production of Proposta CCT
- update templates EFTL code
This commit is contained in:
2026-08-25 15:19:31 +02:00
parent 3b84010a9d
commit 6c7ebcd3a5
31 changed files with 897 additions and 290 deletions
@@ -0,0 +1,58 @@
info:
name: Azzeratore ritenute per contratto NON economico
type: http
seq: 9
http:
method: POST
url: "{{elixFormsApiUrl}}/eftl/process/v1"
headers:
- name: x-requested-with
value: XMLHttpRequest
- name: x-api-key
value: "{{elixFormsWsAuthenticationToken}}"
- name: x-ef-request-id
value: "17144"
disabled: true
- name: x-ef-request-id
value: "25889"
body:
type: json
data: |-
{
"userDocument": "{{elixBase64EftlDocument}}", // see the pre-request script
"userContext": {
"lang": "IT"
}
}
auth: inherit
runtime:
scripts:
- type: before-request
code: |-
const { prepareEftlDocument } = require("./elixFormsJs.js")
// Copy-pasta your EFTL document below inside the template literals (`)
prepareEftlDocument(String.raw`
[EFTL]
[VAR name="azzeratoreNonEconomico" type="number"][% azzeratoreNonEconomico = 1; %][/VAR]
[VAR name="isEconomico" type="boolean"][TAG]GETVALUEBYTAG,CONTRATTO_ECONOMICO,REQUEST,IUQOID[/TAG][/VAR]
[VAR name="esenzioneRitenute" type="string"][TAG]SCHEMAID,341,COL0089,IUQOID, , [/TAG][/VAR]
[VAR name="mostraRitenute" type="boolean"][IS_EMPTY varname="esenzioneRitenute" /][/VAR]
[IF]
[CONDITION][% isEconomico == true || mostraRitenute == false %][/CONDITION]
[THEN][% azzeratoreNonEconomico = 0; %][/THEN]
[/IF]
[%= azzeratoreNonEconomico %]
[/EFTL]
`);
settings:
encodeUrl: true
timeout: 0
followRedirects: true
maxRedirects: 5
forwardAuthorizationHeader: true
@@ -0,0 +1,57 @@
info:
name: Azzeratore ritenute per contratto economico
type: http
seq: 7
http:
method: POST
url: "{{elixFormsApiUrl}}/eftl/process/v1"
headers:
- name: x-requested-with
value: XMLHttpRequest
- name: x-api-key
value: "{{elixFormsWsAuthenticationToken}}"
- name: x-ef-request-id
value: "17144"
disabled: true
- name: x-ef-request-id
value: "25889"
body:
type: json
data: |-
{
"userDocument": "{{elixBase64EftlDocument}}", // see the pre-request script
"userContext": {
"lang": "IT"
}
}
auth: inherit
runtime:
scripts:
- type: before-request
code: |-
const { prepareEftlDocument } = require("./elixFormsJs.js")
// Copy-pasta your EFTL document below inside the template literals (`)
prepareEftlDocument(String.raw`
[EFTL]
[VAR name="azzeratoreEconomico" type="number"][% azzeratoreEconomico = 1; %][/VAR]
[VAR name="isEconomico" type="boolean"][TAG]GETVALUEBYTAG,CONTRATTO_ECONOMICO,REQUEST,IUQOID[/TAG][/VAR]
[VAR name="esenzioneRitenute" type="string"][TAG]SCHEMAID,341,COL0089,IUQOID, , [/TAG][/VAR]
[VAR name="mostraRitenute" type="boolean"][IS_EMPTY varname="esenzioneRitenute" /][/VAR]
[IF]
[CONDITION][% isEconomico == false || mostraRitenute == false %][/CONDITION]
[THEN][% azzeratoreEconomico = 0; %][/THEN]
[/IF]
[%= azzeratoreEconomico %]
[/EFTL]
`);
settings:
encodeUrl: true
timeout: 0
followRedirects: true
maxRedirects: 5
forwardAuthorizationHeader: true
@@ -1,7 +1,7 @@
info:
name: Calcolo D.1.3 5% con virgole
type: http
seq: 3
seq: 21
http:
method: POST
@@ -25,9 +25,7 @@ http:
{
"userDocument": "{{elixBase64EftlDocument}}", // see the pre-request script
"userContext": {
"lang": "IT",
"crlf": "\r\n",
"qualificheDocenti": ";Docente;Ricercatore;"
"lang": "IT"
}
}
auth: inherit
@@ -42,7 +40,15 @@ runtime:
[EFTL][HEADER name="trimDocument" value="true" type="boolean" /]
[VAR name="D1_1" type="number"][TAG]GETVALUEBYTAG,PROPOSTA_CCT_CONTRATTO_D_1_1,REQUEST,IUQOID[/TAG][/VAR]
[VAR name="D1_2" type="number"][TAG]GETVALUEBYTAG,PROPOSTA_CCT_CONTRATTO_D_1_2,REQUEST,IUQOID[/TAG][/VAR]
[VAR name="A" type="number"][TAG]SCHEMAID,338,COL0001,IUQOID, , [/TAG][/VAR]
[VAR name="numberIterable" type="iterable"][SPLIT regex="\."][TAG]GETVALUEBYTAG,PROPOSTA_CCT_CONTRATTO_A,REQUEST,IUQOID[/TAG][/SPLIT][/VAR]
[VAR name="first" type="number"][% first = 0; %][/VAR]
[VAR name="second" type="number"][% second = 1; %][/VAR]
[VAR name="numberIntegerPart" type="string"][VALUE_OF varname="numberIterable" index="first" /][/VAR]
[VAR name="numberDecimalPart" type="string"][VALUE_OF varname="numberIterable" index="second" /][/VAR]
[IF][CONDITION][IS_EMPTY varname="numberDecimalPart" /][/CONDITION][THEN][% numberDecimalPart = "00"; %][/THEN][/IF]
[VAR name="A" type="number"][% A = numberIntegerPart + "," + numberDecimalPart; %][/VAR]
[VAR name="D1_3" type="number"][% D1_3 = D1_1 + D1_2 - (A * 0.20); %][/VAR]
[VAR name="QuotaAteneo" type="number"][% QuotaAteneo = 0; %][/VAR]
@@ -60,3 +66,4 @@ settings:
timeout: 0
followRedirects: true
maxRedirects: 5
forwardAuthorizationHeader: true
@@ -1,7 +1,7 @@
info:
name: Calcolo D.1.3 con virgole
type: http
seq: 4
seq: 20
http:
method: POST
@@ -31,9 +31,7 @@ http:
{
"userDocument": "{{elixBase64EftlDocument}}", // see the pre-request script
"userContext": {
"lang": "IT",
"crlf": "\r\n",
"qualificheDocenti": ";Docente;Ricercatore;"
"lang": "IT"
}
}
auth: inherit
@@ -46,39 +44,26 @@ runtime:
// Copy-pasta your EFTL document below inside the template literals (`)
prepareEftlDocument(String.raw`
[EFTL][HEADER name="trimDocument" value="true" type="boolean" /]
[VAR name="ceiling" type="string"][TAG]GETVALUEBYTAG,CORRISPETTIVO_CEILING,REQUEST,IUQOID[/TAG][/VAR]
[!-- HACK per numeri corretti!!!1! --]
[VAR name="ceilingIterable" type="iterable"][SPLIT regex="\."][TAG]GETVALUEBYTAG,CORRISPETTIVO_CEILING,REQUEST,IUQOID[/TAG][/SPLIT][/VAR]
[VAR name="first" type="number"][% first = 0; %][/VAR]
[VAR name="second" type="number"][% second = 1; %][/VAR]
[VAR name="ceilingInteger" type="string"][VALUE_OF varname="ceilingIterable" index="first" /][/VAR]
[VAR name="ceilingDecimal" type="string"][VALUE_OF varname="ceilingIterable" index="second" /][/VAR]
[IF][CONDITION][IS_EMPTY varname="ceilingDecimal" /][/CONDITION][THEN][% ceilingDecimal = "00"; %][/THEN][/IF]
[VAR name="ceilingNumber" type="number"][% ceilingNumber = ceilingInteger + "," + ceilingDecimal; %][/VAR]
[VAR name="D1_1" type="number"][TAG]GETVALUEBYTAG,PROPOSTA_CCT_CONTRATTO_D_1_1,REQUEST,IUQOID[/TAG][/VAR]
[VAR name="D1_2" type="number"][TAG]GETVALUEBYTAG,PROPOSTA_CCT_CONTRATTO_D_1_2,REQUEST,IUQOID[/TAG][/VAR]
[VAR name="D1_3" type="number"][% D1_3 = 0; %][/VAR]
[%= ceilingNumber %]
[%= " --- " %]
[%= ceilingNumber * 0.20 %]
[%= " --- " %]
[%= ceiling %]
[%= " --- " %]
[%= ceilingInteger %]
[%= " --- " %]
[%= ceilingDecimal %]
[VAR name="numberIterable" type="iterable"][SPLIT regex="\."][TAG]SCHEMAID,341,COL0009,IUQOID, , [/TAG][/SPLIT][/VAR]
[VAR name="numberIterable" type="iterable"][SPLIT regex="\."][TAG]GETVALUEBYTAG,PROPOSTA_CCT_CONTRATTO_A,REQUEST,IUQOID[/TAG][/SPLIT][/VAR]
[VAR name="first" type="number"][% first = 0; %][/VAR]
[VAR name="second" type="number"][% second = 1; %][/VAR]
[VAR name="numberIntegerPart" type="string"][VALUE_OF varname="numberIterable" index="first" /][/VAR]
[VAR name="numberDecimalPart" type="string"][VALUE_OF varname="numberIterable" index="second" /][/VAR]
[IF][CONDITION][IS_EMPTY varname="numberDecimalPart" /][/CONDITION][THEN][% numberDecimalPart = "00"; %][/THEN][/IF]
[VAR name="valueAsNumber" type="number"][% valueAsNumber = numberIntegerPart + "," + numberDecimalPart; %][/VAR]
[VAR name="A" type="number"][% A = numberIntegerPart + "," + numberDecimalPart; %][/VAR]
[VAR name="fattoreRitenuta2max" type="number"][TAG]SCHEMAID,341,COL0030,IUQOID, , [/TAG][/VAR]
[VAR name="ritenuta2max" type="number"][% ritenuta2max = valueAsNumber * fattoreRitenuta2max; %][/VAR]
[VAR name="ritenuta2maxMessage" type="string"][% ritenuta2maxMessage = "L'importo massimo (2%) dell'ulteriore ritenuta deliberata dalla struttura è: " + ritenuta2max + " €"; %][/VAR]
[VAR name="calculatedValue" type="number"][% calculatedValue = D1_1 + D1_2 - (A * 0.20); %][/VAR]
[%= ritenuta2maxMessage %]
[IF]
[CONDITION][% calculatedValue > 0 %][/CONDITION]
[THEN][% D1_3 = calculatedValue; %][/THEN]
[/IF]
[FORMAT type="number" pattern="#,##0.00"][% D1_3 %][/FORMAT]
[/EFTL]
`);
@@ -87,3 +72,4 @@ settings:
timeout: 0
followRedirects: true
maxRedirects: 5
forwardAuthorizationHeader: true
@@ -1,7 +1,7 @@
info:
name: Messaggio ritenute massime
name: Calcolo D2 con virgole
type: http
seq: 5
seq: 22
http:
method: POST
@@ -19,21 +19,13 @@ http:
disabled: true
- name: x-ef-request-id
value: "22748"
disabled: true
- name: x-ef-request-id
value: "22705"
disabled: true
- name: x-ef-request-id
value: "22754"
body:
type: json
data: |-
{
"userDocument": "{{elixBase64EftlDocument}}", // see the pre-request script
"userContext": {
"lang": "IT",
"crlf": "\r\n",
"qualificheDocenti": ";Docente;Ricercatore;"
"lang": "IT"
}
}
auth: inherit
@@ -70,10 +62,11 @@ runtime:
[FORMAT type="number" pattern="#,##0.00"][% D2 %][/FORMAT]
[/EFTL]
`)
`);
settings:
encodeUrl: true
timeout: 0
followRedirects: true
maxRedirects: 5
forwardAuthorizationHeader: true
@@ -1,7 +1,7 @@
info:
name: Codice Contratto con caratteri strani
type: http
seq: 1
seq: 23
http:
method: POST
@@ -117,3 +117,4 @@ settings:
timeout: 0
followRedirects: true
maxRedirects: 5
forwardAuthorizationHeader: true
@@ -1,7 +1,7 @@
info:
name: Contratto IS economico
type: http
seq: 2
seq: 1
http:
method: POST
@@ -19,64 +19,7 @@ http:
{
"userDocument": "{{elixBase64EftlDocument}}", // see the pre-request script
"userContext": {
"lang": "IT",
"docs": [
{
"name": "doc1",
"quantity": 3,
"price": 123.3
},
{
"name": "doc2",
"quantity": 5,
"price": 213.3
},
{
"name": "doc3",
"quantity": 10,
"price": 321.3
}
],
"docsAsEntities": [
{
"eftlEntityType": "com.anthesi.elixforms.api.eftl.model.mock.EftlDoc",
"eftlEntity": {
"name": "doc1",
"quantity": 3,
"price": 123.3
}
},
{
"eftlEntityType": "com.anthesi.elixforms.api.eftl.model.mock.EftlDoc",
"eftlEntity": {
"name": "doc2",
"quantity": 5,
"price": 213.3
}
},
{
"eftlEntityType": "com.anthesi.elixforms.api.eftl.model.mock.EftlDoc",
"eftlEntity": {
"name": "doc3",
"quantity": 10,
"price": 321.3
}
}
],
"singleEntity": {
"eftlEntityType": "com.anthesi.elixforms.api.eftl.model.mock.EftlDoc",
"eftlEntity": {
"name": "doc1",
"quantity": 3,
"price": 123.3
}
},
"simpleList": [
"s1",
"s2",
"s3"
],
"docsSize": 3
"lang": "IT"
}
}
auth: inherit
@@ -109,3 +52,4 @@ settings:
timeout: 0
followRedirects: true
maxRedirects: 5
forwardAuthorizationHeader: true
@@ -0,0 +1,52 @@
info:
name: Corrispettivo formattato
type: http
seq: 13
http:
method: POST
url: "{{elixFormsApiUrl}}/eftl/process/v1"
headers:
- name: x-requested-with
value: XMLHttpRequest
- name: x-api-key
value: "{{elixFormsWsAuthenticationToken}}"
- name: x-ef-request-id
value: "37031"
body:
type: json
data: |-
{
"userDocument": "{{elixBase64EftlDocument}}", // see the pre-request script
"userContext": {
"lang": "IT"
}
}
auth: inherit
runtime:
scripts:
- type: before-request
code: |-
const { prepareEftlDocument } = require("./elixFormsJs.js")
// Copy-pasta your EFTL document below inside the template literals (`)
prepareEftlDocument(String.raw`
[EFTL][HEADER name="trimDocument" value="true" type="boolean" /]
[VAR name="numberIterable" type="iterable"][SPLIT regex="\."][TAG]SCHEMAID,341,COL0009,IUQOID, , [/TAG][/SPLIT][/VAR]
[VAR name="first" type="number"][% first = 0; %][/VAR]
[VAR name="second" type="number"][% second = 1; %][/VAR]
[VAR name="numberIntegerPart" type="string"][VALUE_OF varname="numberIterable" index="first" /][/VAR]
[VAR name="numberDecimalPart" type="string"][VALUE_OF varname="numberIterable" index="second" /][/VAR]
[IF][CONDITION][IS_EMPTY varname="numberDecimalPart" /][/CONDITION][THEN][% numberDecimalPart = "00"; %][/THEN][/IF]
[VAR name="valueAsNumber" type="number"][% valueAsNumber = numberIntegerPart + "," + numberDecimalPart; %][/VAR]
[FORMAT type="number" pattern="#,##0.00"][% valueAsNumber %][/FORMAT]
[/EFTL]
`);
settings:
encodeUrl: true
timeout: 0
followRedirects: true
maxRedirects: 5
forwardAuthorizationHeader: true
@@ -1,7 +1,7 @@
info:
name: Elenco Contraenti CSV (nominativo)
type: http
seq: 8
seq: 15
http:
method: POST
@@ -22,9 +22,7 @@ http:
{
"userDocument": "{{elixBase64EftlDocument}}", // see the pre-request script
"userContext": {
"lang": "IT",
"crlf": "\r\n",
"DEBUG": "S"
"lang": "IT"
}
}
auth: inherit
@@ -73,3 +71,4 @@ settings:
timeout: 0
followRedirects: true
maxRedirects: 5
forwardAuthorizationHeader: true
@@ -1,7 +1,7 @@
info:
name: Elenco RS CSV (cognome nome)
type: http
seq: 7
seq: 14
http:
method: POST
@@ -19,9 +19,7 @@ http:
{
"userDocument": "{{elixBase64EftlDocument}}", // see the pre-request script
"userContext": {
"lang": "IT",
"crlf": "\r\n",
"DEBUG": "S"
"lang": "IT"
}
}
auth: inherit
@@ -70,3 +68,4 @@ settings:
timeout: 0
followRedirects: true
maxRedirects: 5
forwardAuthorizationHeader: true
@@ -1,7 +1,7 @@
info:
name: Elenco contraenti formattati
type: http
seq: 13
seq: 12
http:
method: POST
@@ -19,64 +19,7 @@ http:
{
"userDocument": "{{elixBase64EftlDocument}}", // see the pre-request script
"userContext": {
"lang": "IT",
"docs": [
{
"name": "doc1",
"quantity": 3,
"price": 123.3
},
{
"name": "doc2",
"quantity": 5,
"price": 213.3
},
{
"name": "doc3",
"quantity": 10,
"price": 321.3
}
],
"docsAsEntities": [
{
"eftlEntityType": "com.anthesi.elixforms.api.eftl.model.mock.EftlDoc",
"eftlEntity": {
"name": "doc1",
"quantity": 3,
"price": 123.3
}
},
{
"eftlEntityType": "com.anthesi.elixforms.api.eftl.model.mock.EftlDoc",
"eftlEntity": {
"name": "doc2",
"quantity": 5,
"price": 213.3
}
},
{
"eftlEntityType": "com.anthesi.elixforms.api.eftl.model.mock.EftlDoc",
"eftlEntity": {
"name": "doc3",
"quantity": 10,
"price": 321.3
}
}
],
"singleEntity": {
"eftlEntityType": "com.anthesi.elixforms.api.eftl.model.mock.EftlDoc",
"eftlEntity": {
"name": "doc1",
"quantity": 3,
"price": 123.3
}
},
"simpleList": [
"s1",
"s2",
"s3"
],
"docsSize": 3
"lang": "IT"
}
}
auth: inherit
@@ -118,7 +61,7 @@ runtime:
[VAR name="currContraenteNome" type="string"][VALUE_OF varname="currContraenteSplit" index="idxNome" /][/VAR]
[VAR name="currContraenteCfPIva" type="string"][VALUE_OF varname="currContraenteSplit" index="idxCfPIva" /][/VAR]
[VAR name="currContraenteSede" type="string"][VALUE_OF varname="currContraenteSplit" index="idxSede" /][/VAR]
[% elencoContraentiCompleto = elencoContraentiCompleto + ", " + currContraenteNome + " (CF/PIVA: " + currContraenteCfPIva + ") con sede legale in " + currContraenteSede; %]
[% elencoContraentiCompleto = elencoContraentiCompleto + "; " + currContraenteNome + " (CF/PIVA: " + currContraenteCfPIva + ") con sede legale in " + currContraenteSede; %]
[/DO]
[/WHILE]
@@ -131,3 +74,4 @@ settings:
timeout: 0
followRedirects: true
maxRedirects: 5
forwardAuthorizationHeader: true
@@ -1,63 +0,0 @@
info:
name: Fascicolo e documento - Nuovo formato
type: http
seq: 9
http:
method: POST
url: "{{elixFormsApiUrl}}/eftl/process/v1"
headers:
- name: x-requested-with
value: XMLHttpRequest
- name: x-api-key
value: "{{elixFormsWsAuthenticationToken}}"
- name: x-ef-request-id
value: "17144"
disabled: true
- name: x-ef-request-id
value: "15956"
- name: x-ef-request-id
value: "25981"
disabled: true
body:
type: json
data: |-
{
"userDocument": "{{elixBase64EftlDocument}}", // see the pre-request script
"userContext": {
"lang": "IT",
"crlf": "\r\n",
"DEBUG": "S"
}
}
auth: inherit
runtime:
scripts:
- type: before-request
code: |-
const { prepareEftlDocument } = require("./elixFormsJs.js")
// Copy-pasta your EFTL document below inside the template literals (`)
prepareEftlDocument(String.raw`
[EFTL][HEADER name="trimDocument" value="true" type="boolean" /]
[VAR name="idContratto" type="string"][TAG]GETVALUEBYTAG,ID_IRIS,REQUEST,IUQOID[/TAG][/VAR]
[VAR name="titoloContratto" type="string"][TAG]GETVALUEBYTAG,PROPOSTA_CCT_CONTRATTO_DESCR,REQUEST,IUQOID[/TAG][/VAR]
[VAR name="responsabiliCsv" type="string"][TAG]GETVALUEBYTAG,ELENCO_RS_CSV,REQUEST,IUQOID[/TAG][/VAR]
[VAR name="contraentiCsv" type="string"][TAG]GETVALUEBYTAG,ELENCO_CONTRAENTI_CSV,REQUEST,IUQOID[/TAG][/VAR]
Debug: [TAG]GETVALUEBYTAG,RICHIEDENTE_CODFIS,REQUEST,IUQOID[/TAG]
Fascicolo: [TAG]GETVALUEBYTAG,ID_IRIS,REQUEST,IUQOID[/TAG] - [TAG]GETVALUEBYTAG,ELENCO_CONTRAENTI_CSV,REQUEST,IUQOID[/TAG] - [TAG]GETVALUEBYTAG,ELENCO_RS_CSV,REQUEST,IUQOID[/TAG] - [TAG]GETVALUEBYTAG,PROPOSTA_CCT_CONTRATTO_DESCR,REQUEST,IUQOID[/TAG]
Documento: Proposta di Contratto / Convenzione - [TAG]GETVALUEBYTAG,ID_IRIS,REQUEST,IUQOID[/TAG] - [TAG]GETVALUEBYTAG,ELENCO_CONTRAENTI_CSV,REQUEST,IUQOID[/TAG] - [TAG]GETVALUEBYTAG,ELENCO_RS_CSV,REQUEST,IUQOID[/TAG] - [TAG]GETVALUEBYTAG,PROPOSTA_CCT_CONTRATTO_DESCR,REQUEST,IUQOID[/TAG]
Old Fas: [TAG]SCHEMAID,341,COL0001,IUQOID, , [/TAG]
Old Doc: Proposta di contratto / convenzione - ID contratto: [TAG]SCHEMAID,341,COL0001,IUQOID, , [/TAG]
[/EFTL]
`);
settings:
encodeUrl: true
timeout: 0
followRedirects: true
maxRedirects: 5
@@ -1,5 +1,5 @@
info:
name: Fascicolo e documento su Titulus
name: Mostra ritenute / assenza esenzioni
type: http
seq: 6
@@ -22,9 +22,7 @@ http:
{
"userDocument": "{{elixBase64EftlDocument}}", // see the pre-request script
"userContext": {
"lang": "IT",
"crlf": "\r\n",
"DEBUG": "S"
"lang": "IT"
}
}
auth: inherit
@@ -37,9 +35,15 @@ runtime:
// Copy-pasta your EFTL document below inside the template literals (`)
prepareEftlDocument(String.raw`
[EFTL][HEADER name="trimDocument" value="true" type="boolean" /]
[VAR name="esenzioneRitenute" type="string"][TAG]GETVALUEBYTAG,PROPOSTA_CCT_ESENZIONE_RITENUTE,REQUEST,IUQOID[/TAG][/VAR]
[VAR name="showRitenute" type="string"][% showRitenute = "S"; %][/VAR]
[TAG]GETVALUEBYTAG,ID_IRIS,REQUEST,ID_OBJECT[/TAG] - [TAG]GETVALUEBYTAG,ELENCO_CONTRAENTI_CSV,REQUEST,ID_OBJECT[/TAG] - [TAG]GETVALUEBYTAG,ELENCO_RS_CSV,REQUEST,ID_OBJECT[/TAG] - [TAG]GETVALUEBYTAG,PROPOSTA_CCT_CONTRATTO_DESCR,REQUEST,ID_OBJECT[/TAG]
[IF]
[CONDITION][% esenzioneRitenute != "" %][/CONDITION]
[THEN][% showRitenute = "N"; %][/THEN]
[/IF]
[%= showRitenute %]
[/EFTL]
`);
@@ -48,3 +52,4 @@ settings:
timeout: 0
followRedirects: true
maxRedirects: 5
forwardAuthorizationHeader: true
@@ -0,0 +1,55 @@
info:
name: Mostra ritenute
type: http
seq: 2
http:
method: POST
url: "{{elixFormsApiUrl}}/eftl/process/v1"
headers:
- name: x-requested-with
value: XMLHttpRequest
- name: x-api-key
value: "{{elixFormsWsAuthenticationToken}}"
- name: x-ef-request-id
value: "8463"
body:
type: json
data: |-
{
"userDocument": "{{elixBase64EftlDocument}}", // see the pre-request script
"userContext": {
"lang": "IT"
}
}
auth: inherit
runtime:
scripts:
- type: before-request
code: |-
const { prepareEftlDocument } = require("./elixFormsJs.js")
// Copy-pasta your EFTL document below inside the template literals (`)
prepareEftlDocument(String.raw`
[EFTL][HEADER name="trimDocument" value="true" type="boolean" /]
[VAR name="tipologiaCodice" type="string"][TAG]GETVALUEBYTAG,TIPOLOGIA_CODICE,REQUEST,IUQOID[/TAG][/VAR]
[VAR name="showEconomico" type="string"][% showEconomico = "S"; %][/VAR]
[VAR name="tipologieNonEconomico" type="iterable"][SPLIT regex=";"][TAG]GETVALUEBYTAG,TIPOLOGIE_NON_ECONOMICO,REQUEST,IUQOID[/TAG][/SPLIT][/VAR]
[IF]
[CONDITION]
[CONTAINS varname="tipologieNonEconomico"][VALUE_OF varname="tipologiaCodice" /][/CONTAINS]
[/CONDITION]
[THEN][% showEconomico = "N"; %][/THEN]
[/IF]
[%= showEconomico %]
[/EFTL]
`);
settings:
encodeUrl: true
timeout: 0
followRedirects: true
maxRedirects: 5
forwardAuthorizationHeader: true
@@ -0,0 +1,51 @@
info:
name: Nominativo RS
type: http
seq: 11
http:
method: POST
url: "{{elixFormsApiUrl}}/eftl/process/v1"
headers:
- name: x-requested-with
value: XMLHttpRequest
- name: x-api-key
value: "{{elixFormsWsAuthenticationToken}}"
- name: x-ef-request-id
value: "37031"
body:
type: json
data: |-
{
"userDocument": "{{elixBase64EftlDocument}}", // see the pre-request script
"userContext": {
"lang": "IT"
}
}
auth: inherit
runtime:
scripts:
- type: before-request
code: |-
const { prepareEftlDocument } = require("./elixFormsJs.js")
// Copy-pasta your EFTL document below inside the template literals (`)
prepareEftlDocument(String.raw`
[EFTL][HEADER name="trimDocument" value="true" type="boolean" /]
[VAR name="responsabileScientificoProponenteCompleto" type="string"][% responsabileScientificoProponenteCompleto = ""; %][/VAR]
[VAR name="responsabileScientificoQualifica" type="string"][TRIM][TAG]SCHEMAID,341,COL0011,IUQOID, , [/TAG][/TRIM][/VAR]
[VAR name="responsabileScientificoNome" type="string"][TRIM][TAG]SCHEMAID,341,COL0012,IUQOID, , [/TAG][/TRIM][/VAR]
[VAR name="responsabileScientificoCognome" type="string"][TRIM][TAG]SCHEMAID,341,COL0013,IUQOID, , [/TAG][/TRIM][/VAR]
[% responsabileScientificoProponenteCompleto = responsabileScientificoQualifica + " " + responsabileScientificoNome + " " + responsabileScientificoCognome; %]
[%= responsabileScientificoProponenteCompleto %]
[/EFTL]
`);
settings:
encodeUrl: true
timeout: 0
followRedirects: true
maxRedirects: 5
forwardAuthorizationHeader: true
@@ -0,0 +1,51 @@
info:
name: Percentuale ritenuta 2 max NON economico effettiva
type: http
seq: 18
http:
method: POST
url: "{{elixFormsApiUrl}}/eftl/process/v1"
headers:
- name: x-requested-with
value: XMLHttpRequest
- name: x-api-key
value: "{{elixFormsWsAuthenticationToken}}"
- name: x-ef-request-id
value: "37031"
body:
type: json
data: |-
{
"userDocument": "{{elixBase64EftlDocument}}", // see the pre-request script
"userContext": {
"lang": "IT"
}
}
auth: inherit
runtime:
scripts:
- type: before-request
code: |-
const { prepareEftlDocument } = require("./elixFormsJs.js")
// Copy-pasta your EFTL document below inside the template literals (`)
prepareEftlDocument(String.raw`
[EFTL][HEADER name="trimDocument" value="true" type="boolean" /]
[VAR name="ritenuta2NEeffettiva" type="number"][% ritenuta2NEeffettiva = 0; %][/VAR]
[VAR name="ritenuta2NEmax" type="number"][TAG]SCHEMAID,341,COL0098,IUQOID, , [/TAG][/VAR]
[VAR name="ritenuta2fattore" type="number"][TAG]SCHEMAID,341,COL0030,IUQOID, , [/TAG][/VAR]
[VAR name="ritenuta2NEinserita" type="number"][TAG]SCHEMAID,337,COL0064,IUQOID, , [/TAG][/VAR]
[% ritenuta2NEeffettiva = 100 * ritenuta2fattore * ritenuta2NEinserita / ritenuta2NEmax; %]
[FORMAT type="number" pattern="#,##0.00"][% ritenuta2NEeffettiva %][/FORMAT]
[/EFTL]
`);
settings:
encodeUrl: true
timeout: 0
followRedirects: true
maxRedirects: 5
forwardAuthorizationHeader: true
@@ -0,0 +1,51 @@
info:
name: Percentuale ritenuta 2 max effettiva
type: http
seq: 16
http:
method: POST
url: "{{elixFormsApiUrl}}/eftl/process/v1"
headers:
- name: x-requested-with
value: XMLHttpRequest
- name: x-api-key
value: "{{elixFormsWsAuthenticationToken}}"
- name: x-ef-request-id
value: "37031"
body:
type: json
data: |-
{
"userDocument": "{{elixBase64EftlDocument}}", // see the pre-request script
"userContext": {
"lang": "IT"
}
}
auth: inherit
runtime:
scripts:
- type: before-request
code: |-
const { prepareEftlDocument } = require("./elixFormsJs.js")
// Copy-pasta your EFTL document below inside the template literals (`)
prepareEftlDocument(String.raw`
[EFTL][HEADER name="trimDocument" value="true" type="boolean" /]
[VAR name="ritenuta2effettiva" type="number"][% ritenuta2effettiva = 0; %][/VAR]
[VAR name="ritenuta2max" type="number"][TAG]SCHEMAID,341,COL0065,IUQOID, , [/TAG][/VAR]
[VAR name="ritenuta2fattore" type="number"][TAG]SCHEMAID,341,COL0030,IUQOID, , [/TAG][/VAR]
[VAR name="ritenuta2inserita" type="number"][TAG]SCHEMAID,337,COL0017,IUQOID, , [/TAG][/VAR]
[% ritenuta2effettiva = 100 * ritenuta2fattore * ritenuta2inserita / ritenuta2max; %]
[FORMAT type="number" pattern="#,##0.00"][% ritenuta2effettiva %][/FORMAT]
[/EFTL]
`);
settings:
encodeUrl: true
timeout: 0
followRedirects: true
maxRedirects: 5
forwardAuthorizationHeader: true
@@ -0,0 +1,86 @@
info:
name: Punto A regolamento
type: http
seq: 3
http:
method: POST
url: "{{elixFormsApiUrl}}/eftl/process/v1"
headers:
- name: x-requested-with
value: XMLHttpRequest
- name: x-api-key
value: "{{elixFormsWsAuthenticationToken}}"
- name: x-ef-request-id
value: "8463"
body:
type: json
data: |-
{
"userDocument": "{{elixBase64EftlDocument}}", // see the pre-request script
"userContext": {
"lang": "IT",
"tipologiePuntoAll": "ACC_ACC",
"tipologiePunto1": "CRCT_RA;CRCT_RAS;CRCT_RB;CCC_RA;CCC_RAS;CCC_RB",
"tipologiePunto2": "SERV_CON",
"tipologiePunto3": "FORM_COM"
}
}
auth: inherit
runtime:
scripts:
- type: before-request
code: |-
const { prepareEftlDocument } = require("./elixFormsJs.js")
// Copy-pasta your EFTL document below inside the template literals (`)
prepareEftlDocument(String.raw`
[EFTL][HEADER name="trimDocument" value="true" type="boolean" /]
[VAR name="tipologiaContratto" type="string"][TAG]GETVALUEBYTAG,TIPOLOGIA_CODICE,REQUEST,IUQOID[/TAG][/VAR]
[VAR name="puntoAregolamento" type="number"][% puntoAregolamento = 0; %][/VAR]
[!--
1+2+3 ACC_ACC Accordi accessori
1 CRCT_RA Contratti di ricerca conto terzi - ricerca applicata
1 CRCT_RAS Contratti di ricerca conto terzi - ricerca applicata alla sanità
1 CRCT_RB Contratti di ricerca conto terzi - ricerca di base
3 FORM_COM Formazione di natura commerciale
2 SERV_CON Servizi di consulenza
1 CCC_RA Convenzioni di collaborazione scientifica commerciali - ricerca applicata
1 CCC_RAS Convenzioni di collaborazione scientifica commerciali - ricerca applicata alla sanità
1 CCC_RB Convenzioni di collaborazione scientifica commerciali - ricerca di base
--]
[IF]
[CONDITION][CONTAINS varname="tipologiePunto1"][VALUE_OF varname="tipologiaContratto" /][/CONTAINS][/CONDITION]
[THEN][% puntoAregolamento = 1; %][/THEN]
[ELSE IF]
[CONDITION][CONTAINS varname="tipologiePunto2"][VALUE_OF varname="tipologiaContratto" /][/CONTAINS][/CONDITION]
[THEN][% puntoAregolamento = 2; %][/THEN]
[/ELSE IF]
[ELSE IF]
[CONDITION][CONTAINS varname="tipologiePunto3"][VALUE_OF varname="tipologiaContratto" /][/CONTAINS][/CONDITION]
[THEN][% puntoAregolamento = 3; %][/THEN]
[/ELSE IF]
[ELSE IF]
[CONDITION][CONTAINS varname="tipologiePunto4"][VALUE_OF varname="tipologiaContratto" /][/CONTAINS][/CONDITION]
[THEN][% puntoAregolamento = 4; %][/THEN]
[/ELSE IF]
[/IF]
[VAR name="puntoAregolamentoOutput" type="string"][% puntoAregolamentoOutput = ""; %][/VAR]
[IF]
[CONDITION][% puntoAregolamento != 0 %][/CONDITION]
[THEN][% puntoAregolamentoOutput = "." + puntoAregolamento; %][/THEN]
[/IF]
[%= puntoAregolamentoOutput %]
[/EFTL]
`);
settings:
encodeUrl: true
timeout: 0
followRedirects: true
maxRedirects: 5
forwardAuthorizationHeader: true
@@ -0,0 +1,89 @@
info:
name: Punto B regolamento
type: http
seq: 4
http:
method: POST
url: "{{elixFormsApiUrl}}/eftl/process/v1"
headers:
- name: x-requested-with
value: XMLHttpRequest
- name: x-api-key
value: "{{elixFormsWsAuthenticationToken}}"
- name: x-ef-request-id
value: "8463"
body:
type: json
data: |-
{
"userDocument": "{{elixBase64EftlDocument}}", // see the pre-request script
"userContext": {
"lang": "IT",
"tipologiePuntoAll": "CCS_IST_RA;CCS_IST_RAS;CCS_IST_RB",
"tipologiePunto1": "",
"tipologiePunto2": "",
"tipologiePunto3": "CONV_QUA",
"tipologiePunto4": "",
"tipologiePunto5": "MTA;NDA"
}
}
auth: inherit
runtime:
scripts:
- type: before-request
code: |-
const { prepareEftlDocument } = require("./elixFormsJs.js")
// Copy-pasta your EFTL document below inside the template literals (`)
prepareEftlDocument(String.raw`
[EFTL][HEADER name="trimDocument" value="true" type="boolean" /]
[VAR name="tipologiaContratto" type="string"][TAG]GETVALUEBYTAG,TIPOLOGIA_CODICE,REQUEST,IUQOID[/TAG][/VAR]
[VAR name="puntoBregolamento" type="number"][% puntoBregolamento = 0; %][/VAR]
[!--
3+4 CCS_IST_RAConvenzioni di collaborazione scientifica istituzionali - ricerca applicata
3+4 CCS_IST_RASConvenzioni di collaborazione scientifica istituzionali - ricerca applicata alla sanità
3+4 CCS_IST_RBConvenzioni di collaborazione scientifica istituzionali - ricerca di base
5 MTAMaterial Transfer Agreement
5 NDANon Disclosure Agreement
3 CONV_QUAConvenzioni quadro
--]
[IF]
[CONDITION][CONTAINS varname="tipologiePunto1"][VALUE_OF varname="tipologiaContratto" /][/CONTAINS][/CONDITION]
[THEN][% puntoBregolamento = 1; %][/THEN]
[ELSE IF]
[CONDITION][CONTAINS varname="tipologiePunto2"][VALUE_OF varname="tipologiaContratto" /][/CONTAINS][/CONDITION]
[THEN][% puntoBregolamento = 2; %][/THEN]
[/ELSE IF]
[ELSE IF]
[CONDITION][CONTAINS varname="tipologiePunto3"][VALUE_OF varname="tipologiaContratto" /][/CONTAINS][/CONDITION]
[THEN][% puntoBregolamento = 3; %][/THEN]
[/ELSE IF]
[ELSE IF]
[CONDITION][CONTAINS varname="tipologiePunto4"][VALUE_OF varname="tipologiaContratto" /][/CONTAINS][/CONDITION]
[THEN][% puntoBregolamento = 4; %][/THEN]
[/ELSE IF]
[ELSE IF]
[CONDITION][CONTAINS varname="tipologiePunto5"][VALUE_OF varname="tipologiaContratto" /][/CONTAINS][/CONDITION]
[THEN][% puntoBregolamento = 5; %][/THEN]
[/ELSE IF]
[/IF]
[VAR name="puntoBregolamentoOutput" type="string"][% puntoBregolamentoOutput = ""; %][/VAR]
[IF]
[CONDITION][% puntoBregolamento != 0 %][/CONDITION]
[THEN][% puntoBregolamentoOutput = "." + puntoBregolamento; %][/THEN]
[/IF]
[%= puntoBregolamentoOutput %]
[/EFTL]
`);
settings:
encodeUrl: true
timeout: 0
followRedirects: true
maxRedirects: 5
forwardAuthorizationHeader: true
@@ -0,0 +1,64 @@
info:
name: Ritenuta 2 max NON economico messaggio
type: http
seq: 10
http:
method: POST
url: "{{elixFormsApiUrl}}/eftl/process/v1"
headers:
- name: x-requested-with
value: XMLHttpRequest
- name: x-api-key
value: "{{elixFormsWsAuthenticationToken}}"
- name: x-ef-request-id
value: "37031"
body:
type: json
data: |-
{
"userDocument": "{{elixBase64EftlDocument}}", // see the pre-request script
"userContext": {
"lang": "IT"
}
}
auth: inherit
runtime:
scripts:
- type: before-request
code: |-
const { prepareEftlDocument } = require("./elixFormsJs.js")
// Copy-pasta your EFTL document below inside the template literals (`)
prepareEftlDocument(String.raw`
[EFTL][HEADER name="trimDocument" value="true" type="boolean" /]
[VAR name="numberIterable" type="iterable"][SPLIT regex="\."][TAG]SCHEMAID,341,COL0051,IUQOID, , [/TAG][/SPLIT][/VAR]
[VAR name="first" type="number"][% first = 0; %][/VAR]
[VAR name="second" type="number"][% second = 1; %][/VAR]
[VAR name="numberIntegerPart" type="string"][VALUE_OF varname="numberIterable" index="first" /][/VAR]
[VAR name="numberDecimalPart" type="string"][VALUE_OF varname="numberIterable" index="second" /][/VAR]
[IF][CONDITION][IS_EMPTY varname="numberDecimalPart" /][/CONDITION][THEN][% numberDecimalPart = "00"; %][/THEN][/IF]
[VAR name="valueAsNumber" type="number"][% valueAsNumber = numberIntegerPart + "," + numberDecimalPart; %][/VAR]
[!-- Gestiamo il pregresso prima dello split delle due ritenute 2 max eco/non-eco --]
[VAR name="checkPregresso" type="string"][TAG]SCHEMAID,341,COL0120,IUQOID, , [/TAG][/VAR]
[IF]
[CONDITION][IS_EMPTY varname="checkPregresso" /][/CONDITION]
[THEN][VAR name="fattoreRitenuta2NEmax" type="number"][TAG]SCHEMAID,341,COL0030,IUQOID, , [/TAG][/VAR][/THEN]
[ELSE][VAR name="fattoreRitenuta2NEmax" type="number"][TAG]SCHEMAID,341,COL0120,IUQOID, , [/TAG][/VAR][/ELSE]
[/IF]
[VAR name="ritenuta2NEmax" type="number"][% ritenuta2NEmax = valueAsNumber * fattoreRitenuta2NEmax; %][/VAR]
[%= "L'importo massimo (" %][FORMAT type="number" pattern="#,##0.##"][% fattoreRitenuta2NEmax * 100 %][/FORMAT][%= "% degli overheads) dell'ulteriore ritenuta deliberata dalla struttura è: " + ritenuta2NEmax + " €" %]
[/EFTL]
`);
settings:
encodeUrl: true
timeout: 0
followRedirects: true
maxRedirects: 5
forwardAuthorizationHeader: true
@@ -0,0 +1,57 @@
info:
name: Ritenuta 2 max messaggio
type: http
seq: 8
http:
method: POST
url: "{{elixFormsApiUrl}}/eftl/process/v1"
headers:
- name: x-requested-with
value: XMLHttpRequest
- name: x-api-key
value: "{{elixFormsWsAuthenticationToken}}"
- name: x-ef-request-id
value: "37031"
body:
type: json
data: |-
{
"userDocument": "{{elixBase64EftlDocument}}", // see the pre-request script
"userContext": {
"lang": "IT"
}
}
auth: inherit
runtime:
scripts:
- type: before-request
code: |-
const { prepareEftlDocument } = require("./elixFormsJs.js")
// Copy-pasta your EFTL document below inside the template literals (`)
prepareEftlDocument(String.raw`
[EFTL]
[VAR name="numberIterable" type="iterable"][SPLIT regex="\."][TAG]SCHEMAID,341,COL0009,IUQOID, , [/TAG][/SPLIT][/VAR]
[VAR name="first" type="number"][% first = 0; %][/VAR]
[VAR name="second" type="number"][% second = 1; %][/VAR]
[VAR name="numberIntegerPart" type="string"][VALUE_OF varname="numberIterable" index="first" /][/VAR]
[VAR name="numberDecimalPart" type="string"][VALUE_OF varname="numberIterable" index="second" /][/VAR]
[IF][CONDITION][IS_EMPTY varname="numberDecimalPart" /][/CONDITION][THEN][% numberDecimalPart = "00"; %][/THEN][/IF]
[VAR name="valueAsNumber" type="number"][% valueAsNumber = numberIntegerPart + "," + numberDecimalPart; %][/VAR]
[VAR name="fattoreRitenuta2max" type="string"][TAG]SCHEMAID,341,COL0030,IUQOID, , [/TAG][/VAR]
[VAR name="ritenuta2max" type="number"][% ritenuta2max = valueAsNumber * fattoreRitenuta2max; %][/VAR]
[%= "L'importo massimo (" %][FORMAT type="number" pattern="#,##0.##"][% fattoreRitenuta2max * 100 %][/FORMAT][%= "%) dell'ulteriore ritenuta deliberata dalla struttura è: " + ritenuta2max + " €" %]
[/EFTL]
`);
settings:
encodeUrl: true
timeout: 0
followRedirects: true
maxRedirects: 5
forwardAuthorizationHeader: true
@@ -0,0 +1,52 @@
info:
name: Valore ritenuta 2 max NON economico formattato
type: http
seq: 19
http:
method: POST
url: "{{elixFormsApiUrl}}/eftl/process/v1"
headers:
- name: x-requested-with
value: XMLHttpRequest
- name: x-api-key
value: "{{elixFormsWsAuthenticationToken}}"
- name: x-ef-request-id
value: "37031"
body:
type: json
data: |-
{
"userDocument": "{{elixBase64EftlDocument}}", // see the pre-request script
"userContext": {
"lang": "IT"
}
}
auth: inherit
runtime:
scripts:
- type: before-request
code: |-
const { prepareEftlDocument } = require("./elixFormsJs.js")
// Copy-pasta your EFTL document below inside the template literals (`)
prepareEftlDocument(String.raw`
[EFTL][HEADER name="trimDocument" value="true" type="boolean" /]
[VAR name="ritenuta2NEinserita" type="string"][TAG]SCHEMAID,337,COL0064,IUQOID, , [/TAG][/VAR]
[VAR name="ritenuta2NEformattata" type="number"][% ritenuta2NEformattata = 0; %][/VAR]
[IF]
[CONDITION][% ritenuta2NEinserita != "" %][/CONDITION]
[THEN][% ritenuta2NEformattata = ritenuta2NEinserita; %][/THEN]
[/IF]
[FORMAT type="number" pattern="#,##0.00"][% ritenuta2NEformattata %][/FORMAT]
[/EFTL]
`);
settings:
encodeUrl: true
timeout: 0
followRedirects: true
maxRedirects: 5
forwardAuthorizationHeader: true
@@ -0,0 +1,52 @@
info:
name: Valore ritenuta 2 max formattato
type: http
seq: 17
http:
method: POST
url: "{{elixFormsApiUrl}}/eftl/process/v1"
headers:
- name: x-requested-with
value: XMLHttpRequest
- name: x-api-key
value: "{{elixFormsWsAuthenticationToken}}"
- name: x-ef-request-id
value: "37031"
body:
type: json
data: |-
{
"userDocument": "{{elixBase64EftlDocument}}", // see the pre-request script
"userContext": {
"lang": "IT"
}
}
auth: inherit
runtime:
scripts:
- type: before-request
code: |-
const { prepareEftlDocument } = require("./elixFormsJs.js")
// Copy-pasta your EFTL document below inside the template literals (`)
prepareEftlDocument(String.raw`
[EFTL][HEADER name="trimDocument" value="true" type="boolean" /]
[VAR name="ritenuta2inserita" type="string"][TAG]SCHEMAID,337,COL0017,IUQOID, , [/TAG][/VAR]
[VAR name="ritenuta2formattata" type="number"][% ritenuta2formattata = 0; %][/VAR]
[IF]
[CONDITION][% ritenuta2inserita != "" %][/CONDITION]
[THEN][% ritenuta2formattata = ritenuta2inserita; %][/THEN]
[/IF]
[FORMAT type="number" pattern="#,##0.00"][% ritenuta2formattata %][/FORMAT]
[/EFTL]
`);
settings:
encodeUrl: true
timeout: 0
followRedirects: true
maxRedirects: 5
forwardAuthorizationHeader: true
@@ -0,0 +1,58 @@
info:
name: Voce indice fascicolazione
type: http
seq: 5
http:
method: POST
url: "{{elixFormsApiUrl}}/eftl/process/v1"
headers:
- name: x-requested-with
value: XMLHttpRequest
- name: x-api-key
value: "{{elixFormsWsAuthenticationToken}}"
- name: x-ef-request-id
value: "17144"
disabled: true
- name: x-ef-request-id
value: "25889"
body:
type: json
data: |-
{
"userDocument": "{{elixBase64EftlDocument}}", // see the pre-request script
"userContext": {
"lang": "IT"
}
}
auth: inherit
runtime:
scripts:
- type: before-request
code: |-
const { prepareEftlDocument } = require("./elixFormsJs.js")
// Copy-pasta your EFTL document below inside the template literals (`)
prepareEftlDocument(String.raw`
[EFTL][HEADER name="trimDocument" value="true" type="boolean" /]
[VAR name="tipologiaCodice" type="string"][TAG]GETVALUEBYTAG,TIPOLOGIA_CODICE,REQUEST,IUQOID[/TAG][/VAR]
[VAR name="suffissoVoceIndice" type="string"][% suffissoVoceIndice = "Contratti"; %][/VAR]
[VAR name="tipologieContoTerzi" type="iterable"][SPLIT regex=";"][TAG]GETVALUEBYTAG,TIPOLOGIE_VOCE_INDICE_CONTOTERZI,REQUEST,IUQOID[/TAG][/SPLIT][/VAR]
[IF]
[CONDITION]
[CONTAINS varname="tipologieContoTerzi"][VALUE_OF varname="tipologiaCodice" /][/CONTAINS]
[/CONDITION]
[THEN][% suffissoVoceIndice = "ContoTerzi"; %][/THEN]
[/IF]
[%= suffissoVoceIndice %]
[/EFTL]
`);
settings:
encodeUrl: true
timeout: 0
followRedirects: true
maxRedirects: 5
forwardAuthorizationHeader: true