Skip to content

Commit

Permalink
Feat: Adiciona comarca ao cjsg
Browse files Browse the repository at this point in the history
  • Loading branch information
jjesusfilho committed Aug 14, 2024
1 parent f7dab83 commit 55ac57c
Show file tree
Hide file tree
Showing 3 changed files with 18 additions and 18 deletions.
32 changes: 16 additions & 16 deletions R/tjsp_baixar_cjsg.R
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
#' @param fim Data final julgamento
#' @param inicio_pb data inicial registro/publicação
#' @param fim_pb data final registr/publicacao
#' @param comarca Vetor de códigos das comarcas
#' @param comarca Código da comarca. Uma por vez.
#' @param sg "T" para origem segundo grau
#' @param cr "R" para origem colégio recursal
#' @param tipo "A" Para acórdãos, "D" para decisões monocráticas
Expand Down Expand Up @@ -270,7 +270,7 @@ tjsp_baixar_cjsg1 <- function (livre = "", ementa = "", processo = "", classe =
comarcaSelectedEntitiesList = "",
contadorcomarca = "0",
contadorMaiorcomarca = "0",
cdComarca = "",
cdComarca = comarca[1],
nmComarca = "",
secoesTreeSelection.values = orgao_julgador,
secoesTreeSelection.text = "",
Expand All @@ -284,20 +284,20 @@ tjsp_baixar_cjsg1 <- function (livre = "", ementa = "", processo = "", classe =
dados.ordenacao = "dtPublicacao"
)

if (any(comarca != "")){

body$contadorcomarca <- length(comarca)
body$contadorMaiorcomarca <- length(comarca)

for(i in 1:length(comarca)){

body <- append(body, comarca[i])

names(body)[length(body)]<- glue::glue("dadosComarca[{i}].cdComarca")

}

}
# if (any(comarca != "")){
#
# body$contadorcomarca <- length(comarca)
# body$contadorMaiorcomarca <- length(comarca)
#
# for(i in 1:length(comarca)){
#
# body <- append(body, comarca[i])
#
# names(body)[length(body)]<- glue::glue("dadosComarca[{i}].cdComarca")
#
# }

#}

response <- httr::POST(link_cjsg, encode = "form", body = body,
httr::accept("text/html; charset=latin1;"))
Expand Down
2 changes: 1 addition & 1 deletion man/tjsp_baixar_cjsg.Rd

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion man/tjsp_baixar_cjsg1.Rd

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

0 comments on commit 55ac57c

Please sign in to comment.