Commit f1c30e49 authored by Andrii's avatar Andrii

Add "Fix encoding" section

This bug was found for simple app "Companies:All data"
parent 52343b78
......@@ -185,6 +185,14 @@ if (exist_cash()){
detach("package:RMySQL", unload=TRUE)
library(sqldf)
# Fix encoding
df_entity <- df_entity %>%
mutate(
name = iconv(name, to="ASCII//TRANSLIT"),
city = iconv(city, to="ASCII//TRANSLIT"),
description = iconv(description, to="ASCII//TRANSLIT"))
# TODO: for other tables
}
# UI ----------------------------------------------------------------------
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment