-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #214 from totvs/tombamento_versao_release_36_main
Tombamento versao release 36 main
- Loading branch information
Showing
594 changed files
with
12,435 additions
and
274 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,53 @@ | ||
#name: Validate JSON | ||
|
||
#on: | ||
# push: | ||
# branches: | ||
# - main # Ou a branch que deseja monitorar | ||
|
||
#jobs: | ||
# validate-json: | ||
# runs-on: ubuntu-latest | ||
|
||
# steps: | ||
# - name: Checkout code | ||
# uses: actions/checkout@v2 | ||
|
||
# - name: Validate JSON | ||
# run: | | ||
# if jq -e .field_to_check $GITHUB_WORKSPACE/path/to/your/json.json > /dev/null; then | ||
# echo "Field 'field_to_check' exists." | ||
# else | ||
# echo "Field 'field_to_check' does not exist." | ||
# exit 1 | ||
# fi | ||
# | ||
|
||
|
||
name: Validate JSON | ||
|
||
on: [push, pull_request] | ||
|
||
jobs: | ||
validate-json: | ||
runs-on: ubuntu-latest | ||
|
||
steps: | ||
- name: Checkout repository | ||
uses: actions/checkout@v2 | ||
|
||
- name: Set up Node.js | ||
uses: actions/setup-node@v2 | ||
with: | ||
node-version: '14' | ||
|
||
- name: Install jq | ||
run: sudo apt-get install jq | ||
|
||
- name: Validate JSON files | ||
run: | | ||
# Encontra todos os arquivos JSON e os valida | ||
find . -type f -name '*.json' -print0 | while IFS= read -r -d '' file; do | ||
echo "Validating $file" | ||
jq empty "$file" || { echo "Invalid JSON: $file"; exit 1; } | ||
done |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
# CODEOWNERS file | ||
# Definindo revisores para um diretório | ||
* @deyvidtotvs @caiovzirretta @beatriz-menezes @TOTVSHenriqqG | ||
* @deyvidtotvs @caiovzirretta @beatriz-menezes @TOTVSHenriqqG @AndersonPereiraTotvs @CharlyRM @paulodevfin @guilherme-maoliveira | ||
|
1 change: 1 addition & 0 deletions
1
...ta-entrega/agendamentoFluxos/colent_salvarretornocoletas-colent_salvarretornoentrega.json
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
{"tabela":{"nome":"PCINTEGRACAOAGENDAMENTOFLUXO","campos":[{"nome":"IDAGENDAMENTO","valor":"COLENT - Salvar Retorno Coletas"},{"nome":"IDFLUXO","valor":"COLENT - Salvar Retorno Entrega"}]}} |
1 change: 1 addition & 0 deletions
1
...ta-entrega/agendamentoFluxos/colent_salvarretornoentrega-colent_salvarretornocoletas.json
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
{"tabela":{"nome":"PCINTEGRACAOAGENDAMENTOFLUXO","campos":[{"nome":"IDAGENDAMENTO","valor":"COLENT - Salvar Retorno Entrega"},{"nome":"IDFLUXO","valor":"COLENT - Salvar Retorno Coletas"}]}} |
1 change: 1 addition & 0 deletions
1
coleta-entrega/agendamentoFluxos/colent_salvarretornoviagem-colent_salvarretornoviagem.json
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
{"tabela":{"nome":"PCINTEGRACAOAGENDAMENTOFLUXO","campos":[{"nome":"IDAGENDAMENTO","valor":"COLENT - Salvar Retorno Viagem"},{"nome":"IDFLUXO","valor":"COLENT - Salvar Retorno Viagem"}]}} |
1 change: 1 addition & 0 deletions
1
coleta-entrega/agendamentos/COLENT - SALVAR RETORNO COLETAS.json
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
{"tabela":{"nome":"PCINTEGRACAOAGENDAMENTO","campos":[{"nome":"DESCRICAO","valor":"COLENT - Salvar Retorno Coletas"},{"nome":"AGENDAMENTOSEGUNDOS","valor":"1800"},{"nome":"DELAYINICIALSEGUNDOS","valor":"5"}]}} |
1 change: 1 addition & 0 deletions
1
coleta-entrega/agendamentos/COLENT - SALVAR RETORNO ENTREGA.json
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
{"tabela":{"nome":"PCINTEGRACAOAGENDAMENTO","campos":[{"nome":"DESCRICAO","valor":"COLENT - Salvar Retorno Entrega"},{"nome":"AGENDAMENTOSEGUNDOS","valor":"1800"},{"nome":"DELAYINICIALSEGUNDOS","valor":"10"}]}} |
1 change: 1 addition & 0 deletions
1
coleta-entrega/agendamentos/COLENT - SALVAR RETORNO VIAGEM.json
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
{"tabela":{"nome":"PCINTEGRACAOAGENDAMENTO","campos":[{"nome":"DESCRICAO","valor":"COLENT - Salvar Retorno Viagem"},{"nome":"AGENDAMENTOSEGUNDOS","valor":"1800"},{"nome":"DELAYINICIALSEGUNDOS","valor":"15"}]}} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,35 @@ | ||
{ | ||
"tabela": { | ||
"nome": "PCINTEGRACAODADOSEMPRESA", | ||
"campos": [ | ||
{ | ||
"nome": "ID", | ||
"valor": "COLETA-ENTREGA" | ||
}, | ||
{ | ||
"nome": "NOME", | ||
"valor": "COLETA-ENTREGA" | ||
}, | ||
{ | ||
"nome": "URLBASE", | ||
"valor": "ADICIONAR_URLBASE" | ||
}, | ||
{ | ||
"nome": "TOKENCLIENTE", | ||
"valor": "" | ||
}, | ||
{ | ||
"nome": "WTA", | ||
"valor": "N" | ||
}, | ||
{ | ||
"nome": "DTSOLICITACAOTOKEN", | ||
"valor": "" | ||
}, | ||
{ | ||
"nome": "TOKENTEMPOEXPIRACAO", | ||
"valor": "1200" | ||
} | ||
] | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,35 @@ | ||
{ | ||
"tabela": { | ||
"nome": "PCINTEGRACAODADOSEMPRESA", | ||
"campos": [ | ||
{ | ||
"nome": "ID", | ||
"valor": "WTA-COLETA-ENTREGA" | ||
}, | ||
{ | ||
"nome": "NOME", | ||
"valor": "WTA-COLETA-ENTREGA" | ||
}, | ||
{ | ||
"nome": "URLBASE", | ||
"valor": "ADICIONAR_URLBASE" | ||
}, | ||
{ | ||
"nome": "TOKENCLIENTE", | ||
"valor": "" | ||
}, | ||
{ | ||
"nome": "WTA", | ||
"valor": "S" | ||
}, | ||
{ | ||
"nome": "DTSOLICITACAOTOKEN", | ||
"valor": "" | ||
}, | ||
{ | ||
"nome": "TOKENTEMPOEXPIRACAO", | ||
"valor": "7200" | ||
} | ||
] | ||
} | ||
} |
1 change: 1 addition & 0 deletions
1
coleta-entrega/fluxos/FLUXO-01-COLENT - Enviar Cliente-1-WTA-COLENT - LOGIN.json
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
{"tabela":{"nome":"PCINTEGRACAOFLUXOEXECUCAO","campos":[{"nome":"ORDEMEXECUCAO","valor":"1"},{"nome":"IDROTASERVICO","valor":"WTA-COLENT - LOGIN"},{"nome":"IDINTEGRACAOCLASSEMETODO","valor":"AUTENTICADORREFRESHTOKENAPI"},{"nome":"ATIVO","valor":"N"},{"nome":"IDDEPENDENTE","valor":""},{"nome":"DTULTALTER","valor":""},{"nome":"CODEMPALTER","valor":""},{"nome":"DESCRICAO","valor":"COLENT - Enviar Cliente"},{"nome":"ID","valor":""}]}} |
1 change: 1 addition & 0 deletions
1
coleta-entrega/fluxos/FLUXO-01-COLENT - Enviar Cliente-2-WTA-COLENT - Buscar Cliente.json
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
{"tabela":{"nome":"PCINTEGRACAOFLUXOEXECUCAO","campos":[{"nome":"ORDEMEXECUCAO","valor":"2"},{"nome":"IDROTASERVICO","valor":"WTA-COLENT - Buscar Cliente"},{"nome":"IDINTEGRACAOCLASSEMETODO","valor":"BUSCAROTASERVICONAOPAGINADA"},{"nome":"ATIVO","valor":"N"},{"nome":"IDDEPENDENTE","valor":""},{"nome":"DTULTALTER","valor":""},{"nome":"CODEMPALTER","valor":""},{"nome":"DESCRICAO","valor":"COLENT - Enviar Cliente"},{"nome":"ID","valor":""}]}} |
1 change: 1 addition & 0 deletions
1
coleta-entrega/fluxos/FLUXO-01-COLENT - Enviar Cliente-3-COLENT - RAC LOGIN.json
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
{"tabela":{"nome":"PCINTEGRACAOFLUXOEXECUCAO","campos":[{"nome":"ORDEMEXECUCAO","valor":"3"},{"nome":"IDROTASERVICO","valor":"COLENT - RAC LOGIN"},{"nome":"IDINTEGRACAOCLASSEMETODO","valor":"AUTENTICADORREFRESHTOKENAPI"},{"nome":"ATIVO","valor":"N"},{"nome":"IDDEPENDENTE","valor":""},{"nome":"DTULTALTER","valor":""},{"nome":"CODEMPALTER","valor":""},{"nome":"DESCRICAO","valor":"COLENT - Enviar Cliente"},{"nome":"ID","valor":""}]}} |
1 change: 1 addition & 0 deletions
1
coleta-entrega/fluxos/FLUXO-01-COLENT - Enviar Cliente-4-COLENT - Enviar Cliente.json
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
{"tabela":{"nome":"PCINTEGRACAOFLUXOEXECUCAO","campos":[{"nome":"ORDEMEXECUCAO","valor":"4"},{"nome":"IDROTASERVICO","valor":"COLENT - Enviar Cliente"},{"nome":"IDINTEGRACAOCLASSEMETODO","valor":"ENVIOINTEGRACAOSTATUSRECEBIDO"},{"nome":"ATIVO","valor":"N"},{"nome":"IDDEPENDENTE","valor":"WTA-COLENT - Buscar Cliente"},{"nome":"DTULTALTER","valor":""},{"nome":"CODEMPALTER","valor":""},{"nome":"DESCRICAO","valor":"COLENT - Enviar Cliente"},{"nome":"ID","valor":""}]}} |
1 change: 1 addition & 0 deletions
1
coleta-entrega/fluxos/FLUXO-02-COLENT - Envio DePara Cliente-1-WTA-COLENT - LOGIN.json
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
{"tabela":{"nome":"PCINTEGRACAOFLUXOEXECUCAO","campos":[{"nome":"ORDEMEXECUCAO","valor":"1"},{"nome":"IDROTASERVICO","valor":"WTA-COLENT - LOGIN"},{"nome":"IDINTEGRACAOCLASSEMETODO","valor":"AUTENTICADORREFRESHTOKENAPI"},{"nome":"ATIVO","valor":"N"},{"nome":"IDDEPENDENTE","valor":""},{"nome":"DTULTALTER","valor":""},{"nome":"CODEMPALTER","valor":""},{"nome":"DESCRICAO","valor":"COLENT - Envio DePara Cliente"},{"nome":"ID","valor":""}]}} |
1 change: 1 addition & 0 deletions
1
...ga/fluxos/FLUXO-02-COLENT - Envio DePara Cliente-2-WTA-COLENT - Busca cliente DePara.json
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
{"tabela":{"nome":"PCINTEGRACAOFLUXOEXECUCAO","campos":[{"nome":"ORDEMEXECUCAO","valor":"2"},{"nome":"IDROTASERVICO","valor":"WTA-COLENT - Busca cliente DePara"},{"nome":"IDINTEGRACAOCLASSEMETODO","valor":"BUSCAROTASERVICONAOPAGINADA"},{"nome":"ATIVO","valor":"N"},{"nome":"IDDEPENDENTE","valor":""},{"nome":"DTULTALTER","valor":""},{"nome":"CODEMPALTER","valor":""},{"nome":"DESCRICAO","valor":"COLENT - Envio DePara Cliente"},{"nome":"ID","valor":""}]}} |
1 change: 1 addition & 0 deletions
1
coleta-entrega/fluxos/FLUXO-02-COLENT - Envio DePara Cliente-3-COLENT - RAC LOGIN.json
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
{"tabela":{"nome":"PCINTEGRACAOFLUXOEXECUCAO","campos":[{"nome":"ORDEMEXECUCAO","valor":"3"},{"nome":"IDROTASERVICO","valor":"COLENT - RAC LOGIN"},{"nome":"IDINTEGRACAOCLASSEMETODO","valor":"AUTENTICADORREFRESHTOKENAPI"},{"nome":"ATIVO","valor":"N"},{"nome":"IDDEPENDENTE","valor":""},{"nome":"DTULTALTER","valor":""},{"nome":"CODEMPALTER","valor":""},{"nome":"DESCRICAO","valor":"COLENT - Envio DePara Cliente"},{"nome":"ID","valor":""}]}} |
1 change: 1 addition & 0 deletions
1
...ntrega/fluxos/FLUXO-02-COLENT - Envio DePara Cliente-4-COLENT - Busca Cliente DePara.json
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
{"tabela":{"nome":"PCINTEGRACAOFLUXOEXECUCAO","campos":[{"nome":"ORDEMEXECUCAO","valor":"4"},{"nome":"IDROTASERVICO","valor":"COLENT - Busca Cliente DePara"},{"nome":"IDINTEGRACAOCLASSEMETODO","valor":"BUSCAROTANAOPAGSUBSTVARIAVEIS"},{"nome":"ATIVO","valor":"N"},{"nome":"IDDEPENDENTE","valor":"WTA-COLENT - Busca cliente DePara"},{"nome":"DTULTALTER","valor":""},{"nome":"CODEMPALTER","valor":""},{"nome":"DESCRICAO","valor":"COLENT - Envio DePara Cliente"},{"nome":"ID","valor":""}]}} |
1 change: 1 addition & 0 deletions
1
...a-entrega/fluxos/FLUXO-02-COLENT - Envio DePara Cliente-5-WTA-COLENT - Enviar DePara.json
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
{"tabela":{"nome":"PCINTEGRACAOFLUXOEXECUCAO","campos":[{"nome":"ORDEMEXECUCAO","valor":"5"},{"nome":"IDROTASERVICO","valor":"WTA-COLENT - Enviar DePara"},{"nome":"IDINTEGRACAOCLASSEMETODO","valor":"ENVIOINTEGRACAOSTATUSRECEBIDO"},{"nome":"ATIVO","valor":"N"},{"nome":"IDDEPENDENTE","valor":"COLENT - Busca Cliente DePara"},{"nome":"DTULTALTER","valor":""},{"nome":"CODEMPALTER","valor":""},{"nome":"DESCRICAO","valor":"COLENT - Envio DePara Cliente"},{"nome":"ID","valor":""}]}} |
1 change: 1 addition & 0 deletions
1
coleta-entrega/fluxos/FLUXO-03-COLENT - Alterar Cliente-1-WTA-COLENT - LOGIN.json
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
{"tabela":{"nome":"PCINTEGRACAOFLUXOEXECUCAO","campos":[{"nome":"ORDEMEXECUCAO","valor":"1"},{"nome":"IDROTASERVICO","valor":"WTA-COLENT - LOGIN"},{"nome":"IDINTEGRACAOCLASSEMETODO","valor":"AUTENTICADORREFRESHTOKENAPI"},{"nome":"ATIVO","valor":"N"},{"nome":"IDDEPENDENTE","valor":""},{"nome":"DTULTALTER","valor":""},{"nome":"CODEMPALTER","valor":""},{"nome":"DESCRICAO","valor":"COLENT - Alterar Cliente"},{"nome":"ID","valor":""}]}} |
1 change: 1 addition & 0 deletions
1
...ntrega/fluxos/FLUXO-03-COLENT - Alterar Cliente-2-WTA-COLENT - Buscar Cliente Altera.json
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
{"tabela":{"nome":"PCINTEGRACAOFLUXOEXECUCAO","campos":[{"nome":"ORDEMEXECUCAO","valor":"2"},{"nome":"IDROTASERVICO","valor":"WTA-COLENT - Buscar Cliente Altera"},{"nome":"IDINTEGRACAOCLASSEMETODO","valor":"BUSCAROTASERVICONAOPAGINADA"},{"nome":"ATIVO","valor":"N"},{"nome":"IDDEPENDENTE","valor":""},{"nome":"DTULTALTER","valor":""},{"nome":"CODEMPALTER","valor":""},{"nome":"DESCRICAO","valor":"COLENT - Alterar Cliente"},{"nome":"ID","valor":""}]}} |
1 change: 1 addition & 0 deletions
1
coleta-entrega/fluxos/FLUXO-03-COLENT - Alterar Cliente-3-COLENT - RAC LOGIN.json
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
{"tabela":{"nome":"PCINTEGRACAOFLUXOEXECUCAO","campos":[{"nome":"ORDEMEXECUCAO","valor":"3"},{"nome":"IDROTASERVICO","valor":"COLENT - RAC LOGIN"},{"nome":"IDINTEGRACAOCLASSEMETODO","valor":"AUTENTICADORREFRESHTOKENAPI"},{"nome":"ATIVO","valor":"N"},{"nome":"IDDEPENDENTE","valor":""},{"nome":"DTULTALTER","valor":""},{"nome":"CODEMPALTER","valor":""},{"nome":"DESCRICAO","valor":"COLENT - Alterar Cliente"},{"nome":"ID","valor":""}]}} |
1 change: 1 addition & 0 deletions
1
coleta-entrega/fluxos/FLUXO-03-COLENT - Alterar Cliente-4-COLENT - Atualizar Cliente.json
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
{"tabela":{"nome":"PCINTEGRACAOFLUXOEXECUCAO","campos":[{"nome":"ORDEMEXECUCAO","valor":"4"},{"nome":"IDROTASERVICO","valor":"COLENT - Atualizar Cliente"},{"nome":"IDINTEGRACAOCLASSEMETODO","valor":"ENVIOINTEGRACAOSTATUSRECEBIDO"},{"nome":"ATIVO","valor":"N"},{"nome":"IDDEPENDENTE","valor":"WTA-COLENT - Buscar Cliente Altera"},{"nome":"DTULTALTER","valor":""},{"nome":"CODEMPALTER","valor":""},{"nome":"DESCRICAO","valor":"COLENT - Alterar Cliente"},{"nome":"ID","valor":""}]}} |
1 change: 1 addition & 0 deletions
1
coleta-entrega/fluxos/FLUXO-04-COLENT - Envio DePara Localidade-1-WTA-COLENT - LOGIN.json
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
{"tabela":{"nome":"PCINTEGRACAOFLUXOEXECUCAO","campos":[{"nome":"ORDEMEXECUCAO","valor":"1"},{"nome":"IDROTASERVICO","valor":"WTA-COLENT - LOGIN"},{"nome":"IDINTEGRACAOCLASSEMETODO","valor":"AUTENTICADORREFRESHTOKENAPI"},{"nome":"ATIVO","valor":"N"},{"nome":"IDDEPENDENTE","valor":""},{"nome":"DTULTALTER","valor":""},{"nome":"CODEMPALTER","valor":""},{"nome":"DESCRICAO","valor":"COLENT - Envio DePara Localidade"},{"nome":"ID","valor":""}]}} |
43 changes: 43 additions & 0 deletions
43
...s/FLUXO-04-COLENT - Envio DePara Localidade-2-WTA-COLENT - Buscar Cliente Localidade.json
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,43 @@ | ||
{ | ||
"tabela": { | ||
"nome": "PCINTEGRACAOFLUXOEXECUCAO", | ||
"campos": [ | ||
{ | ||
"nome": "ORDEMEXECUCAO", | ||
"valor": "2" | ||
}, | ||
{ | ||
"nome": "IDROTASERVICO", | ||
"valor": "WTA-COLENT - Buscar Cliente Localidade" | ||
}, | ||
{ | ||
"nome": "IDINTEGRACAOCLASSEMETODO", | ||
"valor": "BUSCAROTASERVICONAOPAGINADA" | ||
}, | ||
{ | ||
"nome": "ATIVO", | ||
"valor": "N" | ||
}, | ||
{ | ||
"nome": "IDDEPENDENTE", | ||
"valor": "" | ||
}, | ||
{ | ||
"nome": "DTULTALTER", | ||
"valor": "" | ||
}, | ||
{ | ||
"nome": "CODEMPALTER", | ||
"valor": "" | ||
}, | ||
{ | ||
"nome": "DESCRICAO", | ||
"valor": "COLENT - Envio DePara Localidade" | ||
}, | ||
{ | ||
"nome": "ID", | ||
"valor": "" | ||
} | ||
] | ||
} | ||
} |
1 change: 1 addition & 0 deletions
1
coleta-entrega/fluxos/FLUXO-04-COLENT - Envio DePara Localidade-3-COLENT - RAC LOGIN.json
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
{"tabela":{"nome":"PCINTEGRACAOFLUXOEXECUCAO","campos":[{"nome":"ORDEMEXECUCAO","valor":"3"},{"nome":"IDROTASERVICO","valor":"COLENT - RAC LOGIN"},{"nome":"IDINTEGRACAOCLASSEMETODO","valor":"AUTENTICADORREFRESHTOKENAPI"},{"nome":"ATIVO","valor":"N"},{"nome":"IDDEPENDENTE","valor":""},{"nome":"DTULTALTER","valor":""},{"nome":"CODEMPALTER","valor":""},{"nome":"DESCRICAO","valor":"COLENT - Envio DePara Localidade"},{"nome":"ID","valor":""}]}} |
1 change: 1 addition & 0 deletions
1
...entrega/fluxos/FLUXO-04-COLENT - Envio DePara Localidade-4-COLENT - Busca Localidade.json
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
{"tabela":{"nome":"PCINTEGRACAOFLUXOEXECUCAO","campos":[{"nome":"ORDEMEXECUCAO","valor":"4"},{"nome":"IDROTASERVICO","valor":"COLENT - Busca Localidade"},{"nome":"IDINTEGRACAOCLASSEMETODO","valor":"BUSCAROTANAOPAGSUBSTVARIAVEIS"},{"nome":"ATIVO","valor":"N"},{"nome":"IDDEPENDENTE","valor":"WTA-COLENT - Buscar Cliente Localidade"},{"nome":"DTULTALTER","valor":""},{"nome":"CODEMPALTER","valor":""},{"nome":"DESCRICAO","valor":"COLENT - Envio DePara Localidade"},{"nome":"ID","valor":""}]}} |
1 change: 1 addition & 0 deletions
1
...ntrega/fluxos/FLUXO-04-COLENT - Envio DePara Localidade-5-WTA-COLENT - Enviar DePara.json
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
{"tabela":{"nome":"PCINTEGRACAOFLUXOEXECUCAO","campos":[{"nome":"ORDEMEXECUCAO","valor":"5"},{"nome":"IDROTASERVICO","valor":"WTA-COLENT - Enviar DePara"},{"nome":"IDINTEGRACAOCLASSEMETODO","valor":"ENVIOINTEGRACAOSTATUSRECEBIDO"},{"nome":"ATIVO","valor":"N"},{"nome":"IDDEPENDENTE","valor":"COLENT - Busca Localidade"},{"nome":"DTULTALTER","valor":""},{"nome":"CODEMPALTER","valor":""},{"nome":"DESCRICAO","valor":"COLENT - Envio DePara Localidade"},{"nome":"ID","valor":""}]}} |
1 change: 1 addition & 0 deletions
1
coleta-entrega/fluxos/FLUXO-05-COLENT - Enviar Entrega-1-WTA-COLENT - LOGIN.json
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
{"tabela":{"nome":"PCINTEGRACAOFLUXOEXECUCAO","campos":[{"nome":"ORDEMEXECUCAO","valor":"1"},{"nome":"IDROTASERVICO","valor":"WTA-COLENT - LOGIN"},{"nome":"IDINTEGRACAOCLASSEMETODO","valor":"AUTENTICADORREFRESHTOKENAPI"},{"nome":"ATIVO","valor":"N"},{"nome":"IDDEPENDENTE","valor":""},{"nome":"DTULTALTER","valor":""},{"nome":"CODEMPALTER","valor":""},{"nome":"DESCRICAO","valor":"COLENT - Enviar Entrega"},{"nome":"ID","valor":""}]}} |
1 change: 1 addition & 0 deletions
1
coleta-entrega/fluxos/FLUXO-05-COLENT - Enviar Entrega-2-WTA-COLENT - Buscar Entregas.json
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
{"tabela":{"nome":"PCINTEGRACAOFLUXOEXECUCAO","campos":[{"nome":"ORDEMEXECUCAO","valor":"2"},{"nome":"IDROTASERVICO","valor":"WTA-COLENT - Buscar Entregas"},{"nome":"IDINTEGRACAOCLASSEMETODO","valor":"BUSCAROTASERVICONAOPAGINADA"},{"nome":"ATIVO","valor":"N"},{"nome":"IDDEPENDENTE","valor":""},{"nome":"DTULTALTER","valor":""},{"nome":"CODEMPALTER","valor":""},{"nome":"DESCRICAO","valor":"COLENT - Enviar Entrega"},{"nome":"ID","valor":""}]}} |
1 change: 1 addition & 0 deletions
1
coleta-entrega/fluxos/FLUXO-05-COLENT - Enviar Entrega-3-COLENT - RAC LOGIN.json
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
{"tabela":{"nome":"PCINTEGRACAOFLUXOEXECUCAO","campos":[{"nome":"ORDEMEXECUCAO","valor":"3"},{"nome":"IDROTASERVICO","valor":"COLENT - RAC LOGIN"},{"nome":"IDINTEGRACAOCLASSEMETODO","valor":"AUTENTICADORREFRESHTOKENAPI"},{"nome":"ATIVO","valor":"N"},{"nome":"IDDEPENDENTE","valor":""},{"nome":"DTULTALTER","valor":""},{"nome":"CODEMPALTER","valor":""},{"nome":"DESCRICAO","valor":"COLENT - Enviar Entrega"},{"nome":"ID","valor":""}]}} |
1 change: 1 addition & 0 deletions
1
coleta-entrega/fluxos/FLUXO-05-COLENT - Enviar Entrega-4-COLENT - Enviar Entrega.json
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
{"tabela":{"nome":"PCINTEGRACAOFLUXOEXECUCAO","campos":[{"nome":"ORDEMEXECUCAO","valor":"4"},{"nome":"IDROTASERVICO","valor":"COLENT - Enviar Entrega"},{"nome":"IDINTEGRACAOCLASSEMETODO","valor":"ENVIOINTEGRACAOSTATUSRECEBIDO"},{"nome":"ATIVO","valor":"N"},{"nome":"IDDEPENDENTE","valor":"WTA-COLENT - Buscar Entregas"},{"nome":"DTULTALTER","valor":""},{"nome":"CODEMPALTER","valor":""},{"nome":"DESCRICAO","valor":"COLENT - Enviar Entrega"},{"nome":"ID","valor":""}]}} |
1 change: 1 addition & 0 deletions
1
coleta-entrega/fluxos/FLUXO-06-COLENT - Salvar Id Externo Entrega-1-WTA-COLENT - LOGIN.json
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
{"tabela":{"nome":"PCINTEGRACAOFLUXOEXECUCAO","campos":[{"nome":"ORDEMEXECUCAO","valor":"1"},{"nome":"IDROTASERVICO","valor":"WTA-COLENT - LOGIN"},{"nome":"IDINTEGRACAOCLASSEMETODO","valor":"AUTENTICADORREFRESHTOKENAPI"},{"nome":"ATIVO","valor":"N"},{"nome":"IDDEPENDENTE","valor":""},{"nome":"DTULTALTER","valor":""},{"nome":"CODEMPALTER","valor":""},{"nome":"DESCRICAO","valor":"COLENT - Salvar Id Externo Entrega"},{"nome":"ID","valor":""}]}} |
1 change: 1 addition & 0 deletions
1
...LUXO-06-COLENT - Salvar Id Externo Entrega-2-WTA-COLENT - Buscar Entregas Nao Integr.json
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
{"tabela":{"nome":"PCINTEGRACAOFLUXOEXECUCAO","campos":[{"nome":"ORDEMEXECUCAO","valor":"2"},{"nome":"IDROTASERVICO","valor":"WTA-COLENT - Buscar Entregas Nao Integr"},{"nome":"IDINTEGRACAOCLASSEMETODO","valor":"BUSCAROTASERVICONAOPAGINADA"},{"nome":"ATIVO","valor":"N"},{"nome":"IDDEPENDENTE","valor":""},{"nome":"DTULTALTER","valor":""},{"nome":"CODEMPALTER","valor":""},{"nome":"DESCRICAO","valor":"COLENT - Salvar Id Externo Entrega"},{"nome":"ID","valor":""}]}} |
1 change: 1 addition & 0 deletions
1
coleta-entrega/fluxos/FLUXO-06-COLENT - Salvar Id Externo Entrega-3-COLENT - RAC LOGIN.json
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
{"tabela":{"nome":"PCINTEGRACAOFLUXOEXECUCAO","campos":[{"nome":"ORDEMEXECUCAO","valor":"3"},{"nome":"IDROTASERVICO","valor":"COLENT - RAC LOGIN"},{"nome":"IDINTEGRACAOCLASSEMETODO","valor":"AUTENTICADORREFRESHTOKENAPI"},{"nome":"ATIVO","valor":"N"},{"nome":"IDDEPENDENTE","valor":""},{"nome":"DTULTALTER","valor":""},{"nome":"CODEMPALTER","valor":""},{"nome":"DESCRICAO","valor":"COLENT - Salvar Id Externo Entrega"},{"nome":"ID","valor":""}]}} |
1 change: 1 addition & 0 deletions
1
...entrega/fluxos/FLUXO-06-COLENT - Salvar Id Externo Entrega-4-COLENT - Buscar Entrega.json
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
{"tabela":{"nome":"PCINTEGRACAOFLUXOEXECUCAO","campos":[{"nome":"ORDEMEXECUCAO","valor":"4"},{"nome":"IDROTASERVICO","valor":"COLENT - Buscar Entrega"},{"nome":"IDINTEGRACAOCLASSEMETODO","valor":"BUSCAROTANAOPAGSUBSTVARIAVEIS"},{"nome":"ATIVO","valor":"N"},{"nome":"IDDEPENDENTE","valor":"WTA-COLENT - Buscar Entregas Nao Integr"},{"nome":"DTULTALTER","valor":""},{"nome":"CODEMPALTER","valor":""},{"nome":"DESCRICAO","valor":"COLENT - Salvar Id Externo Entrega"},{"nome":"ID","valor":""}]}} |
1 change: 1 addition & 0 deletions
1
.../FLUXO-06-COLENT - Salvar Id Externo Entrega-5-WTA-COLENT - Salvar IdExterno Entrega.json
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
{"tabela":{"nome":"PCINTEGRACAOFLUXOEXECUCAO","campos":[{"nome":"ORDEMEXECUCAO","valor":"5"},{"nome":"IDROTASERVICO","valor":"WTA-COLENT - Salvar IdExterno Entrega"},{"nome":"IDINTEGRACAOCLASSEMETODO","valor":"ENVIOINTEGRACAOSTATUSRECEBIDO"},{"nome":"ATIVO","valor":"N"},{"nome":"IDDEPENDENTE","valor":"COLENT - Buscar Entrega"},{"nome":"DTULTALTER","valor":""},{"nome":"CODEMPALTER","valor":""},{"nome":"DESCRICAO","valor":"COLENT - Salvar Id Externo Entrega"},{"nome":"ID","valor":""}]}} |
1 change: 1 addition & 0 deletions
1
coleta-entrega/fluxos/FLUXO-07-COLENT - Enviar Viagem-1-WTA-COLENT - LOGIN.json
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
{"tabela":{"nome":"PCINTEGRACAOFLUXOEXECUCAO","campos":[{"nome":"ORDEMEXECUCAO","valor":"1"},{"nome":"IDROTASERVICO","valor":"WTA-COLENT - LOGIN"},{"nome":"IDINTEGRACAOCLASSEMETODO","valor":"AUTENTICADORREFRESHTOKENAPI"},{"nome":"ATIVO","valor":"N"},{"nome":"IDDEPENDENTE","valor":""},{"nome":"DTULTALTER","valor":""},{"nome":"CODEMPALTER","valor":""},{"nome":"DESCRICAO","valor":"COLENT - Enviar Viagem"},{"nome":"ID","valor":""}]}} |
1 change: 1 addition & 0 deletions
1
coleta-entrega/fluxos/FLUXO-07-COLENT - Enviar Viagem-2-WTA-COLENT - Buscar Viagem.json
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
{"tabela":{"nome":"PCINTEGRACAOFLUXOEXECUCAO","campos":[{"nome":"ORDEMEXECUCAO","valor":"2"},{"nome":"IDROTASERVICO","valor":"WTA-COLENT - Buscar Viagem"},{"nome":"IDINTEGRACAOCLASSEMETODO","valor":"BUSCAROTASERVICONAOPAGINADA"},{"nome":"ATIVO","valor":"N"},{"nome":"IDDEPENDENTE","valor":""},{"nome":"DTULTALTER","valor":""},{"nome":"CODEMPALTER","valor":""},{"nome":"DESCRICAO","valor":"COLENT - Enviar Viagem"},{"nome":"ID","valor":""}]}} |
1 change: 1 addition & 0 deletions
1
coleta-entrega/fluxos/FLUXO-07-COLENT - Enviar Viagem-3-COLENT - RAC LOGIN.json
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
{"tabela":{"nome":"PCINTEGRACAOFLUXOEXECUCAO","campos":[{"nome":"ORDEMEXECUCAO","valor":"3"},{"nome":"IDROTASERVICO","valor":"COLENT - RAC LOGIN"},{"nome":"IDINTEGRACAOCLASSEMETODO","valor":"AUTENTICADORREFRESHTOKENAPI"},{"nome":"ATIVO","valor":"N"},{"nome":"IDDEPENDENTE","valor":""},{"nome":"DTULTALTER","valor":""},{"nome":"CODEMPALTER","valor":""},{"nome":"DESCRICAO","valor":"COLENT - Enviar Viagem"},{"nome":"ID","valor":""}]}} |
Oops, something went wrong.