Tools to admin pulpo data
Use pulpo_get_reportes() to download all needed reports from zoho creator
Clean invoice and gastos data using pulpo_clean_gastos() and pulpo_clean_invoices()
Create libros de gastos e ingresos with create_libros_gastos() and create_libros_ingresos()
```{r eval=FALSE}
library(zohor) library(httr) library(jsonlite) library(glue) library(tidyverse) library(lubridate) library(rio) library(openxlsx)
dir_libros = "C:/Users/andre/Dropbox/Pulpo/06 Hacienda"
reportes = pulpo_get_reportes()
clean_invoice = pulpo_clean_invoices(db = reportes$invoices, year = 2021)
clean_gastos = pulpo_clean_gastos(db = reportes$gastos, db_receptores = reportes$receptores,year = 2021)
create_libro_gastos(db_gastos =clean_gastos, dir_libros = dir_libros, year = 2021, users = c("Andres", "Martina", "Pulpo"))
create_libro_ingresos(db_ingresos = clean_invoice, dir_libros = dir_libros, year = 2021)
```
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.