Skip to content

Commit

Permalink
cambio funcion coyuntura
Browse files Browse the repository at this point in the history
  • Loading branch information
Juan Ignacio Urricariet committed Dec 21, 2023
1 parent 5b916ae commit ef9cc6a
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions content/update_recursos.R
Original file line number Diff line number Diff line change
Expand Up @@ -72,7 +72,7 @@ nueva_publicacion_coyuntura <- function(publicacion = NULL){
#### TEXTO PARA AGREGAR A DESCRIPTION CONDICIONAL A PARAMETRO DE LA FUNCION


desc_imet <- glue::glue("Evolución de los principales indicadores de la actividad turística ({toupper(format(as.Date('2023-11-30'),
desc_imet <- glue::glue("Evolución de los principales indicadores de la actividad turística ({toupper(format(Sys.Date(),
format='%B %Y'))})")


Expand All @@ -84,9 +84,9 @@ nueva_publicacion_coyuntura <- function(publicacion = NULL){
### AGREGO NUEVA PUBLICACION EN FUNCION DEL PARAPETRO PUBLICACION DE LA FUNCION

read_csv("content/recursos_coyuntura.csv") %>% # LEVANTA DATOS CARGADOS
add_row(recurso = glue::glue("{publicacion}_{as.Date('2023-11-30')}"), # NUEVA FILA CON TODAS LAS VARS
add_row(recurso = glue::glue("{publicacion}_{Sys.Date()}"), # NUEVA FILA CON TODAS LAS VARS
src = glue::glue("img/{publicacion}.png"),
url = glue::glue("https://tableros.yvera.tur.ar/recursos/biblioteca/{publicacion}_{as.Date('2023-11-30')}.pdf"),
url = glue::glue("https://tableros.yvera.tur.ar/recursos/biblioteca/{publicacion}_{Sys.Date()}.pdf"),
description = ifelse(publicacion == "imet", yes = desc_imet, no = desc_panorama),
tags = ifelse(publicacion == "imet", yes = "Estadísticas Turísticas", no = "Economía del Turismo"),
fecha = Sys.Date(), .before = 1) %>%
Expand Down

0 comments on commit ef9cc6a

Please sign in to comment.